| 172 | } |
| 173 | |
| 174 | bool SharedCacheController::ApplyRegion(BinaryView &view, const CacheRegion ®ion) |
| 175 | { |
| 176 | auto apiRegion = RegionToApi(region); |
| 177 | bool result = BNSharedCacheControllerApplyRegion(m_object, view.GetObject(), &apiRegion); |
| 178 | BNSharedCacheFreeRegion(apiRegion); |
| 179 | return result; |
| 180 | } |
| 181 | |
| 182 | bool SharedCacheController::ApplyImage(BinaryView &view, const CacheImage &image) |
| 183 | { |
no test coverage detected