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.cc160 if (m_profiler) m_profiler->Dispose(); in ~V8ProfilerAgentImpl()
216 DCHECK(!m_profiler); in disable()
223 if (m_profiler) { in setSamplingInterval()
235 DCHECK(!m_profiler); in restore()
365 DCHECK(!m_profiler); in startProfiling()
366 m_profiler = v8::CpuProfiler::New(m_isolate); in startProfiling()
367 m_profiler->SetIdle(m_idle); in startProfiling()
370 if (interval) m_profiler->SetSamplingInterval(interval); in startProfiling()
373 m_profiler->StartProfiling(toV8String(m_isolate, title), true); in startProfiling()
380 m_profiler->StopProfiling(toV8String(m_isolate, title)); in stopProfiling()
[all …]
Dv8-profiler-agent-impl.h64 v8::CpuProfiler* m_profiler = nullptr; variable