Home
last modified time | relevance | path

Searched refs:ThreadState (Results 1 – 8 of 8) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dthread_state.cpp19 std::vector<BreakpointId> ThreadState::GetBreakpointsByLocation(const PtLocation &location) const in GetBreakpointsByLocation()
29 void ThreadState::Reset() in Reset()
42 void ThreadState::BreakOnStart() in BreakOnStart()
49 void ThreadState::Continue() in Continue()
55 void ThreadState::ContinueTo(std::unordered_set<PtLocation, HashLocation> locations) in ContinueTo()
62 void ThreadState::StepInto(std::unordered_set<PtLocation, HashLocation> locations) in StepInto()
70 void ThreadState::StepOver(std::unordered_set<PtLocation, HashLocation> locations) in StepOver()
78 void ThreadState::StepOut() in StepOut()
85 void ThreadState::Pause() in Pause()
92 void ThreadState::SetBreakpointsActive(bool active) in SetBreakpointsActive()
[all …]
Dthread_state.h28 class ThreadState final {
30 ThreadState() = default;
31 ~ThreadState() = default;
33 NO_COPY_SEMANTIC(ThreadState);
34 NO_MOVE_SEMANTIC(ThreadState);
Ddebuggable_thread.h119 ThreadState state_ GUARDED_BY(mutex_);
/arkcompiler/runtime_core/static_core/runtime/tests/
Dthread_test.cpp63 void BeginToStateAndEnd(MTManagedThread::ThreadState state) const in BeginToStateAndEnd()
65 if (state == MTManagedThread::ThreadState::NATIVE_CODE) { in BeginToStateAndEnd()
69 } else if (state == MTManagedThread::ThreadState::MANAGED_CODE) { in BeginToStateAndEnd()
161 …ASSERT_DEATH(BeginToStateAndEnd(MTManagedThread::ThreadState::NATIVE_CODE), "last frame is: NATIVE… in DEATH_TEST_F()
163 BeginToStateAndEnd(MTManagedThread::ThreadState::MANAGED_CODE); in DEATH_TEST_F()
169 BeginToStateAndEnd(MTManagedThread::ThreadState::NATIVE_CODE); in DEATH_TEST_F()
171 …ASSERT_DEATH(BeginToStateAndEnd(MTManagedThread::ThreadState::MANAGED_CODE), "last frame is: MANAG… in DEATH_TEST_F()
/arkcompiler/runtime_core/static_core/runtime/
Dthread.cpp570 PandaString ManagedThread::LogThreadStack(ThreadState newState) const in LogThreadStack()
573 static std::unordered_map<ThreadState, std::string> threadStateToStringMap = { in LogThreadStack()
574 {ThreadState::NATIVE_CODE, "NATIVE_CODE"}, {ThreadState::MANAGED_CODE, "MANAGED_CODE"}}; in LogThreadStack()
584 PandaStack<ThreadState> copyStack(threadFrameStates_); in LogThreadStack()
903 threadFrameStates_.~PandaStack<ThreadState>(); in FreeInternalMemory()
/arkcompiler/runtime_core/static_core/runtime/include/
Dmanaged_thread.h44 enum ThreadState : uint8_t { NATIVE_CODE = 0, MANAGED_CODE = 1 }; enum
801 PandaString LogThreadStack(ThreadState newState) const;
950 PandaStack<ThreadState> threadFrameStates_;
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
Dthread_state.cpp32 ThreadState state;
/arkcompiler/runtime_core/static_core/docs/
Dinspector.md15 Represents an application thread being debugged. It encapsulates a `ThreadState` and processes logi…
37 ### ThreadState subsection