Home
last modified time | relevance | path

Searched refs:socket_up (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp205 std::unique_ptr<Socket> socket_up; in Create() local
208 socket_up = std::make_unique<TCPSocket>(should_close); in Create()
211 socket_up = std::make_unique<UDPSocket>(should_close); in Create()
215 socket_up = std::make_unique<DomainSocket>(should_close); in Create()
223 socket_up = std::make_unique<AbstractSocket>(); in Create()
232 socket_up.reset(); in Create()
234 return socket_up; in Create()
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp76 std::unique_ptr<Socket> socket_up) in ConnectionFileDescriptor() argument
78 m_uri = socket_up->GetRemoteConnectionURI(); in ConnectionFileDescriptor()
79 m_io_sp = std::move(socket_up); in ConnectionFileDescriptor()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DConnectionFileDescriptorPosix.h35 ConnectionFileDescriptor(std::unique_ptr<Socket> socket_up);