Home
last modified time | relevance | path

Searched refs:V8DebuggerAgentImpl (Results 1 – 11 of 11) sorted by relevance

/external/v8/src/inspector/
Dv8-debugger-agent-impl.cc83 String16 breakpointIdSuffix(V8DebuggerAgentImpl::BreakpointSource source) { in breakpointIdSuffix()
85 case V8DebuggerAgentImpl::UserBreakpointSource: in breakpointIdSuffix()
87 case V8DebuggerAgentImpl::DebugCommandBreakpointSource: in breakpointIdSuffix()
89 case V8DebuggerAgentImpl::MonitorCommandBreakpointSource: in breakpointIdSuffix()
96 V8DebuggerAgentImpl::BreakpointSource source) { in generateBreakpointId()
124 V8DebuggerAgentImpl::V8DebuggerAgentImpl( in V8DebuggerAgentImpl() function in v8_inspector::V8DebuggerAgentImpl
139 V8DebuggerAgentImpl::~V8DebuggerAgentImpl() {} in ~V8DebuggerAgentImpl()
141 void V8DebuggerAgentImpl::enableImpl() { in enableImpl()
156 bool V8DebuggerAgentImpl::enabled() { return m_enabled; } in enabled()
158 Response V8DebuggerAgentImpl::enable() { in enable()
[all …]
Dv8-inspector-impl.cc72 V8DebuggerAgentImpl* V8InspectorImpl::enabledDebuggerAgentForGroup( in enabledDebuggerAgentForGroup()
75 V8DebuggerAgentImpl* agent = session ? session->debuggerAgent() : nullptr; in enabledDebuggerAgentForGroup()
98 if (V8DebuggerAgentImpl* agent = enabledDebuggerAgentForGroup(groupId)) in runCompiledScript()
103 if (V8DebuggerAgentImpl* agent = enabledDebuggerAgentForGroup(groupId)) in runCompiledScript()
128 if (V8DebuggerAgentImpl* agent = enabledDebuggerAgentForGroup(groupId)) in callFunction()
134 if (V8DebuggerAgentImpl* agent = enabledDebuggerAgentForGroup(groupId)) in callFunction()
290 if (V8DebuggerAgentImpl* agent = in willExecuteScript()
297 if (V8DebuggerAgentImpl* agent = in didExecuteScript()
Dwasm-translation.h18 class V8DebuggerAgentImpl; variable
35 V8DebuggerAgentImpl* agent);
Dv8-inspector-session-impl.h22 class V8DebuggerAgentImpl; variable
41 V8DebuggerAgentImpl* debuggerAgent() { return m_debuggerAgent.get(); } in debuggerAgent()
114 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent;
Dv8-debugger-agent-impl.h31 class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
39 V8DebuggerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
41 ~V8DebuggerAgentImpl() override;
214 DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl);
Dwasm-translation.cc36 virtual void Init(Isolate*, WasmTranslation*, V8DebuggerAgentImpl*) = 0;
48 void Init(Isolate*, WasmTranslation*, V8DebuggerAgentImpl*) {} in Init() argument
62 V8DebuggerAgentImpl* agent) override { in Init()
181 V8DebuggerAgentImpl* agent) { in AddFakeScript()
258 V8DebuggerAgentImpl* agent) { in AddScript()
Dv8-debugger.h23 class V8DebuggerAgentImpl; variable
73 void setAsyncCallStackDepth(V8DebuggerAgentImpl*, int);
172 protocol::HashMap<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap;
Dv8-inspector-impl.h46 class V8DebuggerAgentImpl; variable
124 V8DebuggerAgentImpl* enabledDebuggerAgentForGroup(int contextGroupId);
Dv8-console.cc206 V8DebuggerAgentImpl* debuggerAgent() { in debuggerAgent()
387 if (V8DebuggerAgentImpl* debuggerAgent = helper.debuggerAgent()) in assertCallback()
539 V8DebuggerAgentImpl::BreakpointSource source, in setFunctionBreakpoint()
541 V8DebuggerAgentImpl* debuggerAgent = helper.debuggerAgent(); in setFunctionBreakpoint()
563 V8DebuggerAgentImpl::DebugCommandBreakpointSource, in debugFunctionCallback()
573 V8DebuggerAgentImpl::DebugCommandBreakpointSource, in undebugFunctionCallback()
596 V8DebuggerAgentImpl::MonitorCommandBreakpointSource, in monitorFunctionCallback()
606 V8DebuggerAgentImpl::MonitorCommandBreakpointSource, in unmonitorFunctionCallback()
Dv8-debugger.cc33 V8DebuggerAgentImpl* agentForScript(V8InspectorImpl* inspector, in agentForScript()
534 V8DebuggerAgentImpl* agent = m_inspector->enabledDebuggerAgentForGroup( in handleProgramBreak()
584 V8DebuggerAgentImpl* agent = agentForScript(m_inspector, script); in ScriptCompiled()
622 V8DebuggerAgentImpl* agent = agentForScript(m_inspector, script); in IsFunctionBlackboxed()
813 void V8Debugger::setAsyncCallStackDepth(V8DebuggerAgentImpl* agent, int depth) { in setAsyncCallStackDepth()
Dv8-inspector-session-impl.cc81 m_debuggerAgent.reset(new V8DebuggerAgentImpl( in V8InspectorSessionImpl()