Home | History | Annotate | Download | only in inspector

Lines Matching refs:pauseState

202   int pauseState = v8::DebugInterface::NoBreakOnException;
203 m_state->getInteger(DebuggerAgentState::pauseOnExceptionsState, &pauseState);
204 setPauseOnExceptionsImpl(pauseState);
702 v8::DebugInterface::ExceptionBreakState pauseState;
704 pauseState = v8::DebugInterface::NoBreakOnException;
706 pauseState = v8::DebugInterface::BreakOnAnyException;
708 pauseState = v8::DebugInterface::BreakOnUncaughtException;
713 setPauseOnExceptionsImpl(pauseState);
717 void V8DebuggerAgentImpl::setPauseOnExceptionsImpl(int pauseState) {
719 static_cast<v8::DebugInterface::ExceptionBreakState>(pauseState));
720 m_state->setInteger(DebuggerAgentState::pauseOnExceptionsState, pauseState);