Home
last modified time | relevance | path

Searched refs:MSG_EOR (Results 1 – 16 of 16) sorted by relevance

/freebsd/tests/sys/kern/
H A Dunix_seqpacket_test.c172 ssize = send(sv[0], sndbuf, pktsize, MSG_EOR); in test_eagain()
213 ssize = send(sv[0], sndbuf, pktsize, MSG_EOR); in test_sendrecv_symmetric_buffers()
261 ssize = send(sv[0], sndbuf, pktsize, MSG_EOR); in test_pipe_simulator()
320 ssize = send(td->so, sndbuf, td->pktsize, MSG_EOR); in test_pipe_writer()
731 ssize = send(sv[0], data, datalen, MSG_EOR); in ATF_TC_BODY()
775 ssize = sendto(sv[0], data, datalen, MSG_EOR, NULL, 0); in ATF_TC_BODY()
824 ssize = send(sv[0], data, datalen, MSG_EOR); in ATF_TC_BODY()
861 ssize = send(s2, data, datalen, MSG_EOR | MSG_NOSIGNAL); in ATF_TC_BODY()
891 (void)send(s2, data, datalen, MSG_EOR); in ATF_TC_BODY()
950 ssize = send(sv[0], data, datalen, MSG_EOR); in ATF_TC_BODY()
[all …]
H A Dktls_test.c1472 ATF_REQUIRE((msg.msg_flags & (MSG_EOR | MSG_CTRUNC)) == MSG_EOR); in ktls_receive_tls_record()
/freebsd/libexec/rbootd/
H A Dbpf.c136 #ifdef MSG_EOR in BpfOpen()
388 #ifdef MSG_EOR in BpfClose()
/freebsd/crypto/openssl/include/internal/
H A Dktls.h171 if ((msg.msg_flags & (MSG_EOR | MSG_CTRUNC)) != MSG_EOR) { in ktls_read_record()
/freebsd/usr.sbin/bhyve/
H A Dnet_backend_slirp.c188 return (sendmsg(priv->s, &hdr, MSG_EOR)); in slirp_send()
/freebsd/sys/kern/
H A Duipc_socket.c2288 if (flags & MSG_EOR)
2297 (M_PKTHDR | ((flags & MSG_EOR) ? M_EOR : 0)));
2402 if (resid < 0 || (so->so_type == SOCK_STREAM && (flags & MSG_EOR))) {
2507 if (flags & MSG_EOR)
2530 ((flags & MSG_EOR) ? M_EOR : 0));
2541 ((flags & MSG_EOR) ? M_EOR : 0));
2810 flags = *flagsp &~ MSG_EOR;
3102 flags |= MSG_EOR;
3168 if (flags & MSG_EOR)
3255 (flags & MSG_EOR) == 0 && (so->so_rcv.sb_state & SBS_CANTRCVMORE) == 0) {
[all …]
H A Duipc_usrreq.c1125 eor = flags & MSG_EOR; in uipc_sosend_stream_or_seqpacket()
1493 flags |= MSG_EOR; in uipc_soreceive_stream_or_seqpacket()
1670 if (waitall && !(flags & MSG_EOR) && uio->uio_resid > 0) in uipc_soreceive_stream_or_seqpacket()
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/
H A Dsdp_main.c1077 if (resid < 0 || (so->so_type == SOCK_STREAM && (flags & MSG_EOR))) { in sdp_sosend()
1134 if (flags & MSG_EOR) in sdp_sosend()
1146 ((flags & MSG_EOR) ? M_EOR : 0)); in sdp_sosend()
1235 flags = *flagsp &~ MSG_EOR; in sdp_sorecv()
/freebsd/sys/sys/
H A Dsocket.h454 #define MSG_EOR 0x00000008 /* data completes record */ macro
/freebsd/usr.sbin/bhyve/slirp/
H A Dslirp-helper.c108 n = send(priv->sock, buf, len, MSG_EOR); in slirp_cb_send_packet()
/freebsd/sys/netinet/
H A Dsctputil.c6067 out_flags |= MSG_EOR; in sctp_sorecvmsg()
6120 if ((control->end_added) && ((out_flags & MSG_EOR) == 0)) { in sctp_sorecvmsg()
6154 if ((out_flags & MSG_EOR) || (uio->uio_resid == 0)) { in sctp_sorecvmsg()
6168 if ((out_flags & MSG_EOR) && ((in_flags & MSG_PEEK) == 0)) { in sctp_sorecvmsg()
6226 out_flags &= ~MSG_EOR; in sctp_sorecvmsg()
6229 if (out_flags & MSG_EOR) { in sctp_sorecvmsg()
6297 out_flags |= MSG_EOR; in sctp_sorecvmsg()
6328 out_flags |= MSG_EOR; in sctp_sorecvmsg()
6353 out_flags |= MSG_EOR; in sctp_sorecvmsg()
6381 if (out_flags & MSG_EOR) { in sctp_sorecvmsg()
[all …]
H A Dsctp_output.c12688 if (flags & MSG_EOR) { in sctp_lower_sosend()
12875 if (flags & MSG_EOR) { in sctp_lower_sosend()
/freebsd/sbin/devd/
H A Ddevd.cc965 flags = MSG_EOR; in notify_clients()
/freebsd/crypto/openssl/crypto/bio/
H A Dbss_dgram.c2097 } while ((msg.msg_flags & MSG_NOTIFICATION) && (msg.msg_flags & MSG_EOR) in dgram_sctp_read()
2100 if (ret > 0 && !(msg.msg_flags & MSG_EOR)) { in dgram_sctp_read()
/freebsd/sys/dev/hyperv/hvsock/
H A Dhv_sock.c636 flags = *flagsp &~ MSG_EOR; in hvs_trans_soreceive()
/freebsd/sys/compat/linux/
H A Dlinux_socket.c658 ret_flags |= MSG_EOR; in linux_to_bsd_msg_flags()