Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/inspector/
Dv8-debugger-agent-impl.cc367 V8DebuggerAgentImpl::V8DebuggerAgentImpl( in V8DebuggerAgentImpl() function in v8_inspector::V8DebuggerAgentImpl
378 V8DebuggerAgentImpl::~V8DebuggerAgentImpl() = default;
380 void V8DebuggerAgentImpl::enableImpl() { in enableImpl()
401 Response V8DebuggerAgentImpl::enable(Maybe<double> maxScriptsCacheSize, in enable()
416 Response V8DebuggerAgentImpl::disable() { in disable()
456 void V8DebuggerAgentImpl::restore() { in restore()
484 Response V8DebuggerAgentImpl::setBreakpointsActive(bool active) { in setBreakpointsActive()
496 Response V8DebuggerAgentImpl::setSkipAllPauses(bool skip) { in setSkipAllPauses()
521 Response V8DebuggerAgentImpl::setBreakpointByUrl( in setBreakpointByUrl()
611 Response V8DebuggerAgentImpl::setBreakpoint( in setBreakpoint()
[all …]
Dv8-debugger-agent-impl.h31 class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
39 V8DebuggerAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*,
41 ~V8DebuggerAgentImpl() override;
42 V8DebuggerAgentImpl(const V8DebuggerAgentImpl&) = delete;
43 V8DebuggerAgentImpl& operator=(const V8DebuggerAgentImpl&) = delete;
Dv8-inspector-session-impl.h23 class V8DebuggerAgentImpl; variable
46 V8DebuggerAgentImpl* debuggerAgent() { return m_debuggerAgent.get(); } in debuggerAgent()
129 std::unique_ptr<V8DebuggerAgentImpl> m_debuggerAgent;
Dv8-debugger.h28 class V8DebuggerAgentImpl; variable
84 int contextGroupId, V8DebuggerAgentImpl* agent);
92 void setAsyncCallStackDepth(V8DebuggerAgentImpl*, int);
272 std::unordered_map<V8DebuggerAgentImpl*, int> m_maxAsyncCallStackDepthMap;
Dv8-debugger-script.h48 class V8DebuggerAgentImpl; variable
56 bool isLiveEdit, V8DebuggerAgentImpl* agent, V8InspectorClient* client);
Dv8-debugger-script.cc94 bool isLiveEdit, V8DebuggerAgentImpl* agent, in ActualScript()
337 V8DebuggerAgentImpl* m_agent;
355 bool isLiveEdit, V8DebuggerAgentImpl* agent, V8InspectorClient* client) { in Create()
Dv8-console.cc629 V8DebuggerAgentImpl::BreakpointSource source, in setFunctionBreakpoint()
653 V8DebuggerAgentImpl::DebugCommandBreakpointSource, in debugFunctionCallback()
664 V8DebuggerAgentImpl::DebugCommandBreakpointSource, in undebugFunctionCallback()
690 V8DebuggerAgentImpl::MonitorCommandBreakpointSource, in monitorFunctionCallback()
702 V8DebuggerAgentImpl::MonitorCommandBreakpointSource, in unmonitorFunctionCallback()
Dv8-debugger.cc139 int contextGroupId, V8DebuggerAgentImpl* agent) { in getCompiledScripts()
568 V8DebuggerAgentImpl* agent = session->debuggerAgent(); in IsFunctionBlackboxed()
588 V8DebuggerAgentImpl* agent = session->debuggerAgent(); in ShouldBeSkipped()
821 void V8Debugger::setAsyncCallStackDepth(V8DebuggerAgentImpl* agent, int depth) { in setAsyncCallStackDepth()
Dv8-inspector-impl.h51 class V8DebuggerAgentImpl; variable
Dv8-inspector-session-impl.cc119 m_debuggerAgent.reset(new V8DebuggerAgentImpl( in V8InspectorSessionImpl()