/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 91 if (IsConnected()) { in GetDescription() 182 if (IsConnected()) { in GetRemoteWorkingDirectory() 197 if (IsConnected()) { in SetRemoteWorkingDirectory() 208 bool PlatformRemoteGDBServer::IsConnected() const { in IsConnected() function in PlatformRemoteGDBServer 210 assert(m_gdb_client_up->IsConnected()); in IsConnected() 218 if (IsConnected()) { in ConnectRemote() 330 if (!IsConnected()) in LaunchProcess() 418 if (IsConnected()) { in DebugProcess() 455 assert(IsConnected()); in LaunchGDBServer() 486 assert(IsConnected()); in KillSpawnedProcess() [all …]
|
H A D | PlatformRemoteGDBServer.h | 96 bool IsConnected() const override;
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBCommunication.cpp | 76 if (m_opaque->IsConnected()) in AdoptFileDesriptor() 81 if (m_opaque->IsConnected()) in AdoptFileDesriptor() 98 bool SBCommunication::IsConnected() const { in IsConnected() function in SBCommunication 101 return m_opaque ? m_opaque->IsConnected() : false; in IsConnected()
|
H A D | SBPlatform.cpp | 402 bool SBPlatform::IsConnected() { in IsConnected() 407 return platform_sp->IsConnected(); 586 if (platform_sp->IsConnected()) { in ExecuteConnected() 605 if (platform_sp->IsConnected()) { in MakeDirectory() 629 if (platform_sp->IsConnected()) in SetFilePermissions() 399 bool SBPlatform::IsConnected() { IsConnected() function in SBPlatform
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Communication.cpp | 77 bool Communication::IsConnected() const { in IsConnected() function in Communication 79 return (connection_sp ? connection_sp->IsConnected() : false); in IsConnected()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | RemoteAwarePlatform.cpp | 232 bool RemoteAwarePlatform::IsConnected() const { in IsConnected() function in RemoteAwarePlatform 234 return m_remote_platform_sp->IsConnected(); in IsConnected() 235 return Platform::IsConnected(); in IsConnected()
|
H A D | Platform.cpp | 273 const bool is_connected = IsConnected(); in GetStatus() 285 if (!IsConnected()) in GetStatus() 311 const bool is_connected = IsConnected(); in GetOSVersion() 718 if (IsConnected()) in SetOSVersion() 825 const bool is_connected = IsConnected(); in GetSystemArchitecture()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Connection.h | 90 virtual bool IsConnected() const = 0;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommunication.h | 54 bool IsConnected() const;
|
H A D | SBPlatform.h | 127 bool IsConnected();
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Communication.h | 83 bool IsConnected() const;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/ |
H A D | PlatformQemuUser.h | 58 bool IsConnected() const override { return true; } in IsConnected() function
|
/freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
H A D | ConnectionFileDescriptorPosix.cpp | 120 bool ConnectionFileDescriptor::IsConnected() const { in IsConnected() function in ConnectionFileDescriptor 198 if (!IsConnected()) { in Disconnect() 365 if (!IsConnected()) { in Write()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/ |
H A D | ConnectionFileDescriptorPosix.h | 42 bool IsConnected() const override;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | RemoteAwarePlatform.h | 87 bool IsConnected() const override;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
H A D | GDBRemoteCommunicationServer.cpp | 75 if (!IsConnected()) { in GetPacketAndSendResponse()
|
H A D | GDBRemoteCommunication.cpp | 73 if (IsConnected()) { in ~GDBRemoteCommunication() 150 if (IsConnected()) { in SendRawPacketNoLock() 255 while (IsConnected() && !timed_out) { in WaitForPacketNoLock()
|
H A D | ProcessGDBRemote.cpp | 819 while (!m_gdb_comm.IsConnected()) { in ConnectToDebugserver() 835 if (!m_gdb_comm.IsConnected()) { in ConnectToDebugserver() 978 if (platform_sp && platform_sp->IsConnected()) in DidLaunchOrAttach() 2447 if (m_gdb_comm.IsConnected()) { in DoDestroy() 2518 return m_gdb_comm.IsConnected() && Process::IsAlive(); in IsAlive() 2955 if (m_stdio_communication.IsConnected()) { in PutSTDIN() 3325 if (m_gdb_comm.IsConnected()) in EstablishConnectionIfNeeded() 3442 if (m_gdb_comm.IsConnected()) { in LaunchAndConnectToDebugserver()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
H A D | PlatformFreeBSD.cpp | 164 return IsConnected(); in CanDebugProcess()
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | ScriptInterpreter.cpp | 229 if (conn_up->IsConnected()) { in ScriptInterpreterIORedirect()
|
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/ |
H A D | lldb-platform.cpp | 354 if (platform.IsConnected()) { in main_platform()
|
H A D | lldb-gdbserver.cpp | 459 if (!gdb_server.IsConnected()) { in main_gdbserver()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/ |
H A D | PlatformNetBSD.cpp | 185 return IsConnected(); in CanDebugProcess()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | LazyCallGraph.cpp | 626 auto IsConnected = [&](SCC &C) { in switchInternalEdgeToCall() local 637 if (IsConnected(*C)) in switchInternalEdgeToCall() 1034 auto IsConnected = [&](RefSCC &RC) { in insertIncomingRefEdge() local 1046 if (IsConnected(*C)) in insertIncomingRefEdge()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectPlatform.cpp | 338 if (platform_sp->IsConnected()) { in DoExecute() 1486 if (platform_sp->IsConnected()) { in DoExecute()
|