Home
last modified time | relevance | path

Searched refs:V8ProfilerAgentImpl (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/inspector/
Dv8-profiler-agent-impl.cc143 class V8ProfilerAgentImpl::ProfileDescriptor {
151 V8ProfilerAgentImpl::V8ProfilerAgentImpl( in V8ProfilerAgentImpl() function in v8_inspector::V8ProfilerAgentImpl
159 V8ProfilerAgentImpl::~V8ProfilerAgentImpl() { in ~V8ProfilerAgentImpl()
163 void V8ProfilerAgentImpl::consoleProfile(const String16& title) { in consoleProfile()
172 void V8ProfilerAgentImpl::consoleProfileEnd(const String16& title) { in consoleProfileEnd()
202 Response V8ProfilerAgentImpl::enable() { in enable()
209 Response V8ProfilerAgentImpl::disable() { in disable()
222 Response V8ProfilerAgentImpl::setSamplingInterval(int interval) { in setSamplingInterval()
230 void V8ProfilerAgentImpl::restore() { in restore()
246 Response V8ProfilerAgentImpl::start() { in start()
[all …]
Dv8-profiler-agent-impl.h25 class V8ProfilerAgentImpl : public protocol::Profiler::Backend {
27 V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
29 ~V8ProfilerAgentImpl() override;
75 DISALLOW_COPY_AND_ASSIGN(V8ProfilerAgentImpl);
Dv8-inspector-session-impl.h25 class V8ProfilerAgentImpl; variable
43 V8ProfilerAgentImpl* profilerAgent() { return m_profilerAgent.get(); } in profilerAgent()
116 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent;
Dv8-inspector-impl.h48 class V8ProfilerAgentImpl; variable
126 V8ProfilerAgentImpl* enabledProfilerAgentForGroup(int contextGroupId);
Dv8-inspector-impl.cc86 V8ProfilerAgentImpl* V8InspectorImpl::enabledProfilerAgentForGroup( in enabledProfilerAgentForGroup()
89 V8ProfilerAgentImpl* agent = session ? session->profilerAgent() : nullptr; in enabledProfilerAgentForGroup()
Dv8-console.cc198 V8ProfilerAgentImpl* profilerAgent() { in profilerAgent()
404 if (V8ProfilerAgentImpl* profilerAgent = helper.profilerAgent()) in profileCallback()
411 if (V8ProfilerAgentImpl* profilerAgent = helper.profilerAgent()) in profileEndCallback()
Dv8-inspector-session-impl.cc85 m_profilerAgent.reset(new V8ProfilerAgentImpl( in V8InspectorSessionImpl()