Namespaces

Enumerations

enum class ShutdownMode : uint16_t
Name Value Comments
READ 1u

Shutdown socket read endpoint.

WRITE 2u

Shutdown socket write endpoint.

Socket shutdown mode.

Defined at line 22 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class TimestampOption : uint32_t
Name Value Comments
DISABLED 0u

Do not report timestamp.

NANOSECOND 1u

Report timestamp with nanosecond precision.

MICROSECOND 2u

Report timestamp with microsecond precision.

Packet timestamp reporting precision options.

Defined at line 80 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class RecvMsgFlags : uint16_t
Name Value Comments
PEEK 2u

Returns data from the receive queue without removing from it.

Equivalent to `MSG_PEEK`.

Flags controlling RecvMsg behavior.

Defined at line 533 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class SendMsgFlags : uint16_t
Name Value
RESERVED 32768u

Defined at line 589 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class TcpCongestionControl : uint32_t
Name Value
RENO 1u
CUBIC 2u

TCP congestion control modes.

Defined at line 958 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class Domain : int16_t
Name Value Comments
IPV4 0u

An IPv4 socket. Equivalent to `AF_INET`.

IPV6 1u

An IPv6 socket. Equivalent to `AF_INET6`.

A socket's domain.

Determines the addressing domain for a socket.

Defined at line 984 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class DatagramSocketProtocol : uint32_t
Name Value Comments
UDP 1u

UDP (User Datagram Protocol).

A UDP socket is equivalent to the POSIX API of `SOCK_DGRAM` with a
protocol of 0 or `IPPROTO_UDP`.

ICMP_ECHO 2u

ICMP (Internet Control Message Protocol) echo.

An ICMP echo socket is equivalent to the POSIX API of `SOCK_DGRAM` with
a protocol of `IPPROTO_ICMP` `IPPROTO_ICMPV6` (depending on provided
domain).

Datagrams sent over an ICMP echo socket *must* have a valid ICMP or
ICMPv6 echo header.

Protocols supported by [`fuchsia.posix.socket/DatagramSocket`].

`DatagramSocketProtocol` enumerates the protocols supported by the network

stack over datagram sockets.

Defined at line 1003 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class StreamSocketProtocol : uint32_t
Name Value Comments
TCP 0u

TCP (Transmission Control Protocol).

A TCP socket is equivalent to the POSIX API of `SOCK_STREAM` with a
protocol of 0 or `IPPROTO_TCP`.

Protocols supported by [`fuchsia.posix.socket/StreamSocket`].

`StreamSocketProtocol` enumerates the protocols supported by the network

stack over stream sockets.

Defined at line 1036 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

enum class InterfaceFlags : uint16_t
Name Value
UP 1u
BROADCAST 2u
DEBUG 4u
LOOPBACK 8u
POINTTOPOINT 16u
NOTRAILERS 32u
RUNNING 64u
NOARP 128u
PROMISC 256u
ALLMULTI 512u
LEADER 1024u
FOLLOWER 2048u
MULTICAST 4096u
PORTSEL 8192u
AUTOMEDIA 16384u
DYNAMIC 32768u

Bits representing the interface flags as returned by the SIOCGIFFLAGS ioctl

operation. These bitmasks are intended to track the C API definition. For

example, `InterfaceFlags.UP` corresponds to `IFF_UP`, etc.

Defined at line 1058 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

Records

Functions

  • ::fuchsia::posix::socket::ShutdownMode operator| (::fuchsia::posix::socket::ShutdownMode _lhs, ::fuchsia::posix::socket::ShutdownMode _rhs)

    Defined at line 33 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::ShutdownMode & operator|= (::fuchsia::posix::socket::ShutdownMode & _lhs, ::fuchsia::posix::socket::ShutdownMode _rhs)

    Defined at line 38 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::ShutdownMode operator& (::fuchsia::posix::socket::ShutdownMode _lhs, ::fuchsia::posix::socket::ShutdownMode _rhs)

    Defined at line 44 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::ShutdownMode & operator&= (::fuchsia::posix::socket::ShutdownMode & _lhs, ::fuchsia::posix::socket::ShutdownMode _rhs)

    Defined at line 50 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::ShutdownMode operator^ (::fuchsia::posix::socket::ShutdownMode _lhs, ::fuchsia::posix::socket::ShutdownMode _rhs)

    Defined at line 56 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::ShutdownMode & operator^= (::fuchsia::posix::socket::ShutdownMode & _lhs, ::fuchsia::posix::socket::ShutdownMode _rhs)

    Defined at line 62 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::ShutdownMode operator~ (::fuchsia::posix::socket::ShutdownMode _value)

    Defined at line 68 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::ShutdownMode value, ::fuchsia::posix::socket::ShutdownMode * result)

    Defined at line 73 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::TimestampOption value, ::fuchsia::posix::socket::TimestampOption * result)

    Defined at line 92 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags operator| (::fuchsia::posix::socket::RecvMsgFlags _lhs, ::fuchsia::posix::socket::RecvMsgFlags _rhs)

    Defined at line 543 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags & operator|= (::fuchsia::posix::socket::RecvMsgFlags & _lhs, ::fuchsia::posix::socket::RecvMsgFlags _rhs)

    Defined at line 548 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags operator& (::fuchsia::posix::socket::RecvMsgFlags _lhs, ::fuchsia::posix::socket::RecvMsgFlags _rhs)

    Defined at line 554 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags & operator&= (::fuchsia::posix::socket::RecvMsgFlags & _lhs, ::fuchsia::posix::socket::RecvMsgFlags _rhs)

    Defined at line 560 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags operator^ (::fuchsia::posix::socket::RecvMsgFlags _lhs, ::fuchsia::posix::socket::RecvMsgFlags _rhs)

    Defined at line 566 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags & operator^= (::fuchsia::posix::socket::RecvMsgFlags & _lhs, ::fuchsia::posix::socket::RecvMsgFlags _rhs)

    Defined at line 572 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::RecvMsgFlags operator~ (::fuchsia::posix::socket::RecvMsgFlags _value)

    Defined at line 578 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::RecvMsgFlags value, ::fuchsia::posix::socket::RecvMsgFlags * result)

    Defined at line 583 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags operator| (::fuchsia::posix::socket::SendMsgFlags _lhs, ::fuchsia::posix::socket::SendMsgFlags _rhs)

    Defined at line 596 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags & operator|= (::fuchsia::posix::socket::SendMsgFlags & _lhs, ::fuchsia::posix::socket::SendMsgFlags _rhs)

    Defined at line 601 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags operator& (::fuchsia::posix::socket::SendMsgFlags _lhs, ::fuchsia::posix::socket::SendMsgFlags _rhs)

    Defined at line 607 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags & operator&= (::fuchsia::posix::socket::SendMsgFlags & _lhs, ::fuchsia::posix::socket::SendMsgFlags _rhs)

    Defined at line 613 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags operator^ (::fuchsia::posix::socket::SendMsgFlags _lhs, ::fuchsia::posix::socket::SendMsgFlags _rhs)

    Defined at line 619 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags & operator^= (::fuchsia::posix::socket::SendMsgFlags & _lhs, ::fuchsia::posix::socket::SendMsgFlags _rhs)

    Defined at line 625 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::SendMsgFlags operator~ (::fuchsia::posix::socket::SendMsgFlags _value)

    Defined at line 631 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::SendMsgFlags value, ::fuchsia::posix::socket::SendMsgFlags * result)

    Defined at line 636 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::UdpMetadataEncodingProtocolVersion value, ::fuchsia::posix::socket::UdpMetadataEncodingProtocolVersion * result)

    Defined at line 681 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::CmsgRequests value, ::fuchsia::posix::socket::CmsgRequests * result)

    Defined at line 795 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::TcpCongestionControl value, ::fuchsia::posix::socket::TcpCongestionControl * result)

    Defined at line 965 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::Domain value, ::fuchsia::posix::socket::Domain * result)

    Defined at line 993 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::DatagramSocketProtocol value, ::fuchsia::posix::socket::DatagramSocketProtocol * result)

    Defined at line 1022 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::StreamSocketProtocol value, ::fuchsia::posix::socket::StreamSocketProtocol * result)

    Defined at line 1045 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags operator| (::fuchsia::posix::socket::InterfaceFlags _lhs, ::fuchsia::posix::socket::InterfaceFlags _rhs)

    Defined at line 1095 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags & operator|= (::fuchsia::posix::socket::InterfaceFlags & _lhs, ::fuchsia::posix::socket::InterfaceFlags _rhs)

    Defined at line 1100 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags operator& (::fuchsia::posix::socket::InterfaceFlags _lhs, ::fuchsia::posix::socket::InterfaceFlags _rhs)

    Defined at line 1106 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags & operator&= (::fuchsia::posix::socket::InterfaceFlags & _lhs, ::fuchsia::posix::socket::InterfaceFlags _rhs)

    Defined at line 1112 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags operator^ (::fuchsia::posix::socket::InterfaceFlags _lhs, ::fuchsia::posix::socket::InterfaceFlags _rhs)

    Defined at line 1118 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags & operator^= (::fuchsia::posix::socket::InterfaceFlags & _lhs, ::fuchsia::posix::socket::InterfaceFlags _rhs)

    Defined at line 1124 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • ::fuchsia::posix::socket::InterfaceFlags operator~ (::fuchsia::posix::socket::InterfaceFlags _value)

    Defined at line 1130 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (::fuchsia::posix::socket::InterfaceFlags value, ::fuchsia::posix::socket::InterfaceFlags * result)

    Defined at line 1135 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetReuseAddressRequest & _value, ::fuchsia::posix::socket::BaseSocketSetReuseAddressRequest * _result)

    Defined at line 1297 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReuseAddress_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetReuseAddress_Response * _result)

    Defined at line 1327 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReuseAddress_Result & value, ::fuchsia::posix::socket::BaseSocket_SetReuseAddress_Result * result)

    Defined at line 1436 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetReuseAddress_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetReuseAddress_Response * _result)

    Defined at line 1467 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetReuseAddress_Result & value, ::fuchsia::posix::socket::BaseSocket_GetReuseAddress_Result * result)

    Defined at line 1577 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetError_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetError_Response * _result)

    Defined at line 1607 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetError_Result & value, ::fuchsia::posix::socket::BaseSocket_GetError_Result * result)

    Defined at line 1716 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetBroadcastRequest & _value, ::fuchsia::posix::socket::BaseSocketSetBroadcastRequest * _result)

    Defined at line 1737 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetBroadcast_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetBroadcast_Response * _result)

    Defined at line 1767 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetBroadcast_Result & value, ::fuchsia::posix::socket::BaseSocket_SetBroadcast_Result * result)

    Defined at line 1876 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetBroadcast_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetBroadcast_Response * _result)

    Defined at line 1907 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetBroadcast_Result & value, ::fuchsia::posix::socket::BaseSocket_GetBroadcast_Result * result)

    Defined at line 2017 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetSendBufferRequest & _value, ::fuchsia::posix::socket::BaseSocketSetSendBufferRequest * _result)

    Defined at line 2038 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetSendBuffer_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetSendBuffer_Response * _result)

    Defined at line 2068 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetSendBuffer_Result & value, ::fuchsia::posix::socket::BaseSocket_SetSendBuffer_Result * result)

    Defined at line 2177 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetSendBuffer_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetSendBuffer_Response * _result)

    Defined at line 2208 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetSendBuffer_Result & value, ::fuchsia::posix::socket::BaseSocket_GetSendBuffer_Result * result)

    Defined at line 2318 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetReceiveBufferRequest & _value, ::fuchsia::posix::socket::BaseSocketSetReceiveBufferRequest * _result)

    Defined at line 2339 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReceiveBuffer_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetReceiveBuffer_Response * _result)

    Defined at line 2369 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReceiveBuffer_Result & value, ::fuchsia::posix::socket::BaseSocket_SetReceiveBuffer_Result * result)

    Defined at line 2478 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetReceiveBuffer_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetReceiveBuffer_Response * _result)

    Defined at line 2509 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetReceiveBuffer_Result & value, ::fuchsia::posix::socket::BaseSocket_GetReceiveBuffer_Result * result)

    Defined at line 2619 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetKeepAliveRequest & _value, ::fuchsia::posix::socket::BaseSocketSetKeepAliveRequest * _result)

    Defined at line 2640 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetKeepAlive_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetKeepAlive_Response * _result)

    Defined at line 2670 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetKeepAlive_Result & value, ::fuchsia::posix::socket::BaseSocket_SetKeepAlive_Result * result)

    Defined at line 2779 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetKeepAlive_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetKeepAlive_Response * _result)

    Defined at line 2810 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetKeepAlive_Result & value, ::fuchsia::posix::socket::BaseSocket_GetKeepAlive_Result * result)

    Defined at line 2920 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetOutOfBandInlineRequest & _value, ::fuchsia::posix::socket::BaseSocketSetOutOfBandInlineRequest * _result)

    Defined at line 2941 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetOutOfBandInline_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetOutOfBandInline_Response * _result)

    Defined at line 2971 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetOutOfBandInline_Result & value, ::fuchsia::posix::socket::BaseSocket_SetOutOfBandInline_Result * result)

    Defined at line 3080 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetOutOfBandInline_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetOutOfBandInline_Response * _result)

    Defined at line 3111 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetOutOfBandInline_Result & value, ::fuchsia::posix::socket::BaseSocket_GetOutOfBandInline_Result * result)

    Defined at line 3221 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetNoCheckRequest & _value, ::fuchsia::posix::socket::BaseSocketSetNoCheckRequest * _result)

    Defined at line 3242 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetNoCheck_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetNoCheck_Response * _result)

    Defined at line 3272 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetNoCheck_Result & value, ::fuchsia::posix::socket::BaseSocket_SetNoCheck_Result * result)

    Defined at line 3381 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetNoCheck_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetNoCheck_Response * _result)

    Defined at line 3412 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetNoCheck_Result & value, ::fuchsia::posix::socket::BaseSocket_GetNoCheck_Result * result)

    Defined at line 3522 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetLingerRequest & _value, ::fuchsia::posix::socket::BaseSocketSetLingerRequest * _result)

    Defined at line 3545 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetLinger_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetLinger_Response * _result)

    Defined at line 3575 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetLinger_Result & value, ::fuchsia::posix::socket::BaseSocket_SetLinger_Result * result)

    Defined at line 3684 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetLinger_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetLinger_Response * _result)

    Defined at line 3715 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetLinger_Result & value, ::fuchsia::posix::socket::BaseSocket_GetLinger_Result * result)

    Defined at line 3824 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReusePort_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetReusePort_Response * _result)

    Defined at line 3854 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReusePort_Result & value, ::fuchsia::posix::socket::BaseSocket_SetReusePort_Result * result)

    Defined at line 3963 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetReusePortDeprecatedRequest & _value, ::fuchsia::posix::socket::BaseSocketSetReusePortDeprecatedRequest * _result)

    Defined at line 3984 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReusePortDeprecated_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetReusePortDeprecated_Response * _result)

    Defined at line 4014 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetReusePortDeprecated_Result & value, ::fuchsia::posix::socket::BaseSocket_SetReusePortDeprecated_Result * result)

    Defined at line 4123 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetReusePort_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetReusePort_Response * _result)

    Defined at line 4154 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetReusePort_Result & value, ::fuchsia::posix::socket::BaseSocket_GetReusePort_Result * result)

    Defined at line 4264 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetAcceptConn_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetAcceptConn_Response * _result)

    Defined at line 4295 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetAcceptConn_Result & value, ::fuchsia::posix::socket::BaseSocket_GetAcceptConn_Result * result)

    Defined at line 4405 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetBindToDeviceRequest & _value, ::fuchsia::posix::socket::BaseSocketSetBindToDeviceRequest * _result)

    Defined at line 4426 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetBindToDevice_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetBindToDevice_Response * _result)

    Defined at line 4456 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetBindToDevice_Result & value, ::fuchsia::posix::socket::BaseSocket_SetBindToDevice_Result * result)

    Defined at line 4565 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetBindToDevice_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetBindToDevice_Response * _result)

    Defined at line 4596 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetBindToDevice_Result & value, ::fuchsia::posix::socket::BaseSocket_GetBindToDevice_Result * result)

    Defined at line 4706 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetBindToInterfaceIndexRequest & _value, ::fuchsia::posix::socket::BaseSocketSetBindToInterfaceIndexRequest * _result)

    Defined at line 4727 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetBindToInterfaceIndex_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetBindToInterfaceIndex_Response * _result)

    Defined at line 4757 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetBindToInterfaceIndex_Result & value, ::fuchsia::posix::socket::BaseSocket_SetBindToInterfaceIndex_Result * result)

    Defined at line 4866 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetBindToInterfaceIndex_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetBindToInterfaceIndex_Response * _result)

    Defined at line 4897 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetBindToInterfaceIndex_Result & value, ::fuchsia::posix::socket::BaseSocket_GetBindToInterfaceIndex_Result * result)

    Defined at line 5007 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetTimestampRequest & _value, ::fuchsia::posix::socket::BaseSocketSetTimestampRequest * _result)

    Defined at line 5028 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetTimestamp_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetTimestamp_Response * _result)

    Defined at line 5058 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetTimestamp_Result & value, ::fuchsia::posix::socket::BaseSocket_SetTimestamp_Result * result)

    Defined at line 5167 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetTimestamp_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetTimestamp_Response * _result)

    Defined at line 5198 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetTimestamp_Result & value, ::fuchsia::posix::socket::BaseSocket_GetTimestamp_Result * result)

    Defined at line 5308 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetMark_Response & _value, ::fuchsia::posix::socket::BaseSocket_SetMark_Response * _result)

    Defined at line 5338 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_SetMark_Result & value, ::fuchsia::posix::socket::BaseSocket_SetMark_Result * result)

    Defined at line 5447 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketGetMarkRequest & _value, ::fuchsia::posix::socket::BaseSocketGetMarkRequest * _result)

    Defined at line 5468 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetCookie_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetCookie_Response * _result)

    Defined at line 5499 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetCookie_Result & value, ::fuchsia::posix::socket::BaseSocket_GetCookie_Result * result)

    Defined at line 5609 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketBindRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketBindRequest * _result)

    Defined at line 5630 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Bind_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_Bind_Response * _result)

    Defined at line 5660 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Bind_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_Bind_Result * result)

    Defined at line 5769 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketConnectRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketConnectRequest * _result)

    Defined at line 5790 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Connect_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_Connect_Response * _result)

    Defined at line 5820 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Connect_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_Connect_Result * result)

    Defined at line 5929 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Disconnect_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_Disconnect_Response * _result)

    Defined at line 5959 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Disconnect_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_Disconnect_Result * result)

    Defined at line 6068 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetSockName_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetSockName_Response * _result)

    Defined at line 6099 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetSockName_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetSockName_Result * result)

    Defined at line 6209 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetPeerName_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetPeerName_Response * _result)

    Defined at line 6240 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetPeerName_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetPeerName_Result * result)

    Defined at line 6350 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketShutdownRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketShutdownRequest * _result)

    Defined at line 6371 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Shutdown_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_Shutdown_Response * _result)

    Defined at line 6401 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_Shutdown_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_Shutdown_Result * result)

    Defined at line 6510 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpTypeOfServiceRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpTypeOfServiceRequest * _result)

    Defined at line 6531 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTypeOfService_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTypeOfService_Response * _result)

    Defined at line 6561 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTypeOfService_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTypeOfService_Result * result)

    Defined at line 6670 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTypeOfService_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTypeOfService_Response * _result)

    Defined at line 6701 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTypeOfService_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTypeOfService_Result * result)

    Defined at line 6811 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTtl_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTtl_Response * _result)

    Defined at line 6841 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTtl_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTtl_Result * result)

    Defined at line 6950 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTtl_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTtl_Response * _result)

    Defined at line 6981 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTtl_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTtl_Result * result)

    Defined at line 7091 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpPacketInfoRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpPacketInfoRequest * _result)

    Defined at line 7112 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpPacketInfo_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpPacketInfo_Response * _result)

    Defined at line 7142 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpPacketInfo_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpPacketInfo_Result * result)

    Defined at line 7251 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpPacketInfo_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpPacketInfo_Response * _result)

    Defined at line 7282 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpPacketInfo_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpPacketInfo_Result * result)

    Defined at line 7392 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpReceiveTypeOfServiceRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpReceiveTypeOfServiceRequest * _result)

    Defined at line 7413 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTypeOfService_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTypeOfService_Response * _result)

    Defined at line 7443 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTypeOfService_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTypeOfService_Result * result)

    Defined at line 7552 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTypeOfService_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTypeOfService_Response * _result)

    Defined at line 7583 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTypeOfService_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTypeOfService_Result * result)

    Defined at line 7693 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpReceiveTtlRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpReceiveTtlRequest * _result)

    Defined at line 7714 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTtl_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTtl_Response * _result)

    Defined at line 7744 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTtl_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveTtl_Result * result)

    Defined at line 7853 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTtl_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTtl_Response * _result)

    Defined at line 7884 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTtl_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveTtl_Result * result)

    Defined at line 7994 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpMulticastInterfaceRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpMulticastInterfaceRequest * _result)

    Defined at line 8017 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastInterface_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastInterface_Response * _result)

    Defined at line 8047 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastInterface_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastInterface_Result * result)

    Defined at line 8156 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastInterface_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastInterface_Response * _result)

    Defined at line 8187 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastInterface_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastInterface_Result * result)

    Defined at line 8297 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastTtl_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastTtl_Response * _result)

    Defined at line 8327 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastTtl_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastTtl_Result * result)

    Defined at line 8436 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastTtl_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastTtl_Response * _result)

    Defined at line 8467 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastTtl_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastTtl_Result * result)

    Defined at line 8577 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpMulticastLoopbackRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpMulticastLoopbackRequest * _result)

    Defined at line 8598 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastLoopback_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastLoopback_Response * _result)

    Defined at line 8628 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastLoopback_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpMulticastLoopback_Result * result)

    Defined at line 8737 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastLoopback_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastLoopback_Response * _result)

    Defined at line 8768 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastLoopback_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpMulticastLoopback_Result * result)

    Defined at line 8878 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_AddIpMembership_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_AddIpMembership_Response * _result)

    Defined at line 8908 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_AddIpMembership_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_AddIpMembership_Result * result)

    Defined at line 9017 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_DropIpMembership_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_DropIpMembership_Response * _result)

    Defined at line 9047 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_DropIpMembership_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_DropIpMembership_Result * result)

    Defined at line 9156 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpTransparentRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpTransparentRequest * _result)

    Defined at line 9177 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTransparent_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTransparent_Response * _result)

    Defined at line 9207 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTransparent_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpTransparent_Result * result)

    Defined at line 9316 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTransparent_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTransparent_Response * _result)

    Defined at line 9347 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTransparent_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpTransparent_Result * result)

    Defined at line 9457 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpReceiveOriginalDestinationAddressRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpReceiveOriginalDestinationAddressRequest * _result)

    Defined at line 9478 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveOriginalDestinationAddress_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveOriginalDestinationAddress_Response * _result)

    Defined at line 9508 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveOriginalDestinationAddress_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpReceiveOriginalDestinationAddress_Result * result)

    Defined at line 9617 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveOriginalDestinationAddress_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveOriginalDestinationAddress_Response * _result)

    Defined at line 9648 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveOriginalDestinationAddress_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpReceiveOriginalDestinationAddress_Result * result)

    Defined at line 9758 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_AddIpv6Membership_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_AddIpv6Membership_Response * _result)

    Defined at line 9788 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_AddIpv6Membership_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_AddIpv6Membership_Result * result)

    Defined at line 9897 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_DropIpv6Membership_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_DropIpv6Membership_Response * _result)

    Defined at line 9927 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_DropIpv6Membership_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_DropIpv6Membership_Result * result)

    Defined at line 10036 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6MulticastInterfaceRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6MulticastInterfaceRequest * _result)

    Defined at line 10057 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastInterface_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastInterface_Response * _result)

    Defined at line 10087 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastInterface_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastInterface_Result * result)

    Defined at line 10196 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastInterface_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastInterface_Response * _result)

    Defined at line 10227 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastInterface_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastInterface_Result * result)

    Defined at line 10337 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6UnicastHops_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6UnicastHops_Response * _result)

    Defined at line 10367 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6UnicastHops_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6UnicastHops_Result * result)

    Defined at line 10476 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6UnicastHops_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6UnicastHops_Response * _result)

    Defined at line 10507 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6UnicastHops_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6UnicastHops_Result * result)

    Defined at line 10617 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6ReceiveHopLimitRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6ReceiveHopLimitRequest * _result)

    Defined at line 10638 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveHopLimit_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveHopLimit_Response * _result)

    Defined at line 10668 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveHopLimit_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveHopLimit_Result * result)

    Defined at line 10777 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveHopLimit_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveHopLimit_Response * _result)

    Defined at line 10808 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveHopLimit_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveHopLimit_Result * result)

    Defined at line 10918 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastHops_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastHops_Response * _result)

    Defined at line 10948 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastHops_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastHops_Result * result)

    Defined at line 11057 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastHops_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastHops_Response * _result)

    Defined at line 11088 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastHops_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastHops_Result * result)

    Defined at line 11198 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6MulticastLoopbackRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6MulticastLoopbackRequest * _result)

    Defined at line 11219 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastLoopback_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastLoopback_Response * _result)

    Defined at line 11249 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastLoopback_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6MulticastLoopback_Result * result)

    Defined at line 11358 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastLoopback_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastLoopback_Response * _result)

    Defined at line 11389 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastLoopback_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6MulticastLoopback_Result * result)

    Defined at line 11499 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6OnlyRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6OnlyRequest * _result)

    Defined at line 11520 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6Only_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6Only_Response * _result)

    Defined at line 11550 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6Only_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6Only_Result * result)

    Defined at line 11659 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6Only_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6Only_Response * _result)

    Defined at line 11690 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6Only_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6Only_Result * result)

    Defined at line 11800 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6ReceiveTrafficClassRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6ReceiveTrafficClassRequest * _result)

    Defined at line 11821 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveTrafficClass_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveTrafficClass_Response * _result)

    Defined at line 11851 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveTrafficClass_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceiveTrafficClass_Result * result)

    Defined at line 11960 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveTrafficClass_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveTrafficClass_Response * _result)

    Defined at line 11991 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveTrafficClass_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceiveTrafficClass_Result * result)

    Defined at line 12101 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6TrafficClass_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6TrafficClass_Response * _result)

    Defined at line 12131 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6TrafficClass_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6TrafficClass_Result * result)

    Defined at line 12240 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6TrafficClass_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6TrafficClass_Response * _result)

    Defined at line 12271 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6TrafficClass_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6TrafficClass_Result * result)

    Defined at line 12381 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6ReceivePacketInfoRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6ReceivePacketInfoRequest * _result)

    Defined at line 12402 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceivePacketInfo_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceivePacketInfo_Response * _result)

    Defined at line 12432 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceivePacketInfo_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_SetIpv6ReceivePacketInfo_Result * result)

    Defined at line 12541 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceivePacketInfo_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceivePacketInfo_Response * _result)

    Defined at line 12572 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceivePacketInfo_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetIpv6ReceivePacketInfo_Result * result)

    Defined at line 12682 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetOriginalDestination_Response & _value, ::fuchsia::posix::socket::BaseNetworkSocket_GetOriginalDestination_Response * _result)

    Defined at line 12713 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocket_GetOriginalDestination_Result & value, ::fuchsia::posix::socket::BaseNetworkSocket_GetOriginalDestination_Result * result)

    Defined at line 12823 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::IpMulticastMembership & _value, ::fuchsia::posix::socket::IpMulticastMembership * _result)

    Defined at line 12852 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketAddIpMembershipRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketAddIpMembershipRequest * _result)

    Defined at line 12873 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketDropIpMembershipRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketDropIpMembershipRequest * _result)

    Defined at line 12894 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Ipv6MulticastMembership & _value, ::fuchsia::posix::socket::Ipv6MulticastMembership * _result)

    Defined at line 12920 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketAddIpv6MembershipRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketAddIpv6MembershipRequest * _result)

    Defined at line 12941 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketDropIpv6MembershipRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketDropIpv6MembershipRequest * _result)

    Defined at line 12962 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Empty & _value, ::fuchsia::posix::socket::Empty * _result)

    Defined at line 12983 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ReusePortOption & value, ::fuchsia::posix::socket::ReusePortOption * result)

    Defined at line 13079 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetReusePortRequest & _value, ::fuchsia::posix::socket::BaseSocketSetReusePortRequest * _result)

    Defined at line 13100 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::OptionalUint8 & value, ::fuchsia::posix::socket::OptionalUint8 * result)

    Defined at line 13192 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpTtlRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpTtlRequest * _result)

    Defined at line 13213 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpMulticastTtlRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpMulticastTtlRequest * _result)

    Defined at line 13234 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6UnicastHopsRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6UnicastHopsRequest * _result)

    Defined at line 13255 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6MulticastHopsRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6MulticastHopsRequest * _result)

    Defined at line 13276 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6TrafficClassRequest & _value, ::fuchsia::posix::socket::BaseNetworkSocketSetIpv6TrafficClassRequest * _result)

    Defined at line 13297 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::OptionalUint32 & value, ::fuchsia::posix::socket::OptionalUint32 * result)

    Defined at line 13387 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocketSetMarkRequest & _value, ::fuchsia::posix::socket::BaseSocketSetMarkRequest * _result)

    Defined at line 13410 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetMark_Response & _value, ::fuchsia::posix::socket::BaseSocket_GetMark_Response * _result)

    Defined at line 13441 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseSocket_GetMark_Result & value, ::fuchsia::posix::socket::BaseSocket_GetMark_Result * result)

    Defined at line 13551 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Timestamp & _value, ::fuchsia::posix::socket::Timestamp * _result)

    Defined at line 13577 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Ipv4PktInfoRecvControlData & _value, ::fuchsia::posix::socket::Ipv4PktInfoRecvControlData * _result)

    Defined at line 13688 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Ipv6PktInfoRecvControlData & _value, ::fuchsia::posix::socket::Ipv6PktInfoRecvControlData * _result)

    Defined at line 13911 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Ipv6PktInfoSendControlData & _value, ::fuchsia::posix::socket::Ipv6PktInfoSendControlData * _result)

    Defined at line 14310 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::DatagramSocket_SendMsgPreflight_Result & value, ::fuchsia::posix::socket::DatagramSocket_SendMsgPreflight_Result * result)

    Defined at line 15689 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::DatagramSocket_RecvMsgPostflight_Result & value, ::fuchsia::posix::socket::DatagramSocket_RecvMsgPostflight_Result * result)

    Defined at line 15958 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::SynchronousDatagramSocketRecvMsgRequest & _value, ::fuchsia::posix::socket::SynchronousDatagramSocketRecvMsgRequest * _result)

    Defined at line 16075 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::SynchronousDatagramSocket_RecvMsg_Response & _value, ::fuchsia::posix::socket::SynchronousDatagramSocket_RecvMsg_Response * _result)

    Defined at line 16110 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::SynchronousDatagramSocket_RecvMsg_Result & value, ::fuchsia::posix::socket::SynchronousDatagramSocket_RecvMsg_Result * result)

    Defined at line 16219 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::SynchronousDatagramSocketSendMsgRequest & _value, ::fuchsia::posix::socket::SynchronousDatagramSocketSendMsgRequest * _result)

    Defined at line 16246 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::SynchronousDatagramSocket_SendMsg_Response & _value, ::fuchsia::posix::socket::SynchronousDatagramSocket_SendMsg_Response * _result)

    Defined at line 16277 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::SynchronousDatagramSocket_SendMsg_Result & value, ::fuchsia::posix::socket::SynchronousDatagramSocket_SendMsg_Result * result)

    Defined at line 16387 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketListenRequest & _value, ::fuchsia::posix::socket::StreamSocketListenRequest * _result)

    Defined at line 16494 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_Listen_Response & _value, ::fuchsia::posix::socket::StreamSocket_Listen_Response * _result)

    Defined at line 16524 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_Listen_Result & value, ::fuchsia::posix::socket::StreamSocket_Listen_Result * result)

    Defined at line 16633 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketAcceptRequest & _value, ::fuchsia::posix::socket::StreamSocketAcceptRequest * _result)

    Defined at line 16654 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_Accept_Response & _value, ::fuchsia::posix::socket::StreamSocket_Accept_Response * _result)

    Defined at line 16687 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_Accept_Result & value, ::fuchsia::posix::socket::StreamSocket_Accept_Result * result)

    Defined at line 16796 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpNoDelayRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpNoDelayRequest * _result)

    Defined at line 16819 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpNoDelay_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpNoDelay_Response * _result)

    Defined at line 16849 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpNoDelay_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpNoDelay_Result * result)

    Defined at line 16958 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpNoDelay_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpNoDelay_Response * _result)

    Defined at line 16989 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpNoDelay_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpNoDelay_Result * result)

    Defined at line 17099 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpMaxSegmentRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpMaxSegmentRequest * _result)

    Defined at line 17120 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpMaxSegment_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpMaxSegment_Response * _result)

    Defined at line 17150 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpMaxSegment_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpMaxSegment_Result * result)

    Defined at line 17259 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpMaxSegment_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpMaxSegment_Response * _result)

    Defined at line 17290 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpMaxSegment_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpMaxSegment_Result * result)

    Defined at line 17400 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpCorkRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpCorkRequest * _result)

    Defined at line 17421 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpCork_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpCork_Response * _result)

    Defined at line 17451 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpCork_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpCork_Result * result)

    Defined at line 17560 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpCork_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpCork_Response * _result)

    Defined at line 17591 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpCork_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpCork_Result * result)

    Defined at line 17701 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpKeepAliveIdleRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpKeepAliveIdleRequest * _result)

    Defined at line 17722 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveIdle_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveIdle_Response * _result)

    Defined at line 17752 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveIdle_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveIdle_Result * result)

    Defined at line 17861 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveIdle_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveIdle_Response * _result)

    Defined at line 17892 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveIdle_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveIdle_Result * result)

    Defined at line 18002 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpKeepAliveIntervalRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpKeepAliveIntervalRequest * _result)

    Defined at line 18023 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveInterval_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveInterval_Response * _result)

    Defined at line 18053 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveInterval_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveInterval_Result * result)

    Defined at line 18162 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveInterval_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveInterval_Response * _result)

    Defined at line 18193 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveInterval_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveInterval_Result * result)

    Defined at line 18303 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpKeepAliveCountRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpKeepAliveCountRequest * _result)

    Defined at line 18324 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveCount_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveCount_Response * _result)

    Defined at line 18354 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveCount_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpKeepAliveCount_Result * result)

    Defined at line 18463 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveCount_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveCount_Response * _result)

    Defined at line 18494 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveCount_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpKeepAliveCount_Result * result)

    Defined at line 18604 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpSynCountRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpSynCountRequest * _result)

    Defined at line 18625 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpSynCount_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpSynCount_Response * _result)

    Defined at line 18655 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpSynCount_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpSynCount_Result * result)

    Defined at line 18764 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpSynCount_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpSynCount_Response * _result)

    Defined at line 18795 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpSynCount_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpSynCount_Result * result)

    Defined at line 18905 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpLingerRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpLingerRequest * _result)

    Defined at line 18926 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpLinger_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpLinger_Response * _result)

    Defined at line 18956 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpLinger_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpLinger_Result * result)

    Defined at line 19065 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpLinger_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpLinger_Response * _result)

    Defined at line 19096 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpLinger_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpLinger_Result * result)

    Defined at line 19206 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpDeferAcceptRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpDeferAcceptRequest * _result)

    Defined at line 19227 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpDeferAccept_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpDeferAccept_Response * _result)

    Defined at line 19257 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpDeferAccept_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpDeferAccept_Result * result)

    Defined at line 19366 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpDeferAccept_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpDeferAccept_Response * _result)

    Defined at line 19397 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpDeferAccept_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpDeferAccept_Result * result)

    Defined at line 19507 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpWindowClampRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpWindowClampRequest * _result)

    Defined at line 19528 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpWindowClamp_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpWindowClamp_Response * _result)

    Defined at line 19558 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpWindowClamp_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpWindowClamp_Result * result)

    Defined at line 19667 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpWindowClamp_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpWindowClamp_Response * _result)

    Defined at line 19698 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpWindowClamp_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpWindowClamp_Result * result)

    Defined at line 19808 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpQuickAckRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpQuickAckRequest * _result)

    Defined at line 19829 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpQuickAck_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpQuickAck_Response * _result)

    Defined at line 19859 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpQuickAck_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpQuickAck_Result * result)

    Defined at line 19968 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpQuickAck_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpQuickAck_Response * _result)

    Defined at line 19999 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpQuickAck_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpQuickAck_Result * result)

    Defined at line 20109 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpCongestion_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpCongestion_Response * _result)

    Defined at line 20139 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpCongestion_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpCongestion_Result * result)

    Defined at line 20248 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpUserTimeoutRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpUserTimeoutRequest * _result)

    Defined at line 20269 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpUserTimeout_Response & _value, ::fuchsia::posix::socket::StreamSocket_SetTcpUserTimeout_Response * _result)

    Defined at line 20299 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_SetTcpUserTimeout_Result & value, ::fuchsia::posix::socket::StreamSocket_SetTcpUserTimeout_Result * result)

    Defined at line 20408 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpUserTimeout_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpUserTimeout_Response * _result)

    Defined at line 20439 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpUserTimeout_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpUserTimeout_Result * result)

    Defined at line 20549 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocketSetTcpCongestionRequest & _value, ::fuchsia::posix::socket::StreamSocketSetTcpCongestionRequest * _result)

    Defined at line 20570 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpCongestion_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpCongestion_Response * _result)

    Defined at line 20601 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpCongestion_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpCongestion_Result * result)

    Defined at line 20711 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpInfo_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetTcpInfo_Response * _result)

    Defined at line 20748 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetTcpInfo_Result & value, ::fuchsia::posix::socket::StreamSocket_GetTcpInfo_Result * result)

    Defined at line 20858 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseDatagramSocket_GetInfo_Response & _value, ::fuchsia::posix::socket::BaseDatagramSocket_GetInfo_Response * _result)

    Defined at line 20889 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::BaseDatagramSocket_GetInfo_Result & value, ::fuchsia::posix::socket::BaseDatagramSocket_GetInfo_Result * result)

    Defined at line 20998 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetInfo_Response & _value, ::fuchsia::posix::socket::StreamSocket_GetInfo_Response * _result)

    Defined at line 21029 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::StreamSocket_GetInfo_Result & value, ::fuchsia::posix::socket::StreamSocket_GetInfo_Result * result)

    Defined at line 21138 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderStreamSocketWithOptionsRequest & _value, ::fuchsia::posix::socket::ProviderStreamSocketWithOptionsRequest * _result)

    Defined at line 21477 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_StreamSocketWithOptions_Response & _value, ::fuchsia::posix::socket::Provider_StreamSocketWithOptions_Response * _result)

    Defined at line 21508 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_StreamSocketWithOptions_Result & value, ::fuchsia::posix::socket::Provider_StreamSocketWithOptions_Result * result)

    Defined at line 21618 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderStreamSocketRequest & _value, ::fuchsia::posix::socket::ProviderStreamSocketRequest * _result)

    Defined at line 21643 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_StreamSocket_Response & _value, ::fuchsia::posix::socket::Provider_StreamSocket_Response * _result)

    Defined at line 21676 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_StreamSocket_Result & value, ::fuchsia::posix::socket::Provider_StreamSocket_Result * result)

    Defined at line 21786 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderDatagramSocketDeprecatedRequest & _value, ::fuchsia::posix::socket::ProviderDatagramSocketDeprecatedRequest * _result)

    Defined at line 21811 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_DatagramSocketDeprecated_Response & _value, ::fuchsia::posix::socket::Provider_DatagramSocketDeprecated_Response * _result)

    Defined at line 21844 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_DatagramSocketDeprecated_Result & value, ::fuchsia::posix::socket::Provider_DatagramSocketDeprecated_Result * result)

    Defined at line 21954 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderDatagramSocketRequest & _value, ::fuchsia::posix::socket::ProviderDatagramSocketRequest * _result)

    Defined at line 21979 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_DatagramSocket_Response & value, ::fuchsia::posix::socket::Provider_DatagramSocket_Response * result)

    Defined at line 22070 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_DatagramSocket_Result & value, ::fuchsia::posix::socket::Provider_DatagramSocket_Result * result)

    Defined at line 22180 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderDatagramSocketWithOptionsRequest & _value, ::fuchsia::posix::socket::ProviderDatagramSocketWithOptionsRequest * _result)

    Defined at line 22205 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_DatagramSocketWithOptions_Response & value, ::fuchsia::posix::socket::Provider_DatagramSocketWithOptions_Response * result)

    Defined at line 22294 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_DatagramSocketWithOptions_Result & value, ::fuchsia::posix::socket::Provider_DatagramSocketWithOptions_Result * result)

    Defined at line 22404 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderInterfaceIndexToNameRequest & _value, ::fuchsia::posix::socket::ProviderInterfaceIndexToNameRequest * _result)

    Defined at line 22427 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_InterfaceIndexToName_Response & _value, ::fuchsia::posix::socket::Provider_InterfaceIndexToName_Response * _result)

    Defined at line 22458 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_InterfaceIndexToName_Result & value, ::fuchsia::posix::socket::Provider_InterfaceIndexToName_Result * result)

    Defined at line 22568 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderInterfaceNameToIndexRequest & _value, ::fuchsia::posix::socket::ProviderInterfaceNameToIndexRequest * _result)

    Defined at line 22589 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_InterfaceNameToIndex_Response & _value, ::fuchsia::posix::socket::Provider_InterfaceNameToIndex_Response * _result)

    Defined at line 22620 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_InterfaceNameToIndex_Result & value, ::fuchsia::posix::socket::Provider_InterfaceNameToIndex_Result * result)

    Defined at line 22730 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderInterfaceNameToFlagsRequest & _value, ::fuchsia::posix::socket::ProviderInterfaceNameToFlagsRequest * _result)

    Defined at line 22751 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_InterfaceNameToFlags_Response & _value, ::fuchsia::posix::socket::Provider_InterfaceNameToFlags_Response * _result)

    Defined at line 22782 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::Provider_InterfaceNameToFlags_Result & value, ::fuchsia::posix::socket::Provider_InterfaceNameToFlags_Result * result)

    Defined at line 22892 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

  • zx_status_t Clone (const ::fuchsia::posix::socket::ProviderGetInterfaceAddressesResponse & _value, ::fuchsia::posix::socket::ProviderGetInterfaceAddressesResponse * _result)

    Defined at line 22913 of file fidling/gen/sdk/fidl/fuchsia.posix.socket/fuchsia.posix.socket/hlcpp/fuchsia/posix/socket/cpp/fidl.h

Variables

const char * DATAGRAM_SOCKET_PROTOCOL_NAME
const char * STREAM_SOCKET_PROTOCOL_NAME
const char * SYNCHRONOUS_DATAGRAM_SOCKET_PROTOCOL_NAME