Home
last modified time | relevance | path

Searched refs:StateType (Results 1 – 25 of 90) sorted by relevance

1234

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DState.h29 const char *StateAsCString(lldb::StateType state);
40 bool StateIsRunningState(lldb::StateType state);
61 bool StateIsStoppedState(lldb::StateType state, bool must_exist);
68 template <> struct format_provider<lldb::StateType> {
69 static void format(const lldb::StateType &state, raw_ostream &Stream,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp590 case StateType::eStateInvalid: in Kill()
591 case StateType::eStateExited: in Kill()
592 case StateType::eStateCrashed: in Kill()
593 case StateType::eStateDetached: in Kill()
594 case StateType::eStateUnloaded: in Kill()
600 case StateType::eStateConnected: in Kill()
601 case StateType::eStateAttaching: in Kill()
602 case StateType::eStateLaunching: in Kill()
603 case StateType::eStateStopped: in Kill()
604 case StateType::eStateRunning: in Kill()
[all …]
H A DNativeThreadNetBSD.cpp39 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD()
167 const StateType new_state = StateType::eStateStopped; in SetStopped()
173 m_state = StateType::eStateRunning; in SetRunning()
178 m_state = StateType::eStateStepping; in SetStepping()
226 lldb::StateType NativeThreadNetBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadNetBSD.h34 lldb::StateType GetState() override;
73 lldb::StateType m_state;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp538 case StateType::eStateInvalid: in Kill()
539 case StateType::eStateExited: in Kill()
540 case StateType::eStateCrashed: in Kill()
541 case StateType::eStateDetached: in Kill()
542 case StateType::eStateUnloaded: in Kill()
548 case StateType::eStateConnected: in Kill()
549 case StateType::eStateAttaching: in Kill()
550 case StateType::eStateLaunching: in Kill()
551 case StateType::eStateStopped: in Kill()
552 case StateType::eStateRunning: in Kill()
[all …]
H A DNativeThreadFreeBSD.cpp37 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadFreeBSD()
167 const StateType new_state = StateType::eStateStopped; in SetStopped()
173 m_state = StateType::eStateRunning; in SetRunning()
178 m_state = StateType::eStateStepping; in SetStepping()
214 lldb::StateType NativeThreadFreeBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadFreeBSD.h34 lldb::StateType GetState() override;
76 lldb::StateType m_state;
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DDebug.h23 lldb::StateType state; // Valid values are eStateStopped/eStateSuspended,
37 ResumeActionList(lldb::StateType default_action, int signal) { in ResumeActionList()
57 void AppendAction(lldb::tid_t tid, lldb::StateType state, int signal = 0) {
86 size_t NumActionsWithState(lldb::StateType state) const { in NumActionsWithState()
96 bool SetDefaultThreadActionIfNeeded(lldb::StateType action, int signal) { in SetDefaultThreadActionIfNeeded()
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DState.cpp14 const char *lldb_private::StateAsCString(StateType state) { in StateAsCString()
68 bool lldb_private::StateIsRunningState(StateType state) { in StateIsRunningState()
89 bool lldb_private::StateIsStoppedState(StateType state, bool must_exist) { in StateIsStoppedState()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h159 lldb::StateType GetState() const;
161 void SetState(lldb::StateType state);
183 void SetResumeState(lldb::StateType state, bool override_suspend = false) {
197 lldb::StateType GetResumeState() const { return m_resume_state; } in GetResumeState()
206 bool ShouldResume(lldb::StateType resume_state);
209 virtual void WillResume(lldb::StateType resume_state) {} in WillResume()
1180 lldb::StateType GetTemporaryResumeState() const { in GetTemporaryResumeState()
1265 void SetTemporaryResumeState(lldb::StateType new_state) { in SetTemporaryResumeState()
1293 lldb::StateType m_state; ///< The state of our process.
1304 lldb::StateType m_resume_state; ///< This state is used to force a thread to
[all …]
H A DThreadPlan.h363 lldb::StateType RunState();
392 bool WillResume(lldb::StateType resume_state, bool current_plan);
493 virtual bool DoWillResume(lldb::StateType resume_state, bool current_plan) { in DoWillResume()
525 virtual lldb::StateType GetPlanRunState() = 0;
595 lldb::StateType GetPlanRunState() override;
H A DProcess.h404 lldb::StateType state);
422 lldb::StateType GetState() const { return m_state; } in GetState()
477 lldb::StateType m_state = lldb::eStateInvalid;
1300 lldb::StateType GetState();
2243 lldb::StateType
2264 lldb::StateType GetStateChangedEvents(
2796 lldb::StateType GetPrivateState();
2987 ThreadSafeValue<lldb::StateType> m_public_state;
2988 ThreadSafeValue<lldb::StateType>
3131 void SetPrivateState(lldb::StateType state);
[all …]
H A DThreadPlanBase.h33 lldb::StateType GetPlanRunState() override;
42 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepOverBreakpoint.h27 lldb::StateType GetPlanRunState() override;
40 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanPython.h55 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
61 lldb::StateType GetPlanRunState() override;
H A DThreadPlanStepThrough.h25 lldb::StateType GetPlanRunState() override;
32 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepUntil.h25 lldb::StateType GetPlanRunState() override;
30 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepOut.h33 lldb::StateType GetPlanRunState() override;
49 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp148 lldb::StateType ThreadPlanPython::GetPlanRunState() { in GetPlanRunState()
152 lldb::StateType run_state = eStateRunning; in GetPlanRunState()
196 bool ThreadPlanPython::DoWillResume(lldb::StateType resume_state, in DoWillResume()
H A DThreadPlanBase.cpp181 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; } in GetPlanRunState()
185 bool ThreadPlanBase::DoWillResume(lldb::StateType resume_state, in DoWillResume()
H A DThreadPlanStepOverBreakpoint.cpp106 StateType ThreadPlanStepOverBreakpoint::GetPlanRunState() { in GetPlanRunState()
110 bool ThreadPlanStepOverBreakpoint::DoWillResume(StateType resume_state, in DoWillResume()
H A DThreadPlan.cpp116 bool ThreadPlan::WillResume(StateType resume_state, bool current_plan) { in WillResume()
159 lldb::StateType ThreadPlan::RunState() { in RunState()
277 lldb::StateType ThreadPlanNull::GetPlanRunState() { in GetPlanRunState()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h186 lldb::StateType GetState() const;
244 lldb::StateType state) = 0;
430 lldb::StateType m_state = lldb::eStateInvalid;
458 void SetState(lldb::StateType state, bool notify_delegates = true);
494 void SynchronouslyNotifyProcessStateChanged(lldb::StateType state);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h38 lldb::StateType GetPlanRunState() override;
99 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.h307 bool IsRunning(lldb::StateType state) { in IsRunning()
311 bool IsStepping(lldb::StateType state) { in IsStepping()
315 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; } in CanResume()
317 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; } in HasExited()
358 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);

1234