Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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);
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DSocket.h38 class TCPSocket; variable
77 static llvm::Expected<std::unique_ptr<TCPSocket>>
/openbsd-src/gnu/llvm/lldb/tools/lldb-server/
H A DAcceptor.cpp110 TCPSocket *tcp_socket = in Create()
111 static_cast<TCPSocket *>(listener_socket_up.get()); in Create()
/openbsd-src/gnu/llvm/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp629 static_cast<TCPSocket &>(listening_socket).GetLocalPortNumber(); in AcceptTCP()
635 static_cast<TCPSocket *>(m_io_sp.get())->GetRemoteConnectionURI()); in AcceptTCP()
697 std::unique_ptr<TCPSocket> tcp_socket; in ConnectFD()
698 tcp_socket = std::make_unique<TCPSocket>(fd, false, false); in ConnectFD()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Android/
H A DPlatformAndroidRemoteGDBServer.cpp67 std::unique_ptr<TCPSocket> tcp_socket(new TCPSocket(true, false)); in FindUnusedPort()
/openbsd-src/gnu/usr.bin/clang/liblldbHostCommon/
H A DMakefile35 TCPSocket.cpp \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Host/
H A DBUILD.gn44 "common/TCPSocket.cpp",
/openbsd-src/gnu/llvm/lldb/source/Host/
H A DCMakeLists.txt40 common/TCPSocket.cpp
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DProcessKDP.cpp234 const TCPSocket &socket = in DoConnectRemote()
235 static_cast<const TCPSocket &>(*conn_up->GetReadObject()); in DoConnectRemote()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1214 TCPSocket listen_socket(true, child_processes_inherit); in ConnectLocally()