Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DTCPSocket.cpp60 TCPSocket::TCPSocket(bool should_close, bool child_processes_inherit) in TCPSocket() function in TCPSocket
63 TCPSocket::TCPSocket(NativeSocket socket, const TCPSocket &listen_socket) in TCPSocket() function in TCPSocket
69 TCPSocket::TCPSocket(NativeSocket socket, bool should_close, in TCPSocket() function in TCPSocket
75 TCPSocket::~TCPSocket() { CloseListenSockets(); } in ~TCPSocket()
77 bool TCPSocket::IsValid() const { in IsValid()
82 uint16_t TCPSocket::GetLocalPortNumber() const { in GetLocalPortNumber()
140 Status TCPSocket::CreateSocket(int domain) { in CreateSocket()
248 void TCPSocket::CloseListenSockets() { in CloseListenSockets()
284 std::unique_ptr<TCPSocket> accepted_socket; in Accept()
314 int TCPSocket::SetOptionNoDelay() { in SetOptionNoDelay()
[all …]
H A DSocket.cpp118 std::make_unique<TCPSocket>(true, child_processes_inherit); in Create()
169 llvm::Expected<std::unique_ptr<TCPSocket>>
182 std::unique_ptr<TCPSocket> listen_socket( in TcpListen()
183 new TCPSocket(true, child_processes_inherit)); in TcpListen()
/freebsd-13.1/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-13.1/contrib/llvm-project/lldb/tools/lldb-server/
H A DAcceptor.cpp114 TCPSocket *tcp_socket = in Create()
115 static_cast<TCPSocket *>(listener_socket_up.get()); in Create()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h39 class TCPSocket; variable
69 static llvm::Expected<std::unique_ptr<TCPSocket>>
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp211 std::unique_ptr<TCPSocket> tcp_socket; in Connect()
212 tcp_socket = std::make_unique<TCPSocket>(fd, false, false); in Connect()
702 llvm::Expected<std::unique_ptr<TCPSocket>> listening_socket = in SocketListenAndAccept()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1235 TCPSocket listen_socket(true, child_processes_inherit); in ConnectLocally()
/freebsd-13.1/lib/clang/liblldb/
H A DMakefile251 SRCS+= Host/common/TCPSocket.cpp