Home
last modified time | relevance | path

Searched refs:SocketProtocol (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/tools/lldb-server/
H A DAcceptor.cpp28 const Socket::SocketProtocol m_protocol;
39 Socket::SocketProtocol &protocol) { in FindProtocolByScheme()
49 const char *FindSchemeByProtocol(const Socket::SocketProtocol protocol) { in FindSchemeByProtocol()
71 Socket::SocketProtocol Acceptor::GetSocketProtocol() const { in GetSocketProtocol()
86 Socket::SocketProtocol socket_protocol = Socket::ProtocolUnixDomain; in Create()
H A DAcceptor.h38 Socket::SocketProtocol GetSocketProtocol() const;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DSocket.h44 enum SocketProtocol { enum
58 static std::unique_ptr<Socket> Create(const SocketProtocol protocol,
95 SocketProtocol GetSocketProtocol() const { return m_protocol; } in GetSocketProtocol()
114 Socket(SocketProtocol protocol, bool should_close,
127 SocketProtocol m_protocol;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.h76 const Socket::SocketProtocol socket_protocol, const char *socket_scheme);
100 const Socket::SocketProtocol m_socket_protocol;
H A DGDBRemoteCommunicationServerPlatform.cpp110 const Socket::SocketProtocol socket_protocol, const char *socket_scheme) in GDBRemoteCommunicationServerPlatform()
/freebsd-13.1/contrib/unbound/dnstap/
H A Ddnstap.proto59 // SocketProtocol: the transport protocol of a socket. This specifies how to
61 enum SocketProtocol { enum
169 // One of the SocketProtocol values described above.
170 optional SocketProtocol socket_protocol = 3;
183 // This is a 16-bit UDP or TCP port number, depending on SocketProtocol.
187 // This is a 16-bit UDP or TCP port number, depending on SocketProtocol.
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DDomainSocket.h26 DomainSocket(SocketProtocol protocol, bool child_processes_inherit);
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DSocket.cpp75 Socket::Socket(SocketProtocol protocol, bool should_close, in Socket()
109 std::unique_ptr<Socket> Socket::Create(const SocketProtocol protocol, in Create()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DDomainSocket.cpp64 DomainSocket::DomainSocket(SocketProtocol protocol, in DomainSocket()