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

Method GetEntries

view/sharedcache/api/sharedcache.cpp:290–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

288}
289
290std::vector<CacheEntry> SharedCacheController::GetEntries() const
291{
292 size_t count;
293 BNSharedCacheEntry *entries = BNSharedCacheControllerGetEntries(m_object, &count);
294 std::vector<CacheEntry> result;
295 result.reserve(count);
296 for (size_t i = 0; i < count; i++)
297 result.emplace_back(EntryFromApi(entries[i]));
298 BNSharedCacheFreeEntryList(entries, count);
299 return result;
300}
301
302std::vector<CacheRegion> SharedCacheController::GetLoadedRegions() const
303{

Callers 6

ApplyHeaderMethod · 0.80
DeleteControllerFunction · 0.80
InitControllerMethod · 0.80
RefreshDataMethod · 0.80

Calls 3

EntryFromApiFunction · 0.85

Tested by

no test coverage detected