| 1610 | |
| 1611 | |
| 1612 | bool LldbAdapter::ConnectToDebugServer(const std::string& server, std::uint32_t port) |
| 1613 | { |
| 1614 | auto platform = m_debugger.GetSelectedPlatform(); |
| 1615 | auto connectionString = fmt::format("connect://{}:{}", server, port); |
| 1616 | SBPlatformConnectOptions options(connectionString.c_str()); |
| 1617 | auto error = platform.ConnectRemote(options); |
| 1618 | return error.Success(); |
| 1619 | } |
| 1620 | |
| 1621 | |
| 1622 | bool LldbAdapter::DisconnectDebugServer() |
nothing calls this directly
no outgoing calls
no test coverage detected