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

  /external/libchrome/base/trace_event/
heap_profiler_allocation_context_tracker.cc 23 subtle::Atomic32 AllocationContextTracker::capture_mode_ =
24 static_cast<int32_t>(AllocationContextTracker::CaptureMode::DISABLED);
30 AllocationContextTracker* const kInitializingSentinel =
31 reinterpret_cast<AllocationContextTracker*>(-1);
38 delete static_cast<AllocationContextTracker*>(alloc_ctx_tracker);
67 AllocationContextTracker*
68 AllocationContextTracker::GetInstanceForCurrentThread() {
69 AllocationContextTracker* tracker =
70 static_cast<AllocationContextTracker*>(g_tls_alloc_ctx_tracker.Get());
76 tracker = new AllocationContextTracker();
    [all...]
heap_profiler_allocation_context_tracker.h 24 class BASE_EXPORT AllocationContextTracker {
66 static AllocationContextTracker* GetInstanceForCurrentThread();
68 // Set the thread name in the AllocationContextTracker of the current thread
96 ~AllocationContextTracker();
99 AllocationContextTracker();
115 DISALLOW_COPY_AND_ASSIGN(AllocationContextTracker);

Completed in 288 milliseconds