Home
last modified time | relevance | path

Searched refs:entries_by_id_cache_ (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.cc475 if (entries_by_id_cache_.empty()) { in GetEntryById()
477 entries_by_id_cache_.reserve(entries_.size()); in GetEntryById()
479 entries_by_id_cache_.emplace(entry.id(), &entry); in GetEntryById()
482 auto it = entries_by_id_cache_.find(id); in GetEntryById()
483 return it != entries_by_id_cache_.end() ? it->second : nullptr; in GetEntryById()
Dheap-snapshot-generator.h274 std::unordered_map<SnapshotObjectId, HeapEntry*> entries_by_id_cache_; variable