| 180 | } |
| 181 | |
| 182 | bool SharedCacheController::ApplyImage(BinaryView &view, const CacheImage &image) |
| 183 | { |
| 184 | auto apiImage = ImageToApi(image); |
| 185 | bool result = BNSharedCacheControllerApplyImage(m_object, view.GetObject(), &apiImage); |
| 186 | BNSharedCacheFreeImage(apiImage); |
| 187 | return result; |
| 188 | } |
| 189 | |
| 190 | bool SharedCacheController::IsRegionLoaded(const CacheRegion ®ion) const |
| 191 | { |
no test coverage detected