Home
last modified time | relevance | path

Searched refs:TCPSocket (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DTCPSocket.cpp59 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) in TCPSocket() function in TCPSocket
62 TCPSocket::TCPSocket(NativeSocket socket, const TCPSocket &listen_socket) in TCPSocket() function in TCPSocket
68 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, in TCPSocket() function in TCPSocket
74 TCPSocket::~TCPSocket() { CloseListenSockets(); } in ~TCPSocket()
76 bool TCPSocket::IsValid() const { in IsValid()
81 uint16_t TCPSocket::GetLocalPortNumber() const { in GetLocalPortNumber()
97 std::string TCPSocket::GetLocalIPAddress() const { in GetLocalIPAddress()
109 uint16_t TCPSocket::GetRemotePortNumber() const { in GetRemotePortNumber()
119 std::string TCPSocket::GetRemoteIPAddress() const { in GetRemoteIPAddress()
131 std::string TCPSocket::GetRemoteConnectionURI() const { in GetRemoteConnectionURI()
[all …]
H A DSocket.cpp115 std::make_unique<TCPSocket>(true, child_processes_inherit); in Create()
166 llvm::Expected<std::unique_ptr<TCPSocket>>
172 std::unique_ptr<TCPSocket> listen_socket( in TcpListen()
173 new TCPSocket(true, child_processes_inherit)); in TcpListen()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DTCPSocket.h17 class TCPSocket : public Socket {
19 TCPSocket(bool should_close, bool child_processes_inherit);
20 TCPSocket(NativeSocket socket, bool should_close,
22 ~TCPSocket() override;
52 TCPSocket(NativeSocket socket, const TCPSocket &listen_socket);
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h38 class TCPSocket; variable
77 static llvm::Expected<std::unique_ptr<TCPSocket>>
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A DAcceptor.cpp110 TCPSocket *tcp_socket = in Create()
111 static_cast<TCPSocket *>(listener_socket_up.get()); in Create()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp46 #include "lldb/Host/common/TCPSocket.h"
627 static_cast<TCPSocket &>(listening_socket).GetLocalPortNumber(); in AcceptTCP()
633 static_cast<TCPSocket *>(m_io_sp.get())->GetRemoteConnectionURI()); in AcceptTCP()
695 std::unique_ptr<TCPSocket> tcp_socket; in ConnectFD()
696 tcp_socket = std::make_unique<TCPSocket>(fd, false, false); in ConnectFD()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1212 TCPSocket listen_socket(true, child_processes_inherit); in ConnectLocally()
/freebsd/lib/clang/liblldb/
H A DMakefile285 SRCS+= Host/common/TCPSocket.cpp