Home
last modified time | relevance | path

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

12345

/openbsd-src/gnu/llvm/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,
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeProcessOpenBSD.cpp114 process_up->SetState(StateType::eStateStopped, false); in Launch()
192 SetState(StateType::eStateExited, true); in MonitorExited()
200 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
208 SetState(StateType::eStateStopped, true); in MonitorSignal()
330 case StateType::eStateInvalid: in Kill()
331 case StateType::eStateExited: in Kill()
332 case StateType::eStateCrashed: in Kill()
333 case StateType::eStateDetached: in Kill()
334 case StateType::eStateUnloaded: in Kill()
340 case StateType::eStateConnected: in Kill()
[all …]
H A DNativeThreadOpenBSD.cpp29 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadOpenBSD()
79 const StateType new_state = StateType::eStateStopped; in SetStopped()
85 m_state = StateType::eStateRunning; in SetRunning()
90 m_state = StateType::eStateStepping; in SetStepping()
96 lldb::StateType NativeThreadOpenBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadOpenBSD.h35 lldb::StateType GetState() override;
69 lldb::StateType m_state;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp107 process_up->SetState(StateType::eStateStopped, false); in Launch()
185 SetState(StateType::eStateExited, true); in MonitorExited()
205 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP()
245 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
250 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
255 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
264 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
271 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
279 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
284 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
[all …]
H A DNativeThreadNetBSD.cpp39 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD()
168 const StateType new_state = StateType::eStateStopped; in SetStopped()
174 m_state = StateType::eStateRunning; in SetRunning()
179 m_state = StateType::eStateStepping; in SetStepping()
227 lldb::StateType NativeThreadNetBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadNetBSD.h34 lldb::StateType GetState() override;
73 lldb::StateType m_state;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeThreadLinux.cpp94 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadLinux()
110 lldb::StateType NativeThreadLinux::GetState() { return m_state; } in GetState()
212 const StateType new_state = StateType::eStateRunning; in Resume()
254 const StateType new_state = StateType::eStateStepping; in SingleStep()
372 if (signo && m_state == StateType::eStateStopped && in IsStopped()
382 if (m_state == StateType::eStateStepping) in SetStopped()
388 const StateType new_state = StateType::eStateStopped; in SetStopped()
441 return GetState() == StateType::eStateStopped && in IsStoppedAtBreakpoint()
446 return GetState() == StateType::eStateStopped && in IsStoppedAtWatchpoint()
491 const StateType new_state = StateType::eStateExited; in SetExited()
[all …]
H A DNativeThreadLinux.h38 lldb::StateType GetState() override;
106 void MaybeLogStateChange(lldb::StateType new_state);
116 lldb::StateType m_state;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp102 process_up->SetState(StateType::eStateStopped, false); in Launch()
184 SetState(StateType::eStateExited, true); in MonitorExited()
193 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP()
231 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
242 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
249 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
259 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
284 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
289 SetState(StateType::eStateInvalid); in MonitorSIGTRAP()
319 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP()
[all …]
H A DNativeThreadFreeBSD.cpp37 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadFreeBSD()
168 const StateType new_state = StateType::eStateStopped; in SetStopped()
174 m_state = StateType::eStateRunning; in SetRunning()
179 m_state = StateType::eStateStepping; in SetStepping()
215 lldb::StateType NativeThreadFreeBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadFreeBSD.h34 lldb::StateType GetState() override;
76 lldb::StateType m_state;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeThreadWindows.h29 Status DoResume(lldb::StateType resume_state);
33 lldb::StateType GetState() override { return m_state; } in GetState()
56 lldb::StateType m_state = lldb::StateType::eStateInvalid;
H A DTargetThreadWindows.cpp49 void TargetThreadWindows::WillResume(lldb::StateType resume_state) {} in WillResume()
128 StateType resume_state = GetTemporaryResumeState(); in DoResume()
129 StateType current_state = GetState(); in DoResume()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
1160 lldb::StateType GetTemporaryResumeState() const { in GetTemporaryResumeState()
1245 void SetTemporaryResumeState(lldb::StateType new_state) { in SetTemporaryResumeState()
1273 lldb::StateType m_state; ///< The state of our process.
1284 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.h394 lldb::StateType state);
402 ProcessEventData(const lldb::ProcessSP &process, lldb::StateType state);
412 lldb::StateType GetState() const { return m_state; } in GetState()
436 static lldb::StateType GetStateFromEvent(const Event *event_ptr);
467 lldb::StateType m_state = lldb::eStateInvalid;
1244 lldb::StateType GetState();
2132 lldb::StateType GetNextEvent(lldb::EventSP &event_sp);
2140 lldb::StateType
2159 lldb::StateType GetStateChangedEvents(
2664 lldb::StateType GetPrivateState();
[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 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;
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.h141 bool IsRunning(lldb::StateType state) { in IsRunning()
145 bool IsStepping(lldb::StateType state) { in IsStepping()
149 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; } in CanResume()
151 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; } in HasExited()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h186 lldb::StateType GetState() const;
244 lldb::StateType state) = 0;
423 lldb::StateType m_state = lldb::eStateInvalid;
451 void SetState(lldb::StateType state, bool notify_delegates = true);
487 void SynchronouslyNotifyProcessStateChanged(lldb::StateType state);

12345