| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBProcess.i | 185 GetState (); 445 s = self.GetState() 458 state = self.GetState() 465 state = self.GetState() 515 …state = property(GetState, None, doc='''A read only property that returns an lldb enumeration valu…
|
| /freebsd-12-stable/stand/efi/include/ |
| D | efipoint.h | 63 EFI_SIMPLE_POINTER_GET_STATE GetState; member 111 EFI_ABSOLUTE_POINTER_GET_STATE GetState; member
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/common/ |
| D | NativeThreadProtocol.h | 28 virtual lldb::StateType GetState() = 0;
|
| D | NativeProcessProtocol.h | 174 lldb::StateType GetState() const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBProcess.cpp | 144 if (process_sp->GetState() == eStateConnected) { in RemoteLaunch() 177 if (process_sp->GetState() == eStateConnected) { in RemoteAttachToProcessWithID() 497 StateType SBProcess::GetState() { in GetState() function in SBProcess 498 LLDB_RECORD_METHOD_NO_ARGS(lldb::StateType, SBProcess, GetState); in GetState() 505 ret_val = process_sp->GetState(); in GetState() 984 process_sp->GetID(), lldb_private::StateAsCString(GetState()), in GetDescription() 1224 if (process_sp->GetState() != eStateStopped) { in SaveCore() 1386 LLDB_REGISTER_METHOD(lldb::StateType, SBProcess, GetState, ()); in RegisterMethods()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/ |
| D | NativeThreadNetBSD.h | 34 lldb::StateType GetState() override;
|
| D | NativeThreadNetBSD.cpp | 224 lldb::StateType NativeThreadNetBSD::GetState() { return m_state; } in GetState() function in NativeThreadNetBSD
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/ |
| D | NativeThreadFreeBSD.h | 34 lldb::StateType GetState() override;
|
| D | NativeThreadFreeBSD.cpp | 212 lldb::StateType NativeThreadFreeBSD::GetState() { return m_state; } in GetState() function in NativeThreadFreeBSD
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| D | HexagonDYLDRendezvous.h | 104 uint64_t GetState() const { return m_current.state; } in GetState() function
|
| D | HexagonDYLDRendezvous.cpp | 337 int state = GetState(); in DumpToLog()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| D | DYLDRendezvous.h | 102 uint64_t GetState() const { return m_current.state; } in GetState() function
|
| D | DYLDRendezvous.cpp | 605 int state = GetState(); in DumpToLog()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| D | MSVCSetupApi.h | 239 STDMETHOD(GetState)(_Out_ InstanceState *pState) = 0;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | Process.cpp | 636 StateType state = GetState(); in WaitForProcessToStop() 1276 StateType Process::GetState() { in GetState() function in Process 1592 switch (GetState()) { in CreateBreakpointSite() 3102 return Status("Halt timed out. State = %s", StateAsCString(GetState())); in Halt() 3156 StateAsCString(GetState())); in StopForDestroyOrDetach() 3650 StateAsCString(GetState()), in HandlePrivateEvent() 3710 StateAsCString(GetState())); in HandlePrivateEvent() 4070 s->Printf("state = %s", StateAsCString(GetState())); in Dump() 4098 return data->GetState(); in GetStateFromEvent() 4205 new ProcessEventData(shared_from_this(), GetState())); in AppendSTDOUT() [all …]
|
| D | ExecutionContext.cpp | 122 (m_process_sp && StateIsStoppedState(m_process_sp->GetState(), true))) { in ExecutionContext() 518 StateIsStoppedState(process_sp->GetState(), true)) { in SetTargetPtr()
|
| D | Thread.cpp | 538 StateType Thread::GetState() const { in GetState() function in Thread 1901 if (StateIsStoppedState(process->GetState(), true)) { in StepIn() 1934 if (StateIsStoppedState(process->GetState(), true)) { in StepOver() 1966 if (StateIsStoppedState(process->GetState(), true)) { in StepOut()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Core/ |
| D | IOHandlerCursesGUI.cpp | 3618 StateType state = process->GetState(); in WindowDelegateDraw() 3881 StateType state = process_sp->GetState(); in TreeDelegateGenerateChildren() 3913 StateType state = process_sp->GetState(); in TreeDelegateItemSelected() 3972 StateType state = process_sp->GetState(); in TreeDelegateGenerateChildren() 4016 StateType state = process_sp->GetState(); in TreeDelegateUpdateSelection() 4426 StateType state = process->GetState(); in WindowDelegateDraw() 4917 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 4929 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 4941 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() 4966 StateIsStoppedState(process->GetState(), true)) in MenuDelegateAction() [all …]
|
| D | Value.cpp | 407 ? StateIsStoppedState(exe_ctx->GetProcessPtr()->GetState(), in GetValueAsData()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBProcess.h | 118 lldb::StateType GetState();
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/ |
| D | CommandObjectProcess.cpp | 53 state = process->GetState(); in StopProcessIfNecessary() 57 if (process->GetState() == eStateAttaching) in StopProcessIfNecessary() 527 StateType state = process->GetState(); in DoExecute()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/ |
| D | UserExpression.cpp | 179 if (process == nullptr || process->GetState() != lldb::eStateStopped) { in Evaluate()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationServerLLGS.cpp | 441 StateAsCString(process->GetState())); in InitializeDelegate() 1692 return SendStopReasonForState(m_current_process->GetState()); in Handle_stop_reason() 3185 return SendStopReasonForState(m_current_process->GetState()); in Handle_vAttach() 3215 return SendStopReasonForState(m_current_process->GetState()); in Handle_vAttachWait() 3251 return SendStopReasonForState(m_current_process->GetState()); in Handle_vAttachOrWait()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/ |
| D | Thread.h | 160 lldb::StateType GetState() const;
|
| D | Process.h | 418 lldb::StateType GetState() const { return m_state; } in GetState() function 1219 lldb::StateType GetState();
|