Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-profiler-agent-impl.cc159 class V8ProfilerAgentImpl::ProfileDescriptor {
167 V8ProfilerAgentImpl::V8ProfilerAgentImpl( in V8ProfilerAgentImpl() function in v8_inspector::V8ProfilerAgentImpl
175 V8ProfilerAgentImpl::~V8ProfilerAgentImpl() { in ~V8ProfilerAgentImpl()
179 void V8ProfilerAgentImpl::consoleProfile(const String16& title) { in consoleProfile()
188 void V8ProfilerAgentImpl::consoleProfileEnd(const String16& title) { in consoleProfileEnd()
218 Response V8ProfilerAgentImpl::enable() { in enable()
225 Response V8ProfilerAgentImpl::disable() { in disable()
238 Response V8ProfilerAgentImpl::setSamplingInterval(int interval) { in setSamplingInterval()
246 void V8ProfilerAgentImpl::restore() { in restore()
266 Response V8ProfilerAgentImpl::start() { in start()
[all …]
Dv8-profiler-agent-impl.h26 class V8ProfilerAgentImpl : public protocol::Profiler::Backend {
28 V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
30 ~V8ProfilerAgentImpl() override;
79 DISALLOW_COPY_AND_ASSIGN(V8ProfilerAgentImpl);
Dv8-inspector-session-impl.h25 class V8ProfilerAgentImpl; variable
43 V8ProfilerAgentImpl* profilerAgent() { return m_profilerAgent.get(); } in profilerAgent()
120 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent;
Dv8-inspector-impl.h52 class V8ProfilerAgentImpl; variable
Dv8-inspector-session-impl.cc87 m_profilerAgent.reset(new V8ProfilerAgentImpl( in V8InspectorSessionImpl()