Searched refs:PauseOnExceptionsState (Results 1 - 16 of 16) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | thread_state.cpp | 39 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 D | thread_state.h | 54 void SetPauseOnExceptions(PauseOnExceptionsState state); 101 PauseOnExceptionsState pauseOnExceptionsState_ {PauseOnExceptionsState::NONE};
|
H A D | inspector_server.cpp | 431 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 D | debuggable_thread.h | 90 void SetPauseOnExceptions(PauseOnExceptionsState state);
|
H A D | inspector.h | 86 void SetPauseOnExceptions(PtThread thread, PauseOnExceptionsState state);
|
H A D | inspector_server.h | 88 void OnCallDebuggerSetPauseOnExceptions(std::function<void(PtThread, PauseOnExceptionsState)> &&handler);
|
H A D | debuggable_thread.cpp | 108 void DebuggableThread::SetPauseOnExceptions(PauseOnExceptionsState state) in SetPauseOnExceptions()
|
H A D | inspector.cpp | 321 void Inspector::SetPauseOnExceptions(PtThread thread, PauseOnExceptionsState state) in SetPauseOnExceptions()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
H A D | thread_state.cpp | 179 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 D | inspector_server.cpp | 550 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 D | pause_on_exceptions_state.h | 20 enum class PauseOnExceptionsState { NONE = 0x0, CAUGHT = 0x1, UNCAUGHT = 0x2, ALL = 0x3 }; class
|
/arkcompiler/toolchain/test/autotest/aw/cdp/ |
H A D | debugger.py | 48 class PauseOnExceptionsState(Enum): class 135 def set_pause_on_exceptions(params: PauseOnExceptionsState):
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_params.h | 423 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 D | debugger_impl.h | 301 PauseOnExceptionsState pauseOnException_ {PauseOnExceptionsState::NONE};
|
H A D | debugger_impl.cpp | 271 if (pauseOnException_ == PauseOnExceptionsState::NONE) { in CheckPauseOnException() 274 if (pauseOnException_ == PauseOnExceptionsState::UNCAUGHT) { in CheckPauseOnException()
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_params_test.cpp | 921 EXPECT_EQ(objectData->GetState(), PauseOnExceptionsState::NONE);
in HWTEST_F_L0()
|
Completed in 16 milliseconds