| 526 | } |
| 527 | |
| 528 | std::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 | |
| 536 | std::optional<CacheSymbol> SharedCache::GetSymbolWithName(const std::string& name) |
| 537 | { |
no test coverage detected