Home
last modified time | relevance | path

Searched refs:ProtocolTcp (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp144 {"tcp", Socket::ProtocolTcp},
207 case ProtocolTcp: in Create()
240 LLDB_ENABLE_POSIX ? ProtocolUnixDomain : ProtocolTcp; in CreatePair()
242 case ProtocolTcp: in CreatePair()
260 std::unique_ptr<Socket> connect_socket = Create(ProtocolTcp, error); in TcpConnect()
501 .Case("listen", ProtocolModePair{SocketProtocol::ProtocolTcp, in GetProtocolAndMode()
510 ProtocolModePair{SocketProtocol::ProtocolTcp, in GetProtocolAndMode()
512 .Case("udp", ProtocolModePair{SocketProtocol::ProtocolTcp, in GetProtocolAndMode()
H A DTCPSocket.cpp41 TCPSocket::TCPSocket(bool should_close) : Socket(ProtocolTcp, should_close) {} in TCPSocket()
44 : Socket(ProtocolTcp, listen_socket.m_should_close_fd) { in TCPSocket()
49 : Socket(ProtocolTcp, should_close) { in TCPSocket()
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-platform.cpp121 if (protocol == Socket::ProtocolTcp) { in parse_listen_host_port()
133 protocol = Socket::ProtocolTcp; in parse_listen_host_port()
140 if (protocol == Socket::ProtocolTcp) { in parse_listen_host_port()
181 if (protocol != Socket::ProtocolTcp) in ListenGdbConnectionsIfNeeded()
201 if (protocol != Socket::ProtocolTcp) in AcceptGdbConnectionsIfNeeded()
216 debugserver_path, Socket::ProtocolTcp, gdbserver_port); in AcceptGdbConnectionsIfNeeded()
549 if (protocol == Socket::ProtocolTcp && platform_port == 0) in main_platform()
555 protocol == Socket::ProtocolTcp in main_platform()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp113 if (m_socket_protocol == Socket::ProtocolTcp) { in LaunchGDBServer()
127 if (m_socket_protocol != Socket::ProtocolTcp) in LaunchGDBServer()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h71 ProtocolTcp, enumerator
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp614 Socket::ProtocolTcp, socket_name, in AcceptTCP()
631 return ConnectSocket(Socket::ProtocolTcp, socket_name, error_ptr); in ConnectTCP()