Home
last modified time | relevance | path

Searched refs:CreatePair (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DTCPSocket.h28 static llvm::Expected<Pair> CreatePair();
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DDomainSocket.h24 static llvm::Expected<Pair> CreatePair();
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp238 Socket::CreatePair(std::optional<SocketProtocol> protocol) { in CreatePair() function in Socket
243 return TCPSocket::CreatePair(); in CreatePair()
247 return DomainSocket::CreatePair(); in CreatePair()
H A DTCPSocket.cpp55 llvm::Expected<TCPSocket::Pair> TCPSocket::CreatePair() { in CreatePair() function in TCPSocket
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h111 CreatePair(std::optional<SocketProtocol> protocol = std::nullopt);
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp81 llvm::Expected<DomainSocket::Pair> DomainSocket::CreatePair() { in CreatePair() function in DomainSocket
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp3543 llvm::Expected<Socket::Pair> socket_pair = Socket::CreatePair(); in LaunchAndConnectToDebugserver()