Home
last modified time | relevance | path

Searched refs:SharedSocket (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp208 SharedSocket shared_socket(sock_up.get(), error); in AcceptGdbConnectionsIfNeeded()
240 SharedSocket::kInvalidFD); in client_handle()
266 SharedSocket shared_socket(conn_socket, error); in spawn_process()
383 shared_fd_t fd = SharedSocket::kInvalidFD; in main_platform()
462 if (listen_host_port.empty() && fd == SharedSocket::kInvalidFD) in main_platform()
483 if (fd != SharedSocket::kInvalidFD) { in main_platform()
486 error = SharedSocket::GetNativeSocket(fd, sockfd); in main_platform()
H A Dlldb-gdbserver.cpp212 if (connection_fd != SharedSocket::kInvalidFD) { in ConnectToRemote()
215 error = SharedSocket::GetNativeSocket(connection_fd, sockfd); in ConnectToRemote()
361 shared_fd_t connection_fd = SharedSocket::kInvalidFD; in main_gdbserver()
448 if (Inputs.empty() && connection_fd == SharedSocket::kInvalidFD) { in main_gdbserver()
457 if (!Inputs.empty() && connection_fd == SharedSocket::kInvalidFD) { in main_gdbserver()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp50 const shared_fd_t SharedSocket::kInvalidFD = LLDB_INVALID_PIPE;
55 const shared_fd_t SharedSocket::kInvalidFD = Socket::kInvalidSocketValue;
66 SharedSocket::SharedSocket(const Socket *socket, Status &error) { in SharedSocket() function in SharedSocket
83 Status SharedSocket::CompleteSending(lldb::pid_t child_pid) { in CompleteSending()
108 Status SharedSocket::GetNativeSocket(shared_fd_t fd, NativeSocket &socket) { in GetNativeSocket()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h48 class SharedSocket {
52 SharedSocket(const Socket *socket, Status &error);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp112 if (fd == SharedSocket::kInvalidFD) { in LaunchGDBServer()
179 SharedSocket::kInvalidFD); in Handle_qLaunchGDBServer()
H A DGDBRemoteCommunication.cpp859 assert(*comm_fd != SharedSocket::kInvalidFD); in StartDebugserverProcess()
H A DProcessGDBRemote.cpp3548 SharedSocket shared_socket(socket_pair->first.get(), error); in LaunchAndConnectToDebugserver()