| /llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.cpp | 174 if (IsConnected()) { in GetRemoteWorkingDirectory() 189 if (IsConnected()) { in SetRemoteWorkingDirectory() 210 if (IsConnected()) { in ConnectRemote() 327 if (!IsConnected()) in LaunchProcess() 587 if (IsConnected()) in OpenFile() 593 if (IsConnected()) in CloseFile() 601 if (IsConnected()) in GetFileSize() 608 if (IsConnected()) in AutoCompleteDiskFileOrDirectory() 615 if (IsConnected()) in ReadFile() 624 if (IsConnected()) in WriteFile() [all …]
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBCommunication.cpp | 75 if (m_opaque->IsConnected()) in AdoptFileDesriptor() 80 if (m_opaque->IsConnected()) in AdoptFileDesriptor() 97 bool SBCommunication::IsConnected() const { in IsConnected() function in SBCommunication 100 return m_opaque ? m_opaque->IsConnected() : false; in IsConnected()
|
| H A D | SBPlatform.cpp | 398 bool SBPlatform::IsConnected() { in IsConnected() function in SBPlatform 403 return platform_sp->IsConnected(); in IsConnected() 587 if (platform_sp->IsConnected()) in ExecuteConnected()
|
| /llvm-project-15.0.7/lldb/source/Host/windows/ |
| H A D | ConnectionGenericFileWindows.cpp | 68 if (m_owns_file && IsConnected()) in ~ConnectionGenericFile() 88 bool ConnectionGenericFile::IsConnected() const { in IsConnected() function in ConnectionGenericFile 105 if (IsConnected()) { in Connect() 140 if (!IsConnected()) in Disconnect() 174 if (!IsConnected()) { in Read() 268 if (!IsConnected()) { in Write()
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | io-stmt.cpp | 1062 if (!unit().IsConnected()) { in Inquire() 1079 str = !unit().IsConnected() ? "UNDEFINED" in Inquire() 1084 str = !unit().IsConnected() ? "UNDEFINED" in Inquire() 1124 str = !unit().IsConnected() ? "UNKNOWN" in Inquire() 1131 str = !unit().IsConnected() ? "UNKNOWN" in Inquire() 1142 str = !unit().IsConnected() ? "UNDEFINED" in Inquire() 1210 str = !unit().IsConnected() ? "UNKNOWN" in Inquire() 1221 str = !unit().IsConnected() ? "UNKNOWN" in Inquire() 1252 result = unit().IsConnected(); in Inquire() 1290 if (!unit().IsConnected()) { in Inquire() [all …]
|
| H A D | file.h | 42 bool IsConnected() const { return fd_ >= 0; } in IsConnected() function
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_communication.py | 19 obj.IsConnected()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDP.cpp | 233 if (conn_up->IsConnected()) { in DoConnectRemote() 546 if (!keep_stopped && m_comm.IsConnected()) { in DoDetach() 578 return m_comm.IsConnected() && Process::IsAlive(); in IsAlive() 585 if (m_comm.IsConnected()) { in DoReadMemory() 612 if (m_comm.IsConnected()) in DoWriteMemory()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBCommunication.i | 53 IsConnected () const;
|
| H A D | SBPlatform.i | 157 IsConnected();
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/Android/ |
| H A D | PlatformAndroidRemoteGDBServer.cpp | 84 assert(IsConnected()); in LaunchGDBServer() 102 assert(IsConnected()); in KillSpawnedProcess()
|
| H A D | PlatformAndroid.cpp | 256 if (!IsConnected()) in GetSdkVersion() 370 if (m_adb_sync_svc && m_adb_sync_svc->IsConnected()) in GetSyncService()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | RNBSocket.h | 54 bool IsConnected() const { return m_fd != -1; } in IsConnected() function
|
| /llvm-project-15.0.7/lldb/include/lldb/Utility/ |
| H A D | Connection.h | 90 virtual bool IsConnected() const = 0;
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | RemoteAwarePlatform.cpp | 344 bool RemoteAwarePlatform::IsConnected() const { in IsConnected() function in RemoteAwarePlatform 346 return m_remote_platform_sp->IsConnected(); in IsConnected() 347 return Platform::IsConnected(); in IsConnected()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBCommunication.h | 54 bool IsConnected() const;
|
| H A D | SBPlatform.h | 123 bool IsConnected();
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/windows/ |
| H A D | ConnectionGenericFileWindows.h | 28 bool IsConnected() const override;
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/QemuUser/ |
| H A D | PlatformQemuUser.h | 45 bool IsConnected() const override { return true; } in IsConnected() function
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbgdbclient.py | 98 self.assertTrue(self.dbg.GetSelectedPlatform().IsConnected())
|
| /llvm-project-15.0.7/lldb/unittests/Process/gdb-remote/ |
| H A D | GDBRemoteTestUtils.h | 42 bool IsConnected() const { return true; }; in IsConnected() function
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestPlatformClient.py | 55 self.assertTrue(self.dbg.GetSelectedPlatform().IsConnected())
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Communication.cpp | 114 bool Communication::IsConnected() const { in IsConnected() function in Communication 116 return (connection_sp ? connection_sp->IsConnected() : false); in IsConnected()
|
| /llvm-project-15.0.7/lldb/test/API/commands/platform/basic/ |
| H A D | TestPlatformPython.py | 52 self.assertTrue(host_platform.IsConnected(), "The host platform is always connected")
|
| /llvm-project-15.0.7/lldb/source/Host/posix/ |
| H A D | ConnectionFileDescriptorPosix.cpp | 119 bool ConnectionFileDescriptor::IsConnected() const { in IsConnected() function in ConnectionFileDescriptor 197 if (!IsConnected()) { in Disconnect() 367 if (!IsConnected()) { in Write()
|