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

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DTCPSocket.h1 //===-- TCPSocket.h ---------------------------------------------*- C++ -*-===//
17 class TCPSocket : public Socket { class in namespace:lldb_private
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-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DTCPSocket.cpp1 //===-- TCPSocket.cpp -----------------------------------------------------===//
13 #include "lldb/Host/common/TCPSocket.h"
60 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) function in class:TCPSocket
63 TCPSocket::TCPSocket(NativeSocket socket, const TCPSocket &listen_socket) function in class:TCPSocket
69 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, function in class:TCPSocket
75 TCPSocket
[all...]
H A DSocket.cpp15 #include "lldb/Host/common/TCPSocket.h"
118 std::make_unique<TCPSocket>(true, child_processes_inherit);
169 llvm::Expected<std::unique_ptr<TCPSocket>>
182 std::unique_ptr<TCPSocket> listen_socket(
183 new TCPSocket(true, child_processes_inherit));
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h39 class TCPSocket;
69 static llvm::Expected<std::unique_ptr<TCPSocket>>
/freebsd-13-stable/contrib/llvm-project/lldb/tools/lldb-server/
H A DAcceptor.cpp15 #include "lldb/Host/common/TCPSocket.h"
114 TCPSocket *tcp_socket =
115 static_cast<TCPSocket *>(listener_socket_up.get());
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp44 #include "lldb/Host/common/TCPSocket.h"
211 std::unique_ptr<TCPSocket> tcp_socket;
212 tcp_socket = std::make_unique<TCPSocket>(fd, false, false);
702 llvm::Expected<std::unique_ptr<TCPSocket>> listening_socket =
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp27 #include "lldb/Host/common/TCPSocket.h"
1235 TCPSocket listen_socket(true, child_processes_inherit);
/freebsd-13-stable/lib/clang/liblldb/
H A DMakefile239 SRCS+= Host/common/TCPSocket.cpp

Completed in 74 milliseconds