Home
last modified time | relevance | path

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

/external/libchrome/base/trace_event/
Dheap_profiler_allocation_context_tracker.cc87 task_contexts_.reserve(kMaxTaskDepth); in AllocationContextTracker()
139 if (task_contexts_.size() < kMaxTaskDepth) in PushCurrentTaskContext()
140 task_contexts_.push_back(context); in PushCurrentTaskContext()
149 if (task_contexts_.empty()) in PopCurrentTaskContext()
152 DCHECK_EQ(context, task_contexts_.back()) in PopCurrentTaskContext()
154 task_contexts_.pop_back(); in PopCurrentTaskContext()
240 ctx.type_name = task_contexts_.empty() ? nullptr : task_contexts_.back(); in GetContextSnapshot()
Dheap_profiler_allocation_context_tracker.h100 std::vector<const char*> task_contexts_; variable