| 501 | } |
| 502 | |
| 503 | std::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 | |
| 511 | std::optional<CacheImage> SharedCache::GetImageContaining(const uint64_t address) const |
| 512 | { |
no test coverage detected