Home
last modified time | relevance | path

Searched refs:msg_iov (Results 1 – 14 of 14) sorted by relevance

/xnu-10063.141.1/tests/
H A Drecvmsg_x_test.c68 msg.msg_iov = &vec; in sendPackets()
114 msg->msg_iov = &vec[i]; in recvPackets_x()
243 .msg_iov = &iov1,
247 .msg_iov = &iov2,
251 .msg_iov = &iov3,
H A Dscm_rights_leak.c67 mh.msg_iov = &iovec;
84 mh.msg_iov = &iovec;
102 mh.msg_iov = &iovec;
H A Dunp_externalize_fd_alloc.c37 msg.msg_iov = iovec;
60 rmsg.msg_iov = riovec;
H A Dsendmsg_x_test.c76 message_headers[0].msg_iov = &iovec1;
87 message_headers[1].msg_iov = &iovec2;
H A Duipc_sosendcheck.c30 msg.msg_iov = iov; in do_recv()
69 msg.msg_iov = iov; in do_send()
H A Duipc_uaf.c45 msg.msg_iov = &iov; in send_scm_rights()
56 overwrite_msg.msg_iov = &iov; in send_scm_rights()
H A Dfd_send.c29 msg.msg_iov = iovec; in send_fd()
62 msg.msg_iov = iovec; in recv_fd()
H A Dv4mappedv6_recvpktinfo.c202 recvmsghdr.msg_iov = &recv_iov; in do_kqueue()
241 T_LOG("%02x ", ((char *)recvmsghdr->msg_iov->iov_base)[i]); in handle_recv()
H A Dsocket_0byte_udp_poll_58140856.c57 msg.msg_iov = &iov; in send_message()
H A Drecvmsg_x_ctrunc.c97 msg->msg_iov = &iovarray[i]; in send_packets()
149 msg->msg_iov = &vec[i]; in receive_packets()
H A Dtcp_send_implied_connect.c102 msg.msg_iov = &iovec; in tcp_send_implied_connect_v4()
178 msg.msg_iov = &iovec; in tcp_send_implied_connect_v6()
/xnu-10063.141.1/bsd/sys/
H A Dsocket.h875 struct iovec *msg_iov; /* [XSI] scatter/gather array */ member
895 struct iovec *msg_iov; /* scatter/gather array */ member
914 vm_address_t msg_iov; /* scatter/gather array */ member
930 user64_addr_t msg_iov; /* scatter/gather array */ member
946 user32_addr_t msg_iov; /* scatter/gather array */ member
963 vm_address_t msg_iov; /* scatter/gather array */ member
981 user64_addr_t msg_iov; /* scatter/gather array */ member
998 user32_addr_t msg_iov; /* scatter/gather array */ member
1200 struct iovec *msg_iov; /* scatter/gather array */ member
/xnu-10063.141.1/bsd/kern/
H A Duipc_syscalls.c1435 msg.msg_iov = 0; in sendto_nocancel()
1518 user_msg.msg_iov = (user_addr_t)msg64.msg_iov; in sendmsg_nocancel()
1526 user_msg.msg_iov = msg32.msg_iov; in sendmsg_nocancel()
1556 error = copyin_user_iovec_array(user_msg.msg_iov, in sendmsg_nocancel()
1562 user_msg.msg_iov = CAST_USER_ADDR_T(iovp); in sendmsg_nocancel()
1570 user_msg.msg_iov = 0; in sendmsg_nocancel()
1614 user_msg->msg_iov = msghdrx64.msg_iov; in internalize_user_msg_x()
1630 user_msg->msg_iov = msghdrx32.msg_iov; in internalize_user_msg_x()
1680 error = copyin_user_iovec_array(user_msg->msg_iov, in internalize_user_msg_x()
1686 user_msg->msg_iov = CAST_USER_ADDR_T(iovp); in internalize_user_msg_x()
[all …]
H A Dkpi_socket.c740 struct iovec *tempp = msg->msg_iov; in sock_receive_internal()
821 (msg->msg_iov[0].iov_len == 0) || in sock_receive()
822 (msg->msg_iov[0].iov_base == NULL)) { in sock_receive()
834 (msg->msg_iov != NULL || msg->msg_iovlen != 0))) { in sock_receivembuf()
856 struct iovec *tempp = msg->msg_iov; in sock_send_internal()
975 if (msg == NULL || msg->msg_iov == NULL || msg->msg_iovlen < 1) { in sock_send()
988 if (data == NULL || (msg != NULL && (msg->msg_iov != NULL || in sock_sendmbuf()
1011 if (data == NULL || (msg != NULL && (msg->msg_iov != NULL || in sock_sendmbuf_can_wait()
1032 msg_temp.msg_iov = kalloc_type(struct iovec, count, Z_WAITOK | Z_ZERO); in sock_sendmbuf_can_wait()
1033 if (msg_temp.msg_iov == NULL) { in sock_sendmbuf_can_wait()
[all …]