Home
last modified time | relevance | path

Searched refs:PauseOnExceptionsState (Results 1 - 16 of 16) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
H A Dthread_state.cpp39 pauseOnExceptionsState_ = PauseOnExceptionsState::NONE; in Reset()
118 void ThreadState::SetPauseOnExceptions(PauseOnExceptionsState state) in SetPauseOnExceptions()
127 case PauseOnExceptionsState::NONE: in OnException()
129 case PauseOnExceptionsState::CAUGHT: in OnException()
132 case PauseOnExceptionsState::UNCAUGHT: in OnException()
135 case PauseOnExceptionsState::ALL: in OnException()
H A Dthread_state.h54 void SetPauseOnExceptions(PauseOnExceptionsState state);
101 PauseOnExceptionsState pauseOnExceptionsState_ {PauseOnExceptionsState::NONE};
H A Dinspector_server.cpp431 std::function<void(PtThread, PauseOnExceptionsState)> &&handler) in OnCallDebuggerSetPauseOnExceptions()
438 PauseOnExceptionsState state; in OnCallDebuggerSetPauseOnExceptions()
446 state = PauseOnExceptionsState::NONE; in OnCallDebuggerSetPauseOnExceptions()
448 state = PauseOnExceptionsState::CAUGHT; in OnCallDebuggerSetPauseOnExceptions()
450 state = PauseOnExceptionsState::UNCAUGHT; in OnCallDebuggerSetPauseOnExceptions()
452 state = PauseOnExceptionsState::ALL; in OnCallDebuggerSetPauseOnExceptions()
H A Ddebuggable_thread.h90 void SetPauseOnExceptions(PauseOnExceptionsState state);
H A Dinspector.h86 void SetPauseOnExceptions(PtThread thread, PauseOnExceptionsState state);
H A Dinspector_server.h88 void OnCallDebuggerSetPauseOnExceptions(std::function<void(PtThread, PauseOnExceptionsState)> &&handler);
H A Ddebuggable_thread.cpp108 void DebuggableThread::SetPauseOnExceptions(PauseOnExceptionsState state) in SetPauseOnExceptions()
H A Dinspector.cpp321 void Inspector::SetPauseOnExceptions(PtThread thread, PauseOnExceptionsState state) in SetPauseOnExceptions()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
H A Dthread_state.cpp179 state.SetPauseOnExceptions(PauseOnExceptionsState::NONE); in TEST_F()
185 state.SetPauseOnExceptions(PauseOnExceptionsState::CAUGHT); in TEST_F()
193 state.SetPauseOnExceptions(PauseOnExceptionsState::UNCAUGHT); in TEST_F()
201 state.SetPauseOnExceptions(PauseOnExceptionsState::ALL); in TEST_F()
H A Dinspector_server.cpp550 inspectorServer.OnCallDebuggerSetPauseOnExceptions([](PtThread thread, PauseOnExceptionsState state) { in TEST_F()
552 ASSERT_EQ(PauseOnExceptionsState::NONE, state); in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/types/
H A Dpause_on_exceptions_state.h20 enum class PauseOnExceptionsState { NONE = 0x0, CAUGHT = 0x1, UNCAUGHT = 0x2, ALL = 0x3 }; class
/arkcompiler/toolchain/test/autotest/aw/cdp/
H A Ddebugger.py48 class PauseOnExceptionsState(Enum): class
135 def set_pause_on_exceptions(params: PauseOnExceptionsState):
/arkcompiler/toolchain/tooling/base/
H A Dpt_params.h423 enum class PauseOnExceptionsState : uint8_t { NONE, UNCAUGHT, ALL }; class
431 PauseOnExceptionsState GetState() const in GetState()
439 state_ = PauseOnExceptionsState::NONE; in StoreState()
443 state_ = PauseOnExceptionsState::UNCAUGHT; in StoreState()
447 state_ = PauseOnExceptionsState::ALL; in StoreState()
457 PauseOnExceptionsState state_ {PauseOnExceptionsState::ALL};
/arkcompiler/toolchain/tooling/agent/
H A Ddebugger_impl.h301 PauseOnExceptionsState pauseOnException_ {PauseOnExceptionsState::NONE};
H A Ddebugger_impl.cpp271 if (pauseOnException_ == PauseOnExceptionsState::NONE) { in CheckPauseOnException()
274 if (pauseOnException_ == PauseOnExceptionsState::UNCAUGHT) { in CheckPauseOnException()
/arkcompiler/toolchain/tooling/test/
H A Ddebugger_params_test.cpp921 EXPECT_EQ(objectData->GetState(), PauseOnExceptionsState::NONE); in HWTEST_F_L0()

Completed in 16 milliseconds