| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | State.cpp | 16 case eStateInvalid: in StateAsCString() 78 case eStateInvalid: in StateIsRunningState() 91 case eStateInvalid: in StateIsStoppedState()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.cpp | 53 return eStateInvalid; in SendContinuePacketAndWaitForResponse() 75 return eStateInvalid; in SendContinuePacketAndWaitForResponse() 93 return eStateInvalid; in SendContinuePacketAndWaitForResponse() 96 return eStateInvalid; in SendContinuePacketAndWaitForResponse() 108 return eStateInvalid; in SendContinuePacketAndWaitForResponse() 112 return eStateInvalid; in SendContinuePacketAndWaitForResponse() 151 return eStateInvalid; in SendContinuePacketAndWaitForResponse()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptedThreadPythonInterface.cpp | 88 return eStateInvalid; in GetState() 90 return static_cast<StateType>(obj->GetIntegerValue(eStateInvalid)); in GetState()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeProcessNetBSD.cpp | 255 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 271 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 284 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 298 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 312 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 325 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 571 case StateType::eStateInvalid: in Kill() 1073 SetState(StateType::eStateInvalid); in MonitorClone()
|
| H A D | NativeThreadNetBSD.cpp | 39 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadNetBSD() 245 case eStateInvalid: in GetStopReason()
|
| /llvm-project-15.0.7/lldb/unittests/Utility/ |
| H A D | StateTest.cpp | 17 EXPECT_EQ("invalid", llvm::formatv("{0}", eStateInvalid).str()); in TEST()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.cpp | 231 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 242 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 249 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 289 SetState(StateType::eStateInvalid); in MonitorSIGTRAP() 540 case StateType::eStateInvalid: in Kill() 1025 SetState(StateType::eStateInvalid); in MonitorClone()
|
| H A D | NativeThreadFreeBSD.cpp | 37 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadFreeBSD() 233 case eStateInvalid: in GetStopReason()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | NativeThreadWindows.h | 56 lldb::StateType m_state = lldb::StateType::eStateInvalid;
|
| H A D | NativeThreadWindows.cpp | 134 case eStateInvalid: in GetStopReason()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/ |
| H A D | invalid_scripted_process.py | 53 return lldb.eStateInvalid
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Process.cpp | 616 StateType state = eStateInvalid; in GetNextEvent() 678 while (state != eStateInvalid) { in WaitForProcessToStop() 729 if (event_state == eStateInvalid) in HandleProcessStateChangedEvent() 733 case eStateInvalid: in HandleProcessStateChangedEvent() 966 StateType state = eStateInvalid; in GetStateChangedEvents() 1005 StateType state = eStateInvalid; in GetStateChangedEventsPrivate() 1620 case eStateInvalid: in CreateBreakpointSite() 2424 if (state == eStateInvalid) in WaitForProcessStopPrivate() 2735 case eStateInvalid: in PerformAction() 3373 case eStateInvalid: in ShouldBroadcastEvent() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | ScriptedProcessInterface.h | 89 virtual lldb::StateType GetState() { return lldb::eStateInvalid; } in GetState()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeThreadLinux.cpp | 94 : NativeThreadProtocol(process, tid), m_state(StateType::eStateInvalid), in NativeThreadLinux() 133 case eStateInvalid: in GetStopReason()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | DNB.cpp | 536 case eStateInvalid: in DNBProcessAttach() 851 return eStateInvalid; in DNBProcessIsAlive() 860 return eStateInvalid; in DNBProcessGetState() 919 return eStateInvalid; in DNBThreadGetState() 924 case eStateInvalid: in DNBStateAsString()
|
| H A D | libdebugserver.cpp | 159 case eStateInvalid: in HandleProcessStateChange()
|
| H A D | RNBContext.cpp | 228 case eStateInvalid: in ThreadFunctionProcessStatus()
|
| H A D | DNBDefs.h | 69 eStateInvalid = 0, enumerator
|
| H A D | debugserver.cpp | 327 case eStateInvalid: in RNBRunLoopLaunchInferior() 437 case eStateInvalid: in HandleProcessStateChange()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | process_events.py | 322 if state == lldb.eStateInvalid:
|
| H A D | performance.py | 202 …if state == lldb.eStateInvalid or state == lldb.eStateDetached or state == lldb.eStateCrashed or s…
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 422 lldb::StateType m_state = lldb::eStateInvalid;
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectProcess.cpp | 57 state = eStateInvalid; in StopProcessIfNecessary() 178 StateType state = eStateInvalid; in DoExecute() 389 StateType state = eStateInvalid; in DoExecute()
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | VSCode.cpp | 545 case lldb::eStateInvalid: in WaitForProcessToStop()
|
| /llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/ |
| H A D | GDBRemoteClientBaseTest.cpp | 342 ASSERT_EQ(eStateInvalid, continue_state.get()); in TEST_F()
|