Home
last modified time | relevance | path

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

/external/v8/src/profiler/
Dheap-profiler.cc118 if (sampling_heap_profiler_.get()) { in StartSamplingHeapProfiler()
121 sampling_heap_profiler_.reset(new SamplingHeapProfiler( in StartSamplingHeapProfiler()
128 sampling_heap_profiler_.reset(); in StopSamplingHeapProfiler()
133 if (sampling_heap_profiler_.get()) { in GetAllocationProfile()
134 return sampling_heap_profiler_->GetAllocationProfile(); in GetAllocationProfile()
Dheap-profiler.h39 bool is_sampling_allocations() { return !!sampling_heap_profiler_; } in is_sampling_allocations()
105 std::unique_ptr<SamplingHeapProfiler> sampling_heap_profiler_; variable