Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-profiler-agent-impl.cc155 m_profiler(nullptr), in V8ProfilerAgentImpl()
162 if (m_profiler) m_profiler->Dispose(); in ~V8ProfilerAgentImpl()
207 DCHECK(!m_profiler); in enable()
208 m_profiler = v8::CpuProfiler::New(m_isolate); in enable()
219 m_profiler->Dispose(); in disable()
220 m_profiler = nullptr; in disable()
230 m_profiler->SetSamplingInterval(interval); in setSamplingInterval()
239 DCHECK(!m_profiler); in restore()
240 m_profiler = v8::CpuProfiler::New(m_isolate); in restore()
243 if (interval) m_profiler->SetSamplingInterval(interval); in restore()
[all …]
Dv8-profiler-agent-impl.h59 v8::CpuProfiler* m_profiler; variable