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

References

gen/tools/lldb/scripts/LLDBWrapPython.cpp
86148   SWIG_Python_SetConstant(d, "eStateRunning",SWIG_From_int(static_cast< int >(lldb::eStateRunning)));
tools/lldb/include/lldb/Host/Debug.h
   65     AppendAction(LLDB_INVALID_THREAD_ID, lldb::eStateRunning);
tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  164     return m_state == lldb::eStateRunning || IsStepping();
tools/lldb/source/API/SBThread.cpp
 1126       exe_ctx.GetThreadPtr()->SetResumeState(eStateRunning, override_suspend);
tools/lldb/source/Commands/CommandObjectProcess.cpp
  596               eStateRunning, override_suspend);
tools/lldb/source/Commands/CommandObjectThread.cpp
  896               thread->SetResumeState(eStateRunning, override_suspend);
  925             thread->SetResumeState(eStateRunning, override_suspend);
tools/lldb/source/Interpreter/CommandObject.cpp
  240       case eStateRunning:
tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
 1508   case eStateRunning:
tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
  818   case eStateRunning:
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  112   return eStateRunning;
tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
  452     ResumeThread(thread, eStateRunning, LLDB_INVALID_SIGNAL_NUMBER);
  557   ResumeThread(new_thread, eStateRunning, LLDB_INVALID_SIGNAL_NUMBER);
  647       state = eStateRunning;
 1072     case eStateRunning:
 1154     if (thread_state == eStateRunning || thread_state == eStateStepping) {
 1205   case StateType::eStateRunning:
 1676   case eStateRunning: {
 1679       SetState(eStateRunning, true);
 1685       SetState(eStateRunning, true);
tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
  132   case eStateRunning:
  207   const StateType new_state = StateType::eStateRunning;
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
  850   case StateType::eStateRunning:
 1389   ResumeActionList resume_actions(StateType::eStateRunning,
 1404     ResumeAction action = {GetContinueThreadID(), StateType::eStateRunning,
 1460   ResumeActionList actions(StateType::eStateRunning,
 1541       thread_action.state = eStateRunning;
 1623   case eStateRunning:
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
 2485       m_public_state.GetValue() != eStateRunning) {
 3683     SetPrivateState(lldb::StateType::eStateRunning);
 3731               process->SetPrivateState(eStateRunning);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
  296     return state == lldb::eStateRunning || IsStepping(state);
tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
  245     case eStateRunning:
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
 1942     return lldb::eStateRunning;
tools/lldb/source/Target/Process.cpp
  578   case eStateRunning:
  819   case eStateRunning:
 1140   case eStateRunning:
 1633   case eStateRunning:
 2690   case eStateRunning:
 3082       SetPrivateState(eStateRunning);
 3137   if (m_public_state.GetValue() == eStateRunning ||
 3138       m_private_state.GetValue() == eStateRunning) {
 3262     if (m_public_state.GetValue() != eStateRunning) {
 3363   case eStateRunning:
 3376       case eStateRunning:
 4043           if (process_sp->GetPrivateState() == eStateRunning)
 4890         if (stop_state != eStateRunning) {
 5017             case lldb::eStateRunning:
tools/lldb/source/Target/StopInfo.cpp
   57     if (ret_type == eStateRunning) {
tools/lldb/source/Target/Thread.cpp
  236       m_resume_state(eStateRunning), m_temporary_resume_state(eStateRunning),
  236       m_resume_state(eStateRunning), m_temporary_resume_state(eStateRunning),
tools/lldb/source/Target/ThreadPlan.cpp
  274   return eStateRunning;
tools/lldb/source/Target/ThreadPlanBase.cpp
  180 StateType ThreadPlanBase::GetPlanRunState() { return eStateRunning; }
tools/lldb/source/Target/ThreadPlanCallFunction.cpp
  365 StateType ThreadPlanCallFunction::GetPlanRunState() { return eStateRunning; }
tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
   96   return eStateRunning;
tools/lldb/source/Target/ThreadPlanPython.cpp
  160   lldb::StateType run_state = eStateRunning;
tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
  168 StateType ThreadPlanRunToAddress::GetPlanRunState() { return eStateRunning; }
tools/lldb/source/Target/ThreadPlanStepOut.cpp
  370 StateType ThreadPlanStepOut::GetPlanRunState() { return eStateRunning; }
tools/lldb/source/Target/ThreadPlanStepRange.cpp
  421     return eStateRunning;
tools/lldb/source/Target/ThreadPlanStepThrough.cpp
  215 StateType ThreadPlanStepThrough::GetPlanRunState() { return eStateRunning; }
tools/lldb/source/Target/ThreadPlanStepUntil.cpp
  278 StateType ThreadPlanStepUntil::GetPlanRunState() { return eStateRunning; }
tools/lldb/source/Utility/State.cpp
   28   case eStateRunning:
   72   case eStateRunning:
   95   case eStateRunning:
tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
  363           case lldb::eStateRunning:
  768   case lldb::eStateRunning:
tools/lldb/unittests/Utility/StateTest.cpp
   23   EXPECT_EQ("running", llvm::formatv("{0}", eStateRunning).str());