/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | State.h | 29 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/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
H A D | NativeProcessNetBSD.cpp | 106 process_up->SetState(StateType::eStateStopped, false); in Launch() 183 SetState(StateType::eStateExited, true); in MonitorExited() 203 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP() 243 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 248 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 253 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 262 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 269 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 277 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 282 SetState(StateType in MonitorSIGTRAP() [all...] |
H A D | NativeThreadNetBSD.cpp | 39 : 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 D | NativeThreadNetBSD.h | 34 lldb::StateType GetState() override; 73 lldb::StateType m_state;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
H A D | NativeProcessFreeBSD.cpp | 119 process_up->SetState(StateType::eStateStopped, false); in Launch() 200 SetState(StateType::eStateExited, true); in MonitorExited() 209 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP() 247 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 258 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 265 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 275 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 300 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 305 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 335 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() [all …]
|
H A D | NativeThreadFreeBSD.cpp | 37 : 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 D | NativeThreadFreeBSD.h | 34 lldb::StateType GetState() override; 78 lldb::StateType m_state;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | Debug.h | 23 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/contrib/llvm-project/lldb/source/Utility/ |
H A D | State.cpp | 14 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/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Thread.h | 161 lldb::StateType GetState() const; 163 void SetState(lldb::StateType state); 185 void SetResumeState(lldb::StateType state, bool override_suspend = false) { 199 lldb::StateType GetResumeState() const { return m_resume_state; } in GetResumeState() 208 bool ShouldResume(lldb::StateType resume_state); 211 virtual void WillResume(lldb::StateType resume_state) {} in WillResume() 1196 lldb::StateType GetTemporaryResumeState() const { in GetTemporaryResumeState() 1291 void SetTemporaryResumeState(lldb::StateType new_state) { in SetTemporaryResumeState() 1319 lldb::StateType m_state; ///< The state of our process. 1333 lldb::StateType m_resume_state; ///< This state is used to force a thread to [all …]
|
H A D | ThreadPlan.h | 363 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 D | Process.h | 406 lldb::StateType state); 414 ProcessEventData(const lldb::ProcessSP &process, lldb::StateType state); 424 lldb::StateType GetState() const { return m_state; } in GetState() 448 static lldb::StateType GetStateFromEvent(const Event *event_ptr); 481 lldb::StateType m_state = lldb::eStateInvalid; 1304 lldb::StateType GetState(); 2257 lldb::StateType GetNextEvent(lldb::EventSP &event_sp); 2268 lldb::StateType 2289 lldb::StateType GetStateChangedEvents( 2662 virtual void ForceScriptedState(lldb::StateType state) {} in ForceScriptedState() [all …]
|
H A D | ThreadPlanBase.h | 33 lldb::StateType GetPlanRunState() override; 42 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepOverBreakpoint.h | 27 lldb::StateType GetPlanRunState() override; 40 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepThrough.h | 25 lldb::StateType GetPlanRunState() override; 32 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanPython.h | 56 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override; 62 lldb::StateType GetPlanRunState() override;
|
H A D | ThreadPlanStepUntil.h | 25 lldb::StateType GetPlanRunState() override; 30 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
H A D | ThreadPlanStepOut.h | 33 lldb::StateType GetPlanRunState() override; 49 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanPython.cpp | 168 lldb::StateType ThreadPlanPython::GetPlanRunState() { in GetPlanRunState() 172 lldb::StateType run_state = eStateRunning; in GetPlanRunState() 214 bool ThreadPlanPython::DoWillResume(lldb::StateType resume_state, in DoWillResume()
|
H A D | ThreadPlanBase.cpp | 181 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; } in GetPlanRunState() 185 bool ThreadPlanBase::DoWillResume(lldb::StateType resume_state, in DoWillResume()
|
H A D | ThreadPlanStepOverBreakpoint.cpp | 106 StateType ThreadPlanStepOverBreakpoint::GetPlanRunState() { in GetPlanRunState() 110 bool ThreadPlanStepOverBreakpoint::DoWillResume(StateType resume_state, in DoWillResume()
|
H A D | ThreadPlan.cpp | 116 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/contrib/llvm-project/lldb/include/lldb/Host/common/ |
H A D | NativeProcessProtocol.h | 186 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/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ |
H A D | ScriptedThreadPlanPythonInterface.cpp | 82 lldb::StateType ScriptedThreadPlanPythonInterface::GetRunState() { in GetRunState() 90 return static_cast<lldb::StateType>(obj->GetUnsignedIntegerValue( in GetRunState()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleThreadPlanStepThroughObjCTrampoline.h | 38 lldb::StateType GetPlanRunState() override; 99 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|