| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | State.h | 32 const char *StateAsCString(lldb::StateType state); 45 bool StateIsRunningState(lldb::StateType state); 68 bool StateIsStoppedState(lldb::StateType state, bool must_exist); 75 template <> struct format_provider<lldb::StateType> { 76 static void format(const lldb::StateType &state, raw_ostream &Stream,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 412 case StateType::eStateInvalid: in Kill() 413 case StateType::eStateExited: in Kill() 414 case StateType::eStateCrashed: in Kill() 415 case StateType::eStateDetached: in Kill() 416 case StateType::eStateUnloaded: in Kill() 422 case StateType::eStateConnected: in Kill() 423 case StateType::eStateAttaching: in Kill() 424 case StateType::eStateLaunching: in Kill() 425 case StateType::eStateStopped: in Kill() 426 case StateType::eStateRunning: in Kill() [all …]
|
| H A D | NativeThreadNetBSD.cpp | 29 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD() 94 const StateType new_state = StateType::eStateStopped; in SetStopped() 100 m_state = StateType::eStateRunning; in SetRunning() 105 m_state = StateType::eStateStepping; in SetStepping() 111 lldb::StateType NativeThreadNetBSD::GetState() { return m_state; } in GetState()
|
| H A D | NativeThreadNetBSD.h | 35 lldb::StateType GetState() override; 68 lldb::StateType m_state;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/ |
| H A D | Debug.h | 26 lldb::StateType state; // Valid values are eStateStopped/eStateSuspended, 42 ResumeActionList(lldb::StateType default_action, int signal) in ResumeActionList() 64 void AppendAction(lldb::tid_t tid, lldb::StateType state, int signal = 0) { 93 size_t NumActionsWithState(lldb::StateType state) const { in NumActionsWithState() 103 bool SetDefaultThreadActionIfNeeded(lldb::StateType action, int signal) { in SetDefaultThreadActionIfNeeded()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/ |
| H A D | Thread.h | 167 lldb::StateType GetState() const; 169 void SetState(lldb::StateType state); 195 void SetResumeState(lldb::StateType state, bool override_suspend = false) { 211 lldb::StateType GetResumeState() const { return m_resume_state; } in GetResumeState() 220 bool ShouldResume(lldb::StateType resume_state); 223 virtual void WillResume(lldb::StateType resume_state) {} in WillResume() 1224 lldb::StateType GetTemporaryResumeState() const { in GetTemporaryResumeState() 1303 void SetTemporaryResumeState(lldb::StateType new_state) { in SetTemporaryResumeState() 1325 lldb::StateType m_state; ///< The state of our process. 1343 lldb::StateType m_resume_state; ///< This state is used to force a thread to [all …]
|
| H A D | ThreadPlan.h | 422 lldb::StateType RunState(); 443 bool WillResume(lldb::StateType resume_state, bool current_plan); 564 virtual bool DoWillResume(lldb::StateType resume_state, bool current_plan) { in DoWillResume() 595 virtual lldb::StateType GetPlanRunState() = 0; 661 lldb::StateType GetPlanRunState() override;
|
| H A D | Process.h | 585 lldb::StateType state); 603 lldb::StateType GetState() const { return m_state; } in GetState() 656 lldb::StateType m_state; 1508 lldb::StateType GetState(); 2433 lldb::StateType 2454 lldb::StateType GetStateChangedEvents( 2842 lldb::StateType GetPrivateState(); 3025 ThreadSafeValue<lldb::StateType> m_public_state; 3026 ThreadSafeValue<lldb::StateType> 3142 void SetPrivateState(lldb::StateType state); [all …]
|
| H A D | ThreadPlanBase.h | 36 lldb::StateType GetPlanRunState() override; 45 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
| H A D | ThreadPlanStepOverBreakpoint.h | 28 lldb::StateType GetPlanRunState() override; 41 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
| H A D | ThreadPlanStepThrough.h | 26 lldb::StateType GetPlanRunState() override; 33 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
| H A D | ThreadPlanStepUntil.h | 26 lldb::StateType GetPlanRunState() override; 31 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
| H A D | ThreadPlanStepOut.h | 34 lldb::StateType GetPlanRunState() override; 50 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | State.cpp | 15 const char *lldb_private::StateAsCString(StateType state) { in StateAsCString() 69 bool lldb_private::StateIsRunningState(StateType state) { in StateIsRunningState() 90 bool lldb_private::StateIsStoppedState(StateType state, bool must_exist) { in StateIsStoppedState()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerLLGS.h | 75 lldb::StateType state) override; 93 lldb::StateType m_inferior_prev_state = lldb::StateType::eStateInvalid; 106 PacketResult SendStopReasonForState(lldb::StateType process_state);
|
| H A D | ProcessGDBRemote.h | 319 bool IsRunning(lldb::StateType state) { in IsRunning() 323 bool IsStepping(lldb::StateType state) { in IsStepping() 327 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; } in CanResume() 329 bool HasExited(lldb::StateType state) { return state == lldb::eStateExited; } in HasExited() 377 lldb::StateType SetThreadStopInfo(StringExtractor &stop_packet);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Darwin/ |
| H A D | NativeThreadDarwin.h | 54 lldb::StateType GetState() override; 138 void MaybeLogStateChange(lldb::StateType new_state); 163 lldb::StateType m_state;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 141 lldb::StateType GetState() const; 201 lldb::StateType state) = 0; 414 lldb::StateType m_state = lldb::eStateInvalid; 440 void SetState(lldb::StateType state, bool notify_delegates = true); 480 void SynchronouslyNotifyProcessStateChanged(lldb::StateType state);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBDebugger.h | 184 static const char *StateAsCString(lldb::StateType state); 188 static bool StateIsRunningState(lldb::StateType state); 190 static bool StateIsStoppedState(lldb::StateType state);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Target/ |
| H A D | ThreadPlan.cpp | 104 bool ThreadPlan::WillResume(StateType resume_state, bool current_plan) { in WillResume() 142 lldb::StateType ThreadPlan::RunState() { in RunState() 265 lldb::StateType ThreadPlanNull::GetPlanRunState() { in GetPlanRunState()
|
| H A D | ThreadPlanBase.cpp | 183 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; } in GetPlanRunState() 187 bool ThreadPlanBase::DoWillResume(lldb::StateType resume_state, in DoWillResume()
|
| H A D | ThreadPlanStepOverBreakpoint.cpp | 119 StateType ThreadPlanStepOverBreakpoint::GetPlanRunState() { in GetPlanRunState() 123 bool ThreadPlanStepOverBreakpoint::DoWillResume(StateType resume_state, in DoWillResume()
|
| H A D | Process.cpp | 975 StateType state = GetState(); in WaitForProcessToStop() 1046 StateType event_state = in HandleProcessStateChangedEvent() 1296 StateType 1551 StateType Process::GetState() { in GetState() 1636 StateType state = in ResumeSynchronous() 2686 StateType 2689 StateType state; in WaitForProcessStopPrivate() 2862 StateType state = in LoadCore() 3378 StateType state = in StopForDestroyOrDetach() 3567 const StateType state = in ShouldBroadcastEvent() [all …]
|
| H A D | ThreadPlanPython.cpp | 163 lldb::StateType ThreadPlanPython::GetPlanRunState() { in GetPlanRunState() 168 lldb::StateType run_state = eStateRunning; in GetPlanRunState()
|
| H A D | ThreadPlanStepThrough.cpp | 223 StateType ThreadPlanStepThrough::GetPlanRunState() { return eStateRunning; } in GetPlanRunState() 225 bool ThreadPlanStepThrough::DoWillResume(StateType resume_state, in DoWillResume()
|