Home
last modified time | relevance | path

Searched refs:RunState (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.cpp117 ShutdownCV.wait(Lock, [this]() { return RunState == ServerShutDown; }); in waitForDisconnect()
127 RunState = ServerShuttingDown; in handleDisconnect()
147 RunState = ServerShutDown; in handleDisconnect()
268 if (RunState != ServerRunning) in doJITDispatch()
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadList.cpp564 assert(thread_sp->GetCurrentPlan()->RunState() != eStateSuspended); in WillResume()
587 run_state = thread_sp->GetCurrentPlan()->RunState(); in WillResume()
610 if (!thread_sp->ShouldResume(thread_sp->GetCurrentPlan()->RunState())) in WillResume()
H A DThreadPlan.cpp159 lldb::StateType ThreadPlan::RunState() { in RunState() function in ThreadPlan
H A DThread.cpp650 if (GetCurrentPlan()->RunState() != eStateStepping) { in SetupForResume()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadPlan.h363 lldb::StateType RunState();
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DSimpleRemoteEPCServer.h167 enum { ServerRunning, ServerShuttingDown, ServerShutDown } RunState; variable