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.cc86 task_contexts_.reserve(kMaxTaskDepth); in AllocationContextTracker()
140 if (task_contexts_.size() < kMaxTaskDepth) in PushCurrentTaskContext()
141 task_contexts_.push_back(context); in PushCurrentTaskContext()
150 if (task_contexts_.empty()) in PopCurrentTaskContext()
153 DCHECK_EQ(context, task_contexts_.back()) in PopCurrentTaskContext()
155 task_contexts_.pop_back(); in PopCurrentTaskContext()
236 if (!task_contexts_.empty()) { in GetContextSnapshot()
237 ctx->type_name = task_contexts_.back(); in GetContextSnapshot()
Dheap_profiler_allocation_context_tracker.h111 std::vector<const char*> task_contexts_; variable