Lines Matching refs:pauseState
465 int pauseState = v8::debug::NoBreakOnException;
466 m_state->getInteger(DebuggerAgentState::pauseOnExceptionsState, &pauseState);
467 setPauseOnExceptionsImpl(pauseState);
1229 v8::debug::ExceptionBreakState pauseState;
1231 pauseState = v8::debug::NoBreakOnException;
1233 pauseState = v8::debug::BreakOnAnyException;
1235 pauseState = v8::debug::BreakOnUncaughtException;
1240 setPauseOnExceptionsImpl(pauseState);
1244 void V8DebuggerAgentImpl::setPauseOnExceptionsImpl(int pauseState) {
1248 static_cast<v8::debug::ExceptionBreakState>(pauseState));
1249 m_state->setInteger(DebuggerAgentState::pauseOnExceptionsState, pauseState);