Home
last modified time | relevance | path

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

/external/libchrome/base/trace_event/
Dtrace_event_memory_overhead.cc30 auto it = allocated_objects_.find(object_type); in AddOrCreateInternal()
31 if (it == allocated_objects_.end()) { in AddOrCreateInternal()
32 allocated_objects_.insert(std::make_pair( in AddOrCreateInternal()
120 if (allocated_objects_.UsingFullMap()) in AddSelf()
121 estimated_size += sizeof(map_type::value_type) * allocated_objects_.size(); in AddSelf()
126 const auto& it = allocated_objects_.find(object_type); in GetCount()
127 if (it == allocated_objects_.end()) in GetCount()
133 for (const auto& it : other.allocated_objects_) { in Update()
142 for (const auto& it : allocated_objects_) { in DumpInto()
Dtrace_event_memory_overhead.h64 map_type allocated_objects_; variable