Home
last modified time | relevance | path

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

1234

/freebsd-13.1/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-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeProcessNetBSD.cpp570 case StateType::eStateInvalid: in Kill()
571 case StateType::eStateExited: in Kill()
572 case StateType::eStateCrashed: in Kill()
573 case StateType::eStateDetached: in Kill()
574 case StateType::eStateUnloaded: in Kill()
580 case StateType::eStateConnected: in Kill()
581 case StateType::eStateAttaching: in Kill()
582 case StateType::eStateLaunching: in Kill()
583 case StateType::eStateStopped: in Kill()
584 case StateType::eStateRunning: in Kill()
[all …]
H A DNativeThreadNetBSD.cpp39 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD()
165 const StateType new_state = StateType::eStateStopped; in SetStopped()
171 m_state = StateType::eStateRunning; in SetRunning()
176 m_state = StateType::eStateStepping; in SetStepping()
224 lldb::StateType NativeThreadNetBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadNetBSD.h34 lldb::StateType GetState() override;
73 lldb::StateType m_state;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeProcessFreeBSD.cpp526 case StateType::eStateInvalid: in Kill()
527 case StateType::eStateExited: in Kill()
528 case StateType::eStateCrashed: in Kill()
529 case StateType::eStateDetached: in Kill()
530 case StateType::eStateUnloaded: in Kill()
536 case StateType::eStateConnected: in Kill()
537 case StateType::eStateAttaching: in Kill()
538 case StateType::eStateLaunching: in Kill()
539 case StateType::eStateStopped: in Kill()
540 case StateType::eStateRunning: in Kill()
[all …]
H A DNativeThreadFreeBSD.cpp37 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadFreeBSD()
165 const StateType new_state = StateType::eStateStopped; in SetStopped()
171 m_state = StateType::eStateRunning; in SetRunning()
176 m_state = StateType::eStateStepping; in SetStepping()
212 lldb::StateType NativeThreadFreeBSD::GetState() { return m_state; } in GetState()
H A DNativeThreadFreeBSD.h34 lldb::StateType GetState() override;
73 lldb::StateType m_state;
/freebsd-13.1/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()
59 void AppendAction(lldb::tid_t tid, lldb::StateType state, int signal = 0) {
88 size_t NumActionsWithState(lldb::StateType state) const { in NumActionsWithState()
98 bool SetDefaultThreadActionIfNeeded(lldb::StateType action, int signal) { in SetDefaultThreadActionIfNeeded()
/freebsd-13.1/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-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DThread.h160 lldb::StateType GetState() const;
162 void SetState(lldb::StateType state);
184 void SetResumeState(lldb::StateType state, bool override_suspend = false) {
198 lldb::StateType GetResumeState() const { return m_resume_state; } in GetResumeState()
207 bool ShouldResume(lldb::StateType resume_state);
210 virtual void WillResume(lldb::StateType resume_state) {} in WillResume()
1156 lldb::StateType GetTemporaryResumeState() const { in GetTemporaryResumeState()
1231 void SetTemporaryResumeState(lldb::StateType new_state) { in SetTemporaryResumeState()
1251 lldb::StateType m_state; ///< The state of our process.
1262 lldb::StateType m_resume_state; ///< This state is used to force a thread to
[all …]
H A DThreadPlan.h358 lldb::StateType RunState();
385 bool WillResume(lldb::StateType resume_state, bool current_plan);
486 virtual bool DoWillResume(lldb::StateType resume_state, bool current_plan) { in DoWillResume()
518 virtual lldb::StateType GetPlanRunState() = 0;
588 lldb::StateType GetPlanRunState() override;
H A DProcess.h400 lldb::StateType state);
418 lldb::StateType GetState() const { return m_state; } in GetState()
473 lldb::StateType m_state = lldb::eStateInvalid;
1219 lldb::StateType GetState();
2141 lldb::StateType
2160 lldb::StateType GetStateChangedEvents(
2628 lldb::StateType GetPrivateState();
2850 ThreadSafeValue<lldb::StateType> m_public_state;
2851 ThreadSafeValue<lldb::StateType>
2981 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 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-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeProcessProtocol.h174 lldb::StateType GetState() const;
228 lldb::StateType state) = 0;
386 lldb::StateType m_state = lldb::eStateInvalid;
414 void SetState(lldb::StateType state, bool notify_delegates = true);
450 void SynchronouslyNotifyProcessStateChanged(lldb::StateType state);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.h77 lldb::StateType state) override;
102 lldb::StateType m_inferior_prev_state = lldb::StateType::eStateInvalid;
119 PacketResult SendStopReasonForState(lldb::StateType process_state);
H A DProcessGDBRemote.h297 bool IsRunning(lldb::StateType state) { in IsRunning()
301 bool IsStepping(lldb::StateType state) { in IsStepping()
305 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; } in CanResume()
307 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; } in HasExited()
355 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h37 lldb::StateType GetPlanRunState() override;
91 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanBase.cpp180 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; } in GetPlanRunState()
184 bool ThreadPlanBase::DoWillResume(lldb::StateType resume_state, in DoWillResume()
H A DThreadPlanStepOverBreakpoint.cpp105 StateType ThreadPlanStepOverBreakpoint::GetPlanRunState() { in GetPlanRunState()
109 bool ThreadPlanStepOverBreakpoint::DoWillResume(StateType resume_state, in DoWillResume()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp508 typename StateType = typename BaseType::StateType,
516 StateType S(StateType::getBestState(this->getState())); in updateImpl()
577 typename StateType = typename AAType::StateType>
607 typename StateType = typename AAType::StateType,
615 StateType S = StateType::getBestState(this->getState()); in updateImpl()
634 typename StateType = typename BaseType::StateType,
666 template <class AAType, typename StateType = typename AAType::StateType>
693 template <class AAType, typename StateType = typename AAType::StateType>
2265 StateType T; in updateImpl()
4452 StateType T; in updateImpl()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBDebugger.i379 StateAsCString (lldb::StateType state);
384 StateIsRunningState (lldb::StateType state);
387 StateIsStoppedState (lldb::StateType state);

1234