Searched refs:TCPSocket (Results 1 – 7 of 7) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/ |
| H A D | TCPSocket.cpp | 49 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) in TCPSocket() function in TCPSocket 52 TCPSocket::TCPSocket(NativeSocket socket, const TCPSocket &listen_socket) in TCPSocket() function in TCPSocket 58 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, in TCPSocket() function in TCPSocket 64 TCPSocket::~TCPSocket() { CloseListenSockets(); } in ~TCPSocket() 66 bool TCPSocket::IsValid() const { in IsValid() 71 uint16_t TCPSocket::GetLocalPortNumber() const { in GetLocalPortNumber() 121 Status TCPSocket::CreateSocket(int domain) { in CreateSocket() 230 void TCPSocket::CloseListenSockets() { in CloseListenSockets() 266 std::unique_ptr<TCPSocket> accepted_socket; in Accept() 296 int TCPSocket::SetOptionNoDelay() { in SetOptionNoDelay() [all …]
|
| H A D | Socket.cpp | 90 llvm::make_unique<TCPSocket>(true, child_processes_inherit); in Create() 156 std::unique_ptr<TCPSocket> listen_socket( in TcpListen() 157 new TCPSocket(true, child_processes_inherit)); in TcpListen()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/ |
| H A D | TCPSocket.h | 18 class TCPSocket : public Socket { 20 TCPSocket(bool should_close, bool child_processes_inherit); 21 TCPSocket(NativeSocket socket, bool should_close, 23 ~TCPSocket() override; 51 TCPSocket(NativeSocket socket, const TCPSocket &listen_socket);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/ |
| H A D | Acceptor.cpp | 115 TCPSocket *tcp_socket = in Create() 116 static_cast<TCPSocket *>(listener_socket_up.get()); in Create()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/ |
| H A D | ConnectionFileDescriptorPosix.cpp | 214 std::unique_ptr<TCPSocket> tcp_socket; in Connect() 215 tcp_socket.reset(new TCPSocket(fd, false, false)); in Connect() 762 TCPSocket *tcp_socket = static_cast<TCPSocket *>(socket); in InitializeSocket()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunication.cpp | 1276 TCPSocket listen_socket(true, child_processes_inherit); in ConnectLocally()
|
| /freebsd-12.1/lib/clang/liblldb/ |
| H A D | Makefile | 230 SRCS+= Host/common/TCPSocket.cpp
|