HomeSort by relevance Sort by last modified time
    Searched refs:heap_dumps_ (Results 1 - 2 of 2) sorted by null

  /external/libchrome/base/trace_event/
process_memory_dump.cc 253 DCHECK_EQ(0ul, heap_dumps_.count(allocator_name));
256 heap_dumps_[allocator_name] = std::move(heap_dump);
277 heap_dumps_.clear();
295 for (auto& it : other->heap_dumps_) {
296 DCHECK_EQ(0ul, heap_dumps_.count(it.first));
297 heap_dumps_.insert(std::make_pair(it.first, std::move(it.second)));
299 other->heap_dumps_.clear();
322 if (heap_dumps_.size() > 0) {
324 for (const auto& name_and_dump : heap_dumps_)
process_memory_dump.h 178 const HeapDumpsMap& heap_dumps() const { return heap_dumps_; }
197 HeapDumpsMap heap_dumps_; member in class:base::trace_event::ProcessMemoryDump

Completed in 110 milliseconds