Searched refs:V8ProfilerAgentImpl (Results 1 – 7 of 7) sorted by relevance
143 class V8ProfilerAgentImpl::ProfileDescriptor {151 V8ProfilerAgentImpl::V8ProfilerAgentImpl( in V8ProfilerAgentImpl() function in v8_inspector::V8ProfilerAgentImpl159 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 …]
25 class V8ProfilerAgentImpl : public protocol::Profiler::Backend {27 V8ProfilerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,29 ~V8ProfilerAgentImpl() override;75 DISALLOW_COPY_AND_ASSIGN(V8ProfilerAgentImpl);
25 class V8ProfilerAgentImpl; variable43 V8ProfilerAgentImpl* profilerAgent() { return m_profilerAgent.get(); } in profilerAgent()116 std::unique_ptr<V8ProfilerAgentImpl> m_profilerAgent;
48 class V8ProfilerAgentImpl; variable126 V8ProfilerAgentImpl* enabledProfilerAgentForGroup(int contextGroupId);
86 V8ProfilerAgentImpl* V8InspectorImpl::enabledProfilerAgentForGroup( in enabledProfilerAgentForGroup()89 V8ProfilerAgentImpl* agent = session ? session->profilerAgent() : nullptr; in enabledProfilerAgentForGroup()
198 V8ProfilerAgentImpl* profilerAgent() { in profilerAgent()404 if (V8ProfilerAgentImpl* profilerAgent = helper.profilerAgent()) in profileCallback()411 if (V8ProfilerAgentImpl* profilerAgent = helper.profilerAgent()) in profileEndCallback()
85 m_profilerAgent.reset(new V8ProfilerAgentImpl( in V8InspectorSessionImpl()