Searched refs:TCPSocket (Results 1 – 12 of 12) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | TCPSocket.cpp | 59 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 D | Socket.cpp | 115 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 D | TCPSocket.h | 17 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 D | Socket.h | 38 class TCPSocket; variable 77 static llvm::Expected<std::unique_ptr<TCPSocket>>
|
| /openbsd-src/gnu/llvm/lldb/tools/lldb-server/ |
| H A D | Acceptor.cpp | 110 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 D | ConnectionFileDescriptorPosix.cpp | 629 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 D | PlatformAndroidRemoteGDBServer.cpp | 67 std::unique_ptr<TCPSocket> tcp_socket(new TCPSocket(true, false)); in FindUnusedPort()
|
| /openbsd-src/gnu/usr.bin/clang/liblldbHostCommon/ |
| H A D | Makefile | 35 TCPSocket.cpp \
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/Host/ |
| H A D | BUILD.gn | 44 "common/TCPSocket.cpp",
|
| /openbsd-src/gnu/llvm/lldb/source/Host/ |
| H A D | CMakeLists.txt | 40 common/TCPSocket.cpp
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/MacOSX-Kernel/ |
| H A D | ProcessKDP.cpp | 234 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 D | GDBRemoteCommunication.cpp | 1214 TCPSocket listen_socket(true, child_processes_inherit); in ConnectLocally()
|