Home
last modified time | relevance | path

Searched refs:UDPSocket (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DUDPSocket.cpp30 UDPSocket::UDPSocket(NativeSocket socket) in UDPSocket() function in UDPSocket
35 UDPSocket::UDPSocket(bool should_close) : Socket(ProtocolUdp, should_close) {} in UDPSocket() function in UDPSocket
37 size_t UDPSocket::Send(const void *buf, const size_t num_bytes) { in Send()
42 Status UDPSocket::Connect(llvm::StringRef name) { in Connect()
46 Status UDPSocket::Listen(llvm::StringRef name, int backlog) { in Listen()
50 llvm::Expected<std::unique_ptr<UDPSocket>>
51 UDPSocket::CreateConnected(llvm::StringRef name) { in CreateConnected()
52 std::unique_ptr<UDPSocket> socket; in CreateConnected()
91 socket.reset(new UDPSocket(send_fd)); in CreateConnected()
128 std::string UDPSocket::GetRemoteConnectionURI() const { in GetRemoteConnectionURI()
H A DSocket.cpp211 socket_up = std::make_unique<UDPSocket>(should_close); in Create()
286 llvm::Expected<std::unique_ptr<UDPSocket>>
288 return UDPSocket::CreateConnected(host_and_port); in UdpConnect()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DUDPSocket.h15 class UDPSocket : public Socket {
17 explicit UDPSocket(bool should_close);
19 static llvm::Expected<std::unique_ptr<UDPSocket>>
25 UDPSocket(NativeSocket socket);
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h46 class UDPSocket; variable
136 static llvm::Expected<std::unique_ptr<UDPSocket>>
/freebsd/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp640 llvm::Expected<std::unique_ptr<UDPSocket>> socket = Socket::UdpConnect(s); in ConnectUDP()
/freebsd/lib/clang/liblldb/
H A DMakefile284 SRCS+= Host/common/UDPSocket.cpp