/freebsd/sys/kern/ |
H A D | uipc_usrreq.c | 1378 struct uio *uio, struct mbuf **controlp, int *flagsp) in uipc_peek_dgram() argument 1400 if (controlp != NULL) { in uipc_peek_dgram() 1401 *controlp = m_copym(m, 0, m->m_len, M_WAITOK); in uipc_peek_dgram() 1402 controlp = &(*controlp)->m_next; in uipc_peek_dgram() 1441 struct mbuf **mp0, struct mbuf **controlp, int *flagsp) in uipc_soreceive_dgram() argument 1453 if (controlp != NULL) in uipc_soreceive_dgram() 1454 *controlp = NULL; in uipc_soreceive_dgram() 1527 return (uipc_peek_dgram(so, m, psa, uio, controlp, flagsp)); in uipc_soreceive_dgram() 1557 error = unp_externalize(cm, controlp, flags); in uipc_soreceive_dgram() 1564 if (controlp != NULL) { in uipc_soreceive_dgram() [all …]
|
H A D | uipc_socket.c | 168 struct mbuf **controlp, int *flagsp); 173 struct mbuf **controlp, int flags); 2720 struct uio *uio, struct mbuf **mp, struct mbuf **controlp, int *flagsp) argument 2895 if (controlp != NULL) { 2896 *controlp = m_copym(m, 0, m->m_len, 2898 controlp = &(*controlp)->m_next; 2919 (cm, controlp, flags); 2921 } else if (controlp != NULL) 2922 *controlp = cm; 2925 if (controlp != NULL) { [all …]
|
H A D | uipc_syscalls.c | 880 struct mbuf **controlp) in kern_recvit() argument 895 if (controlp != NULL) in kern_recvit() 896 *controlp = NULL; in kern_recvit() 933 (mp->msg_control || controlp) ? &control : NULL, in kern_recvit() 975 if (mp->msg_control && controlp == NULL) { in kern_recvit() 1022 if (error == 0 && controlp != NULL) in kern_recvit() 1023 *controlp = control; in kern_recvit()
|
H A D | uipc_domain.c | 168 struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp) in pr_soreceive_notsupp() argument
|
/freebsd/sys/sys/ |
H A D | socketvar.h | 532 struct mbuf **mp0, struct mbuf **controlp, int *flagsp); 534 struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, 537 struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, 540 struct uio *uio, struct mbuf **mp0, struct mbuf **controlp,
|
H A D | syscallsubr.h | 301 enum uio_seg fromseg, struct mbuf **controlp);
|
/freebsd/sys/netlink/ |
H A D | netlink_domain.c | 652 struct mbuf **mp, struct mbuf **controlp, int *flagsp) in nl_soreceive() argument 675 if (controlp != NULL && (nlp->nl_flags & NLF_MSG_INFO)) in nl_soreceive() 676 *controlp = nl_createcontrol(nlp); in nl_soreceive()
|
/freebsd/sys/netinet/ |
H A D | sctputil.h | 270 struct mbuf **controlp,
|
H A D | sctputil.c | 6546 struct mbuf **controlp, in sctp_soreceive() argument 6566 (controlp == NULL)) { in sctp_soreceive() 6592 if (controlp != NULL) { in sctp_soreceive() 6595 *controlp = sctp_build_ctl_nchunk(inp, in sctp_soreceive() 6598 *controlp = NULL; in sctp_soreceive()
|
/freebsd/sys/dev/hyperv/hvsock/ |
H A D | hv_sock.c | 618 struct uio *uio, struct mbuf **mp0, struct mbuf **controlp, int *flagsp) in hvs_trans_soreceive() argument 783 struct mbuf *top, struct mbuf *controlp, int flags, struct thread *td) in hvs_trans_sosend() argument
|
/freebsd/sys/compat/linux/ |
H A D | linux_socket.c | 1785 struct mbuf **controlp; in linux_recvmsg_common() local 1825 controlp = (msg->msg_control != NULL) ? &control : NULL; in linux_recvmsg_common() 1826 error = kern_recvit(td, s, msg, UIO_SYSSPACE, controlp); in linux_recvmsg_common()
|
/freebsd/sys/ofed/drivers/infiniband/ulp/sdp/ |
H A D | sdp_main.c | 1220 struct mbuf **mp0, struct mbuf **controlp, int *flagsp) in sdp_sorecv() argument 1232 if (controlp != NULL) in sdp_sorecv()
|
/freebsd/sys/compat/freebsd32/ |
H A D | freebsd32_misc.c | 1567 struct mbuf **controlp; in freebsd32_recvmsg() local 1581 controlp = (msg.msg_control != NULL) ? &control : NULL; in freebsd32_recvmsg() 1582 error = kern_recvit(td, uap->s, &msg, UIO_USERSPACE, controlp); in freebsd32_recvmsg()
|