| 188 | } |
| 189 | |
| 190 | bool SharedCacheController::IsRegionLoaded(const CacheRegion ®ion) const |
| 191 | { |
| 192 | auto apiRegion = RegionToApi(region); |
| 193 | bool result = BNSharedCacheControllerIsRegionLoaded(m_object, &apiRegion); |
| 194 | BNSharedCacheFreeRegion(apiRegion); |
| 195 | return result; |
| 196 | } |
| 197 | |
| 198 | bool SharedCacheController::IsImageLoaded(const CacheImage &image) const |
| 199 | { |
nothing calls this directly
no test coverage detected