Lines Matching defs:flags
782 recv(int s, void *buf, size_t len, int flags)
784 return (recvfrom(s, buf, len, flags, NULL, NULL));
788 * Receive messages from a connectionless socket. Legal flags are 0 and
794 recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from,
822 if ((flags & ~MSG_DONTWAIT) != 0) {
877 if ((flags & MSG_DONTWAIT) == 0)
981 send(int s, const void *msg, size_t len, int flags)
983 return (sendto(s, msg, len, flags, NULL, 0));
989 * Supported flags: MSG_DONTROUTE or 0.
992 sendto(int s, const void *msg, size_t len, int flags, const struct sockaddr *to,
1009 if ((flags & ~MSG_DONTROUTE) != 0) {
1030 bytes = dgram_sendto(sock_id, msg, len, flags, to, tolen);
1042 bytes = stream_sendto(sock_id, msg, len, flags);
1053 dgram_sendto(int i, const void *msg, size_t len, int flags,
1081 oc.igm_oflags = flags;
1128 stream_sendto(int i, const void *msg, size_t len, int flags)
1138 * Note also that currently, TCP ignores all flags passed in for