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.cc176 if (m_profiler) m_profiler->Dispose(); in ~V8ProfilerAgentImpl()
232 DCHECK(!m_profiler); in disable()
239 if (m_profiler) { in setSamplingInterval()
251 DCHECK(!m_profiler); in restore()
497 DCHECK(!m_profiler); in startProfiling()
498 m_profiler = v8::CpuProfiler::New(m_isolate); in startProfiling()
501 if (interval) m_profiler->SetSamplingInterval(interval); in startProfiling()
504 m_profiler->StartProfiling(toV8String(m_isolate, title), true); in startProfiling()
511 m_profiler->StopProfiling(toV8String(m_isolate, title)); in stopProfiling()
519 m_profiler->Dispose(); in stopProfiling()
[all …]
Dv8-profiler-agent-impl.h69 v8::CpuProfiler* m_profiler = nullptr; variable