/external/llvm-project/lldb/include/lldb/Utility/ |
D | State.h | 61 bool StateIsStoppedState(lldb::StateType state, bool must_exist);
|
/external/llvm-project/lldb/source/Utility/ |
D | State.cpp | 89 bool lldb_private::StateIsStoppedState(StateType state, bool must_exist) { in StateIsStoppedState() function in lldb_private
|
/external/llvm-project/lldb/source/Core/ |
D | IOHandlerCursesGUI.cpp | 1833 if (StateIsStoppedState(state, true)) { in WindowDelegateDraw() 2094 if (StateIsStoppedState(state, true)) { in TreeDelegateGenerateChildren() 2126 if (StateIsStoppedState(state, true)) { in TreeDelegateItemSelected() 2184 if (StateIsStoppedState(state, true)) { in TreeDelegateGenerateChildren() 2605 if (StateIsStoppedState(state, true)) { in WindowDelegateDraw() 3095 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 3107 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 3119 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 3131 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 3181 StateIsStoppedState(process->GetState(), true)) { in MenuDelegateAction() [all …]
|
D | Value.cpp | 402 ? StateIsStoppedState(exe_ctx->GetProcessPtr()->GetState(), in GetValueAsData()
|
D | Debugger.cpp | 1317 state_is_stopped = StateIsStoppedState(event_state, false); in HandleProcessEvent()
|
/external/llvm-project/lldb/source/Target/ |
D | Process.cpp | 803 if (!wait_always && StateIsStoppedState(state, true) && in WaitForProcessToStop() 804 StateIsStoppedState(GetPrivateState(), true)) { in WaitForProcessToStop() 1257 if (StateIsStoppedState(state, true)) { in UpdateThreadListIfNeeded() 1369 if (StateIsStoppedState(state, true)) { in UpdateQueueListIfNeeded() 1429 const bool old_state_is_stopped = StateIsStoppedState(old_state, false); in SetPublicState() 1430 const bool new_state_is_stopped = StateIsStoppedState(new_state, false); in SetPublicState() 1481 if (!StateIsStoppedState(state, must_be_alive)) in ResumeSynchronous() 1534 const bool old_state_is_stopped = StateIsStoppedState(old_state, false); in SetPrivateState() 1535 const bool new_state_is_stopped = StateIsStoppedState(new_state, false); in SetPrivateState() 1548 if (StateIsStoppedState(new_state, false)) { in SetPrivateState() [all …]
|
D | ExecutionContext.cpp | 122 (m_process_sp && StateIsStoppedState(m_process_sp->GetState(), true))) { in ExecutionContext() 519 StateIsStoppedState(process_sp->GetState(), true)) { in SetTargetPtr()
|
D | Thread.cpp | 1909 if (StateIsStoppedState(process->GetState(), true)) { in StepIn() 1942 if (StateIsStoppedState(process->GetState(), true)) { in StepOver() 1974 if (StateIsStoppedState(process->GetState(), true)) { in StepOut()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBDebugger.i | 387 StateIsStoppedState (lldb::StateType state);
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBDebugger.h | 220 static bool StateIsStoppedState(lldb::StateType state);
|
/external/llvm-project/lldb/source/API/ |
D | SBDebugger.cpp | 585 bool is_stopped = StateIsStoppedState(event_state); in HandleProcessEvent() 719 bool SBDebugger::StateIsStoppedState(StateType state) { in StateIsStoppedState() function in SBDebugger 720 LLDB_RECORD_STATIC_METHOD(bool, SBDebugger, StateIsStoppedState, in StateIsStoppedState() 723 const bool result = lldb_private::StateIsStoppedState(state, false); in StateIsStoppedState() 1748 LLDB_REGISTER_STATIC_METHOD(bool, SBDebugger, StateIsStoppedState, in RegisterMethods()
|
D | SBThread.cpp | 1083 return StateIsStoppedState(exe_ctx.GetThreadPtr()->GetState(), true); in IsStopped()
|
/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeThreadLinux.cpp | 305 if (!StateIsStoppedState(m_state, false)) in IsStopped()
|
D | NativeProcessLinux.cpp | 812 if (!StateIsStoppedState(thread_state, false)) { in MonitorSignal() 1157 } else if (!stopped_thread && StateIsStoppedState(thread_state, true)) { in Interrupt()
|
/external/llvm-project/lldb/source/Host/common/ |
D | NativeProcessProtocol.cpp | 732 if (StateIsStoppedState(state, false)) { in SetState()
|
/external/llvm-project/lldb/source/Plugins/Process/MacOSX-Kernel/ |
D | ProcessKDP.cpp | 923 if (StateIsStoppedState(state, true)) { in DoExecute()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectTarget.cpp | 94 show_process_status = StateIsStoppedState(state, true); in DumpTargetInfo() 4261 if (StateIsStoppedState(process_state, true)) { in DoExecute()
|