| 164 | } |
| 165 | |
| 166 | DSCRef<SharedCacheController> SharedCacheController::GetController(BinaryView &view) |
| 167 | { |
| 168 | BNSharedCacheController *controller = BNGetSharedCacheController(view.GetObject()); |
| 169 | if (controller == nullptr) |
| 170 | return nullptr; |
| 171 | return new SharedCacheController(controller); |
| 172 | } |
| 173 | |
| 174 | bool SharedCacheController::ApplyRegion(BinaryView &view, const CacheRegion ®ion) |
| 175 | { |
nothing calls this directly
no test coverage detected