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.cc98 task_contexts_.reserve(kMaxTaskDepth); in AllocationContextTracker()
156 if (task_contexts_.size() < kMaxTaskDepth) in PushCurrentTaskContext()
157 task_contexts_.push_back(context); in PushCurrentTaskContext()
166 if (task_contexts_.empty()) in PopCurrentTaskContext()
169 DCHECK_EQ(context, task_contexts_.back()) in PopCurrentTaskContext()
171 task_contexts_.pop_back(); in PopCurrentTaskContext()
264 if (!task_contexts_.empty()) { in GetContextSnapshot()
265 ctx->type_name = task_contexts_.back(); in GetContextSnapshot()
Dheap_profiler_allocation_context_tracker.h130 std::vector<const char*> task_contexts_; variable