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

Method GetSymbolAt

view/sharedcache/core/SharedCache.cpp:528–534  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

526}
527
528std::optional<CacheSymbol> SharedCache::GetSymbolAt(uint64_t address) const
529{
530 const auto it = m_symbols.find(address);
531 if (it == m_symbols.end())
532 return std::nullopt;
533 return it->second;
534}
535
536std::optional<CacheSymbol> SharedCache::GetSymbolWithName(const std::string& name)
537{

Callers 2

GetSymbolMethod · 0.45

Calls 2

findMethod · 0.80
endMethod · 0.45

Tested by

no test coverage detected