Home
last modified time | relevance | path

Searched refs:pauseState (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/inspector/
Dv8-debugger-agent-impl.cc440 int pauseState = v8::debug::NoBreakOnException; in restore() local
441 m_state->getInteger(DebuggerAgentState::pauseOnExceptionsState, &pauseState); in restore()
442 setPauseOnExceptionsImpl(pauseState); in restore()
1179 v8::debug::ExceptionBreakState pauseState; in setPauseOnExceptions() local
1181 pauseState = v8::debug::NoBreakOnException; in setPauseOnExceptions()
1183 pauseState = v8::debug::BreakOnAnyException; in setPauseOnExceptions()
1185 pauseState = v8::debug::BreakOnUncaughtException; in setPauseOnExceptions()
1190 setPauseOnExceptionsImpl(pauseState); in setPauseOnExceptions()
1194 void V8DebuggerAgentImpl::setPauseOnExceptionsImpl(int pauseState) { in setPauseOnExceptionsImpl() argument
1198 static_cast<v8::debug::ExceptionBreakState>(pauseState)); in setPauseOnExceptionsImpl()
[all …]
Dv8-debugger-agent-impl.h110 Response setPauseOnExceptions(const String16& pauseState) override;