Home
last modified time | relevance | path

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

1234

/freebsd/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/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp106 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::eStateInvalid); in MonitorSIGTRAP()
[all …]
H A DNativeThreadNetBSD.cpp38 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD()
166 const StateType new_state = StateType::eStateStopped; in SetStopped()
172 m_state = StateType::eStateRunning; in SetRunning()
177 m_state = StateType::eStateStepping; in SetStepping()
225 lldb::StateType NativeThreadNetBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadNetBSD.h34 lldb::StateType GetState() override;
73 lldb::StateType m_state;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp120 process_up->SetState(StateType::eStateStopped, false); in Launch()
201 SetState(StateType::eStateExited, true); in MonitorExited()
210 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP()
248 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
259 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
266 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
276 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
301 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
306 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
341 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
[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;
78 lldb::StateType m_state;
/freebsd/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/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/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h164 lldb::StateType GetState() const;
166 void SetState(lldb::StateType state);
188 void SetResumeState(lldb::StateType state, bool override_suspend = false) {
202 lldb::StateType GetResumeState() const { return m_resume_state; } in GetResumeState()
213 bool ShouldResume(lldb::StateType resume_state);
216 virtual void WillResume(lldb::StateType resume_state) {} in WillResume()
1246 lldb::StateType GetTemporaryResumeState() const { in GetTemporaryResumeState()
1341 void SetTemporaryResumeState(lldb::StateType new_state) { in SetTemporaryResumeState()
1372 lldb::StateType m_state; ///< The state of our process.
1386 lldb::StateType m_resume_state; ///< This state is used to force a thread to
[all …]
H A DThreadPlan.h373 lldb::StateType RunState();
408 bool WillResume(lldb::StateType resume_state, bool current_plan);
507 virtual lldb::StateType GetPlanRunState() = 0;
520 virtual bool DoWillResume(lldb::StateType resume_state, bool current_plan) { in DoWillResume()
620 lldb::StateType GetPlanRunState() override;
H A DProcess.h421 lldb::StateType state);
429 ProcessEventData(const lldb::ProcessSP &process, lldb::StateType state);
439 lldb::StateType GetState() const { return m_state; } in GetState()
463 static lldb::StateType GetStateFromEvent(const Event *event_ptr);
496 lldb::StateType m_state = lldb::eStateInvalid;
1294 lldb::StateType GetState();
2294 lldb::StateType GetNextEvent(lldb::EventSP &event_sp);
2305 lldb::StateType
2326 lldb::StateType GetStateChangedEvents(
2714 virtual void ForceScriptedState(lldb::StateType state) {} in ForceScriptedState()
[all …]
H A DThreadPlanBase.h33 lldb::StateType GetPlanRunState() override;
44 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepOverBreakpoint.h28 lldb::StateType GetPlanRunState() override;
41 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DThreadPlanStepThrough.h25 lldb::StateType GetPlanRunState() override;
32 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
H A DScriptedThreadPlan.h52 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
57 lldb::StateType GetPlanRunState() override;
H A DThreadPlanStepUntil.h25 lldb::StateType GetPlanRunState() override;
30 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/AIX/
H A DNativeThreadAIX.h27 lldb::StateType GetState() override;
49 lldb::StateType m_state;
H A DNativeThreadAIX.cpp18 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid) {} in NativeThreadAIX()
22 lldb::StateType NativeThreadAIX::GetState() { return m_state; } in GetState()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DScriptedThreadPlan.cpp165 lldb::StateType ScriptedThreadPlan::GetPlanRunState() { in GetPlanRunState()
169 lldb::StateType run_state = eStateRunning; in GetPlanRunState()
213 bool ScriptedThreadPlan::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()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h182 lldb::StateType GetState() const;
240 lldb::StateType state) = 0;
426 lldb::StateType m_state = lldb::eStateInvalid;
454 void SetState(lldb::StateType state, bool notify_delegates = true);
490 void SynchronouslyNotifyProcessStateChanged(lldb::StateType state);
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp478 lldb::StateType process_state) { in Populate()
501 case lldb::StateType::eStateSuspended: in Populate()
505 case lldb::StateType::eStateStopped: in Populate()
507 case lldb::StateType::eStateStepping: in Populate()
511 case lldb::StateType::eStateUnloaded: in Populate()
513 case lldb::StateType::eStateRunning: in Populate()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedThreadPlanPythonInterface.cpp85 lldb::StateType ScriptedThreadPlanPythonInterface::GetRunState() { in GetRunState()
93 return static_cast<lldb::StateType>(obj->GetUnsignedIntegerValue( in GetRunState()

1234