Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DSocket.h48 } SocketProtocol; typedef
54 static std::unique_ptr<Socket> Create(const SocketProtocol protocol,
88 SocketProtocol GetSocketProtocol() const { return m_protocol; } in GetSocketProtocol()
104 Socket(SocketProtocol protocol, bool should_close,
117 SocketProtocol m_protocol;
/freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-server/
H A DAcceptor.cpp29 const Socket::SocketProtocol m_protocol;
40 Socket::SocketProtocol &protocol) { in FindProtocolByScheme()
50 const char *FindSchemeByProtocol(const Socket::SocketProtocol protocol) { in FindSchemeByProtocol()
72 Socket::SocketProtocol Acceptor::GetSocketProtocol() const { in GetSocketProtocol()
87 Socket::SocketProtocol socket_protocol = Socket::ProtocolUnixDomain; in Create()
H A DAcceptor.h39 Socket::SocketProtocol GetSocketProtocol() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.h29 const Socket::SocketProtocol socket_protocol, const char *socket_scheme);
68 const Socket::SocketProtocol m_socket_protocol;
H A DGDBRemoteCommunicationServerPlatform.cpp48 const Socket::SocketProtocol socket_protocol, const char *socket_scheme) in GDBRemoteCommunicationServerPlatform()
/freebsd-12.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-12.1/contrib/llvm/tools/lldb/include/lldb/Host/posix/
H A DDomainSocket.h25 DomainSocket(SocketProtocol protocol, bool child_processes_inherit);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DSocket.cpp73 Socket::Socket(SocketProtocol protocol, bool should_close, in Socket()
81 std::unique_ptr<Socket> Socket::Create(const SocketProtocol protocol, in Create()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/posix/
H A DDomainSocket.cpp64 DomainSocket::DomainSocket(SocketProtocol protocol, in DomainSocket()