Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/profiler/
Dheap-profiler.cc33 if (snapshots_.empty() && !sampling_heap_profiler_ && !allocation_tracker_ && in MaybeClearStringsStorage()
110 if (sampling_heap_profiler_.get()) { in StartSamplingHeapProfiler()
113 sampling_heap_profiler_.reset(new SamplingHeapProfiler( in StartSamplingHeapProfiler()
120 sampling_heap_profiler_.reset(); in StopSamplingHeapProfiler()
126 if (sampling_heap_profiler_.get()) { in GetAllocationProfile()
127 return sampling_heap_profiler_->GetAllocationProfile(); in GetAllocationProfile()
Dheap-profiler.h42 bool is_sampling_allocations() { return !!sampling_heap_profiler_; } in is_sampling_allocations()
110 std::unique_ptr<SamplingHeapProfiler> sampling_heap_profiler_; variable