Home
last modified time | relevance | path

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

/external/perfetto/src/profiling/memory/
Dbookkeeping.cc146 callstack_allocations_.erase(it); in Dump()
157 for (auto it = callstack_allocations_.begin(); in Dump()
158 it != callstack_allocations_.end(); ++it) { in Dump()
186 auto it = callstack_allocations_.find(node); in GetSizeForTesting()
187 if (it == callstack_allocations_.end()) { in GetSizeForTesting()
Dbookkeeping.h349 auto callstack_allocations_it = callstack_allocations_.find(node); in MaybeCreateCallstackAllocations()
350 if (callstack_allocations_it == callstack_allocations_.end()) { in MaybeCreateCallstackAllocations()
354 callstack_allocations_.emplace(node, node); in MaybeCreateCallstackAllocations()
378 callstack_allocations_; variable
380 std::vector<std::pair<decltype(callstack_allocations_)::iterator, uint64_t>>