| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | State.cpp | 26 case eStateStopped: in StateAsCString() 80 case eStateStopped: in StateIsRunningState() 104 case eStateStopped: in StateIsStoppedState()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 204 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP() 244 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 249 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 263 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 344 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 349 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 380 SetState(StateType::eStateStopped, true); in MonitorSignal() 501 case eStateStopped: in Resume() 583 case StateType::eStateStopped: in Kill() 875 SetState(StateType::eStateStopped, false); in Attach() [all …]
|
| H A D | NativeThreadNetBSD.cpp | 165 const StateType new_state = StateType::eStateStopped; in SetStopped() 232 case eStateStopped: in GetStopReason() 263 assert(m_state == eStateStopped); in SetWatchpoint() 290 assert(m_state == eStateStopped); in SetHardwareBreakpoint()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.cpp | 188 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP() 253 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 278 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 312 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 332 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 339 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 374 SetState(StateType::eStateStopped, true); in MonitorSignal() 460 case eStateStopped: in Resume() 539 case StateType::eStateStopped: in Kill() 835 SetState(StateType::eStateStopped, false); in Attach() [all …]
|
| H A D | NativeThreadFreeBSD.cpp | 165 const StateType new_state = StateType::eStateStopped; in SetStopped() 220 case eStateStopped: in GetStopReason() 251 assert(m_state == eStateStopped); in SetWatchpoint() 278 assert(m_state == eStateStopped); in SetHardwareBreakpoint()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.cpp | 175 SetPrivateState(eStateStopped); in DoLaunch() 205 SetPrivateState(eStateStopped); in DoResume() 218 SetPrivateState(eStateStopped); in DoStop()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | Process.cpp | 678 case eStateStopped: in WaitForProcessToStop() 737 case eStateStopped: in HandleProcessStateChangedEvent() 1071 case eStateStopped: in IsAlive() 1603 case eStateStopped: in CreateBreakpointSite() 2562 if (state == eStateStopped && in Launch() 2607 SetPrivateState(eStateStopped); in LoadCore() 2675 case eStateStopped: in PerformAction() 3061 SetPrivateState(eStateStopped); in PrivateResume() 3145 if (state != eStateStopped) { in StopForDestroyOrDetach() 3388 case eStateStopped: in ShouldBroadcastEvent() [all …]
|
| H A D | ProcessTrace.cpp | 71 SetPrivateState(eStateStopped); in DidAttach()
|
| H A D | StopInfo.cpp | 59 } else if (ret_type == eStateStopped) { in HasTargetRunSinceMe()
|
| H A D | Target.cpp | 2611 if (m_process_sp->GetState() != eStateStopped) in RunStopHooks() 3039 case eStateStopped: { in Launch() 3189 if (state != eStateStopped) { in Attach()
|
| H A D | Thread.cpp | 729 void Thread::DidStop() { SetState(eStateStopped); } in DidStop()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBProcess.i | 448 s == eStateStopped or 466 if state == eStateStopped or state == eStateCrashed or state == eStateSuspended:
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.cpp | 145 return eStateStopped; in SendContinuePacketAndWaitForResponse() 153 return eStateStopped; in SendContinuePacketAndWaitForResponse()
|
| H A D | ThreadGDBRemote.cpp | 249 case eStateStopped: in WillResume()
|
| H A D | ProcessGDBRemote.h | 305 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; } in CanResume()
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 1009 PacketResult result = SendStopReasonForState(StateType::eStateStopped); in HandleInferiorState_Stopped() 1036 case StateType::eStateStopped: in ProcessStateChanged() 1711 case eStateStopped: in SendStopReasonForState() 2810 actions.SetDefaultThreadActionIfNeeded(eStateStopped, 0); in Handle_s()
|
| H A D | ProcessGDBRemote.cpp | 1721 return SetThreadStopInfo(stop_packet) == eStateStopped; in CalculateThreadStopInfo() 2350 return eStateStopped; in SetThreadStopInfo() 3712 if (GetPrivateState() == lldb::StateType::eStateStopped) { in HandleNotifyPacket() 3717 SetPrivateState(lldb::StateType::eStateStopped); in HandleNotifyPacket() 3806 case eStateStopped: in AsyncThread()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | Debug.h | 69 AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateStopped); in AppendSuspendAll()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 182 bool CanResume() const { return m_state == lldb::eStateStopped; } in CanResume()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | UserExpression.cpp | 179 if (process == nullptr || process->GetState() != lldb::eStateStopped) { in Evaluate()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-enumerations.h | 84 eStateStopped, ///< Process or thread is stopped and can be examined. enumerator
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 230 case eStateStopped: in CheckRequirements()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectProcess.cpp | 528 if (state == eStateStopped) { in DoExecute()
|
| H A D | CommandObjectThread.cpp | 645 if ((state == eStateCrashed) || (state == eStateStopped) || in DoExecute()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBProcess.cpp | 1224 if (process_sp->GetState() != eStateStopped) { in SaveCore()
|