Home
last modified time | relevance | path

Searched refs:UIO_MAXIOV (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.1.10/bsd/sys/
H A Duio.h253 #define UIO_MAXIOV 1024 /* max 1K of iov's */ macro
/xnu-11215.1.10/bsd/kern/
H A Dkern_subr.c854 assert(a_iovcount >= 0 && a_iovcount <= UIO_MAXIOV); in uio_init()
922 if (a_iovcount < 0 || a_iovcount > UIO_MAXIOV) { in uio_create()
959 if (a_iovcount < 0 || a_iovcount > UIO_MAXIOV) { in uio_createwithbuffer()
1086 if (__improbable(a_uio->uio_max_iovs < 0 || a_uio->uio_max_iovs > UIO_MAXIOV)) { in uio_free()
1372 if (uio->uio_max_iovs < 0 || uio->uio_max_iovs > UIO_MAXIOV) { in uio_duplicate()
H A Duipc_syscalls.c918 if (uap->iovcnt <= 0 || uap->iovcnt > UIO_MAXIOV) { in connectx_nocancel()
1542 if (user_msg.msg_iovlen <= 0 || user_msg.msg_iovlen > UIO_MAXIOV) { in sendmsg_nocancel()
1649 if (user_msg->msg_iovlen <= 0 || user_msg->msg_iovlen > UIO_MAXIOV) { in internalize_user_msg_x()
2411 if (user_msg.msg_iovlen <= 0 || user_msg.msg_iovlen > UIO_MAXIOV) { in recvmsg_nocancel()
2510 if (uap->cnt == 0 || uap->cnt > UIO_MAXIOV) { in recvmsg_x_array()
2717 if (uap->cnt == 0 || uap->cnt > UIO_MAXIOV) { in recvmsg_x()
2799 user_msg.msg_iovlen > UIO_MAXIOV) { in recvmsg_x()
3475 user_msg->msg_iovlen > UIO_MAXIOV) { in internalize_recv_msghdr_array()
H A Dsys_generic.c443 if (iovcnt <= 0 || iovcnt > UIO_MAXIOV) { in readv_uio()
762 if (iovcnt <= 0 || iovcnt > UIO_MAXIOV || offset < 0) { in writev_uio()