| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 203 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP() 243 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 248 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 262 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 343 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 348 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 379 SetState(StateType::eStateStopped, true); in MonitorSignal() 523 case eStateStopped: in Resume() 603 case StateType::eStateStopped: in Kill() 895 SetState(StateType::eStateStopped, false); in Attach() [all …]
|
| H A D | NativeThreadNetBSD.cpp | 167 const StateType new_state = StateType::eStateStopped; in SetStopped() 234 case eStateStopped: in GetStopReason() 265 assert(m_state == eStateStopped); in SetWatchpoint() 292 assert(m_state == eStateStopped); in SetHardwareBreakpoint()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.cpp | 191 SetState(StateType::eStateStopped, true); in MonitorSIGSTOP() 257 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 282 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 317 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 338 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 346 SetState(StateType::eStateStopped, true); in MonitorSIGTRAP() 382 SetState(StateType::eStateStopped, true); in MonitorSignal() 468 case eStateStopped: in Resume() 551 case StateType::eStateStopped: in Kill() 850 SetState(StateType::eStateStopped, false); in Attach() [all …]
|
| H A D | NativeThreadFreeBSD.cpp | 167 const StateType new_state = StateType::eStateStopped; in SetStopped() 222 case eStateStopped: in GetStopReason() 253 assert(m_state == eStateStopped); in SetWatchpoint() 280 assert(m_state == eStateStopped); in SetHardwareBreakpoint()
|
| /freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBProcessExtensions.i | 22 s == eStateStopped or 40 if state == eStateStopped or state == eStateCrashed or state == eStateSuspended:
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | Process.cpp | 701 case eStateStopped: in WaitForProcessToStop() 761 case eStateStopped: in HandleProcessStateChangedEvent() 1097 case eStateStopped: in IsAlive() 1644 case eStateStopped: in CreateBreakpointSite() 2281 if (GetPrivateState() != eStateStopped) { in AllocateMemory() 2660 SetPrivateState(eStateStopped); in LoadCore() 2737 case eStateStopped: in PerformAction() 3143 SetPrivateState(eStateStopped); in PrivateResume() 3231 if (state != eStateStopped) { in StopForDestroyOrDetach() 3476 case eStateStopped: in ShouldBroadcastEvent() [all …]
|
| H A D | ProcessTrace.cpp | 65 SetPrivateState(eStateStopped); in DidAttach()
|
| H A D | StopInfo.cpp | 62 } else if (ret_type == eStateStopped) { in HasTargetRunSinceMe()
|
| H A D | Target.cpp | 2900 if (m_process_sp->GetState() != eStateStopped) in RunStopHooks() 3334 case eStateStopped: { in Launch() 3485 if (state != eStateStopped) { in Attach()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Expression/ |
| H A D | UtilityFunction.cpp | 69 if (process_sp->GetState() != lldb::eStateStopped) { in MakeFunctionCaller()
|
| H A D | FunctionCaller.cpp | 82 if (process->GetState() != lldb::eStateStopped) { in WriteFunctionWrapper() 237 if (process->GetState() != lldb::eStateStopped) { in InsertFunction()
|
| H A D | UserExpression.cpp | 206 if (process != nullptr && process->GetState() != lldb::eStateStopped) { in Evaluate()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.cpp | 144 return eStateStopped; in SendContinuePacketAndWaitForResponse() 152 return eStateStopped; in SendContinuePacketAndWaitForResponse()
|
| H A D | ThreadGDBRemote.cpp | 249 case eStateStopped: in WillResume()
|
| H A D | ProcessGDBRemote.h | 315 bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; } in CanResume()
|
| H A D | GDBRemoteCommunicationServerLLGS.cpp | 1084 *process, StateType::eStateStopped, /*force_synchronous=*/false); in HandleInferiorState_Stopped() 1108 case StateType::eStateStopped: in ProcessStateChanged() 1956 case eStateStopped: in SendStopReasonForState() 3043 actions.SetDefaultThreadActionIfNeeded(eStateStopped, 0); in Handle_s()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | Debug.h | 67 AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateStopped); in AppendSuspendAll()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUtilityFunction.cpp | 103 if (process->GetState() != lldb::eStateStopped) { in Install()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
| H A D | ScriptedProcess.cpp | 174 SetPrivateState(eStateStopped); in DoLaunch() 194 SetPrivateState(eStateStopped); in DoAttach()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 194 bool CanResume() const { return m_state == lldb::eStateStopped; } in CanResume()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-enumerations.h | 85 eStateStopped, ///< Process or thread is stopped and can be examined. enumerator
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 232 case eStateStopped: in CheckRequirements()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 318 case eStateStopped: in SynchronouslyNotifyProcessStateChanged()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBProcess.cpp | 1181 if (process_sp->GetState() != eStateStopped) { in SaveCore()
|