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

Method GetImageAt

view/sharedcache/core/SharedCache.cpp:503–509  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

501}
502
503std::optional<CacheImage> SharedCache::GetImageAt(const uint64_t address) const
504{
505 const auto it = m_images.find(address);
506 if (it == m_images.end())
507 return std::nullopt;
508 return it->second;
509}
510
511std::optional<CacheImage> SharedCache::GetImageContaining(const uint64_t address) const
512{

Calls 2

findMethod · 0.80
endMethod · 0.45

Tested by

no test coverage detected