| 196 | } |
| 197 | |
| 198 | bool SharedCacheController::IsImageLoaded(const CacheImage &image) const |
| 199 | { |
| 200 | auto apiImage = ImageToApi(image); |
| 201 | bool result = BNSharedCacheControllerIsImageLoaded(m_object, &apiImage); |
| 202 | BNSharedCacheFreeImage(apiImage); |
| 203 | return result; |
| 204 | } |
| 205 | |
| 206 | std::optional<CacheRegion> SharedCacheController::GetRegionAt(uint64_t address) const |
| 207 | { |
nothing calls this directly
no test coverage detected