Home
last modified time | relevance | path

Searched refs:MSG_EOR (Results 1 – 13 of 13) 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()
918 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.h161 if ((msg.msg_flags & (MSG_EOR | MSG_CTRUNC)) != MSG_EOR) { in ktls_read_record()
/freebsd/sys/kern/
H A Duipc_socket.c2207 if (flags & MSG_EOR)
2216 (M_PKTHDR | ((flags & MSG_EOR) ? M_EOR : 0)));
2321 if (resid < 0 || (so->so_type == SOCK_STREAM && (flags & MSG_EOR))) {
2426 if (flags & MSG_EOR)
2449 ((flags & MSG_EOR) ? M_EOR : 0));
2460 ((flags & MSG_EOR) ? M_EOR : 0));
2729 flags = *flagsp &~ MSG_EOR;
3027 flags |= MSG_EOR;
3093 if (flags & MSG_EOR)
3180 (flags & MSG_EOR) == 0 && (so->so_rcv.sb_state & SBS_CANTRCVMORE) == 0) {
[all …]
/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.h452 #define MSG_EOR 0x00000008 /* data completes record */ macro
/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.c12687 if (flags & MSG_EOR) { in sctp_lower_sosend()
12874 if (flags & MSG_EOR) { in sctp_lower_sosend()
/freebsd/crypto/openssl/crypto/bio/
H A Dbss_dgram.c1115 while ((msg.msg_flags & MSG_NOTIFICATION) && (msg.msg_flags & MSG_EOR) in dgram_sctp_read()
1118 if (ret > 0 && !(msg.msg_flags & MSG_EOR)) { in dgram_sctp_read()
/freebsd/sbin/devd/
H A Ddevd.cc961 flags = MSG_EOR; in notify_clients()
/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.c619 ret_flags |= MSG_EOR; in linux_to_bsd_msg_flags()