Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DUDPSocket.cpp33 UDPSocket::UDPSocket(NativeSocket socket) : Socket(ProtocolUdp, true, true) { in UDPSocket() function in UDPSocket
37 UDPSocket::UDPSocket(bool should_close, bool child_processes_inherit) in UDPSocket() function in UDPSocket
40 size_t UDPSocket::Send(const void *buf, const size_t num_bytes) { in Send()
45 Status UDPSocket::Connect(llvm::StringRef name) { in Connect()
49 Status UDPSocket::Listen(llvm::StringRef name, int backlog) { in Listen()
53 Status UDPSocket::Accept(Socket *&socket) { in Accept()
57 Status UDPSocket::Connect(llvm::StringRef name, bool child_processes_inherit, in Connect()
59 std::unique_ptr<UDPSocket> final_socket; in Connect()
101 final_socket.reset(new UDPSocket(send_fd)); in Connect()
H A DSocket.cpp94 llvm::make_unique<UDPSocket>(true, child_processes_inherit); in Create()
189 return UDPSocket::Connect(host_and_port, child_processes_inherit, socket); in UdpConnect()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/common/
H A DUDPSocket.h16 class UDPSocket : public Socket {
18 UDPSocket(bool should_close, bool child_processes_inherit);
24 UDPSocket(NativeSocket socket);
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile234 SRCS+= Host/common/UDPSocket.cpp