reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
86147   SWIG_Python_SetConstant(d, "eStateStopped",SWIG_From_int(static_cast< int >(lldb::eStateStopped)));
tools/lldb/include/lldb/Host/Debug.h
   69     AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateStopped);
tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  169   bool CanResume() const { return m_state == lldb::eStateStopped; }
tools/lldb/source/API/SBProcess.cpp
 1220   if (process_sp->GetState() != eStateStopped) {
tools/lldb/source/Commands/CommandObjectProcess.cpp
  554     if (state == eStateStopped) {
tools/lldb/source/Commands/CommandObjectThread.cpp
  840     if ((state == eStateCrashed) || (state == eStateStopped) ||
tools/lldb/source/Expression/UserExpression.cpp
  178   if (process == nullptr || process->GetState() != lldb::eStateStopped) {
tools/lldb/source/Interpreter/CommandInterpreter.cpp
 2153   if (eStateStopped != process_sp->GetState())
tools/lldb/source/Interpreter/CommandObject.cpp
  224       case eStateStopped:
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
 1504   case eStateStopped:
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  807   case eStateStopped:
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
  310   SetState(StateType::eStateStopped, false);
 1082     case eStateStopped:
 1204   case StateType::eStateStopped:
 1739   SetState(StateType::eStateStopped, true);
tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
  114   case eStateStopped:
  309   if (signo && m_state == StateType::eStateStopped &&
  322   const StateType new_state = StateType::eStateStopped;
  375   return GetState() == StateType::eStateStopped &&
  380   return GetState() == StateType::eStateStopped &&
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
  120         return eStateStopped;
  128         return eStateStopped;
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  827     PacketResult result = SendStopReasonForState(StateType::eStateStopped);
  854   case StateType::eStateStopped:
 1631   case eStateStopped:
 2738   actions.SetDefaultThreadActionIfNeeded(eStateStopped, 0);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 1751     return SetThreadStopInfo(stop_packet) == eStateStopped;
 2358     return eStateStopped;
 3682   if (GetPrivateState() == lldb::StateType::eStateStopped) {
 3687   SetPrivateState(lldb::StateType::eStateStopped);
 3762               case eStateStopped:
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  303   bool CanResume(lldb::StateType state) { return state == lldb::eStateStopped; }
tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  241     case eStateStopped:
tools/lldb/source/Target/Process.cpp
  577   case eStateStopped:
  770     case eStateStopped:
  829   case eStateStopped:
 1139   case eStateStopped:
 1632   case eStateStopped:
 2304   if (GetPrivateState() != eStateStopped) {
 2547         } else if (state == eStateStopped || state == eStateCrashed) {
 2581           if (state == eStateStopped &&
 2626     SetPrivateState(eStateStopped);
 2694   case eStateStopped:
 3015       if (state == eStateStopped || state == eStateCrashed) {
 3083       SetPrivateState(eStateStopped);
 3166     if (state != eStateStopped) {
 3173       if (private_state != eStateStopped) {
 3402   case eStateStopped:
 3921   if (m_state == eStateStopped && !m_restarted) {
 3936   if (m_state == eStateStopped && !m_restarted) {
 4667   if (m_private_state.GetValue() != eStateStopped) {
 4745     m_public_state.SetValueNoLock(eStateStopped);
 4893           if (stop_state == eStateStopped) {
 4986             case lldb::eStateStopped: {
 5110                 if (stop_state == lldb::eStateStopped &&
 5116               if (stop_state == lldb::eStateStopped) {
tools/lldb/source/Target/StopInfo.cpp
   59     } else if (ret_type == eStateStopped) {
tools/lldb/source/Target/Target.cpp
 2552   if (m_process_sp->GetState() != eStateStopped)
 2933       if (state == eStateStopped) {
 3060       if (state != eStateStopped) {
tools/lldb/source/Target/Thread.cpp
  698 void Thread::DidStop() { SetState(eStateStopped); }
tools/lldb/source/Utility/State.cpp
   26   case eStateStopped:
   80   case eStateStopped:
  104   case eStateStopped:
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
  160     if (state == lldb::eStateStopped) {
  356           case lldb::eStateStopped:
  767   case lldb::eStateStopped:
tools/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp
   82   ASSERT_EQ(eStateStopped, SendCPacket(response));
  130   ASSERT_EQ(eStateStopped, continue_state.get());
  173   ASSERT_EQ(eStateStopped, continue_state.get());
  199   ASSERT_EQ(eStateStopped, continue_state.get());
  222   ASSERT_EQ(eStateStopped, continue_state.get());
  228   ASSERT_EQ(eStateStopped, SendCPacket(response));
  258   ASSERT_EQ(eStateStopped, continue_state.get());
  284   ASSERT_EQ(eStateStopped, SendCPacket(response));
  312   ASSERT_EQ(eStateStopped, SendCPacket(response));
tools/lldb/unittests/Utility/StateTest.cpp
   22   EXPECT_EQ("stopped", llvm::formatv("{0}", eStateStopped).str());