MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / BNSharedCacheControllerGetImageAt

Function BNSharedCacheControllerGetImageAt

view/sharedcache/core/ffi.cpp:272–280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270 }
271
272 bool BNSharedCacheControllerGetImageAt(
273 BNSharedCacheController* controller, uint64_t address, BNSharedCacheImage* outImage)
274 {
275 const auto image = controller->object->GetCache().GetImageAt(address);
276 if (!image)
277 return false;
278 *outImage = ImageToApi(*image);
279 return true;
280 }
281
282 bool BNSharedCacheControllerGetImageContaining(
283 BNSharedCacheController* controller, uint64_t address, BNSharedCacheImage* outImage)

Callers 1

GetImageAtMethod · 0.85

Calls 2

ImageToApiFunction · 0.70
GetImageAtMethod · 0.45

Tested by

no test coverage detected