• Home
  • Raw
  • Download

Lines Matching refs:m_debugger

128       m_debugger(m_inspector->debugger()),  in V8DebuggerAgentImpl()
144 m_debugger->enable(); in enableImpl()
147 m_debugger->getCompiledScripts(m_session->contextGroupId(), compiledScripts); in enableImpl()
153 m_debugger->setBreakpointsActivated(true); in enableImpl()
177 if (isPaused()) m_debugger->continueProgram(); in disable()
178 m_debugger->disable(); in disable()
186 m_debugger->setAsyncCallStackDepth(this, 0); in disable()
218 m_debugger->setAsyncCallStackDepth(this, asyncCallStackDepth); in restore()
229 m_debugger->setBreakpointsActivated(active); in setBreakpointsActive()
356 m_debugger->removeBreakpoint(debuggerBreakpointId); in removeBreakpointImpl()
408 m_debugger->removeBreakpoint(m_continueToLocationBreakpointId); in continueToLocation()
416 m_continueToLocationBreakpointId = m_debugger->setBreakpoint( in continueToLocation()
473 m_debugger->wasmTranslation()->TranslateProtocolLocationToWasmScriptLocation( in resolveBreakpoint()
479 String16 debuggerBreakpointId = m_debugger->setBreakpoint( in resolveBreakpoint()
484 m_debugger->wasmTranslation()->TranslateWasmScriptLocationToProtocolLocation( in resolveBreakpoint()
535 Response response = m_debugger->setScriptSource( in setScriptSource()
570 JavaScriptCallFrames frames = m_debugger->currentCallFrames(); in restartFrame()
611 !m_debugger->breakpointsActivated()) in schedulePauseOnNextStatement()
613 if (m_breakReason.empty()) m_debugger->setPauseOnNextStatement(true); in schedulePauseOnNextStatement()
622 m_debugger->setPauseOnNextStatement(true); in schedulePauseOnNextStatementIfSteppingInto()
628 if (m_breakReason.empty()) m_debugger->setPauseOnNextStatement(false); in cancelPauseOnNextStatement()
637 m_debugger->setPauseOnNextStatement(true); in pause()
645 m_debugger->continueProgram(); in resume()
657 m_debugger->stepOverStatement(); in stepOver()
665 m_debugger->stepIntoStatement(); in stepInto()
674 m_debugger->stepOutOfFunction(); in stepOut()
697 m_debugger->setPauseOnExceptionsState( in setPauseOnExceptionsImpl()
762 m_debugger->setAsyncCallStackDepth(this, depth); in setAsyncCallStackDepth()
859 m_debugger->setPauseOnNextStatement(true); in changeJavaScriptRecursionLevel()
979 m_debugger->wasmTranslation()); in currentCallFrames()
985 V8StackTraceImpl* stackTrace = m_debugger->currentAsyncCallChain(); in currentAsyncStackTrace()
986 return stackTrace ? stackTrace->buildInspectorObjectForTail(m_debugger) in currentAsyncStackTrace()
990 bool V8DebuggerAgentImpl::isPaused() const { return m_debugger->isPaused(); } in isPaused()
1083 JavaScriptCallFrames frames = m_debugger->currentCallFrames(); in didPause()
1171 m_debugger->removeBreakpoint(m_continueToLocationBreakpointId); in didPause()
1186 if (!enabled() || !m_debugger->canBreakProgram() || m_skipAllPauses) return; in breakProgram()
1191 m_debugger->breakProgram(); in breakProgram()
1200 m_debugger->getPauseOnExceptionsState() == v8::debug::NoBreakOnException) in breakProgramOnException()