Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Host/common/
H A DUDPSocket.cpp30 UDPSocket::UDPSocket(NativeSocket socket) : Socket(ProtocolUdp, true, true) { in UDPSocket() function in UDPSocket
34 UDPSocket::UDPSocket(bool should_close, bool child_processes_inherit) 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 Status UDPSocket::Accept(Socket *&socket) { in Accept()
54 llvm::Expected<std::unique_ptr<UDPSocket>>
55 UDPSocket::Connect(llvm::StringRef name, bool child_processes_inherit) { in Connect()
56 std::unique_ptr<UDPSocket> socket; in Connect()
95 socket.reset(new UDPSocket(send_fd)); in Connect()
[all …]
H A DSocket.cpp119 std::make_unique<UDPSocket>(true, child_processes_inherit); in Create()
182 llvm::Expected<std::unique_ptr<UDPSocket>>
185 return UDPSocket::Connect(host_and_port, child_processes_inherit); in UdpConnect()
/llvm-project-15.0.7/lldb/include/lldb/Host/common/
H A DUDPSocket.h15 class UDPSocket : public Socket {
17 UDPSocket(bool should_close, bool child_processes_inherit);
19 static llvm::Expected<std::unique_ptr<UDPSocket>>
25 UDPSocket(NativeSocket socket);
/llvm-project-15.0.7/lldb/unittests/Host/
H A DSocketTest.cpp122 llvm::Expected<std::unique_ptr<UDPSocket>> socket = in TEST_P()
123 UDPSocket::Connect("127.0.0.1:0", /*child_processes_inherit=*/false); in TEST_P()
157 llvm::Expected<std::unique_ptr<UDPSocket>> socket = in TEST_P()
158 UDPSocket::Connect("127.0.0.1:0", /*child_processes_inherit=*/false); in TEST_P()
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DSocket.h39 class UDPSocket; variable
84 static llvm::Expected<std::unique_ptr<UDPSocket>>
/llvm-project-15.0.7/llvm/utils/gn/secondary/lldb/source/Host/
H A DBUILD.gn47 "common/UDPSocket.cpp",
/llvm-project-15.0.7/lldb/source/Host/
H A DCMakeLists.txt43 common/UDPSocket.cpp
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp652 llvm::Expected<std::unique_ptr<UDPSocket>> socket = in ConnectUDP()