Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/kern/
H A Dkern_subr.c714 assert(a_iovcount >= 0 && a_iovcount <= UIO_MAXIOV); in uio_init()
785 if (a_iovcount < 0 || a_iovcount > UIO_MAXIOV) { in uio_create()
822 if (a_iovcount < 0 || a_iovcount > UIO_MAXIOV) { in uio_createwithbuffer()
977 if (__improbable(a_uio->uio_max_iovs < 0 || a_uio->uio_max_iovs > UIO_MAXIOV)) { in uio_free()
1323 if (uio->uio_max_iovs < 0 || uio->uio_max_iovs > UIO_MAXIOV) { in uio_duplicate()
H A Duipc_syscalls.c853 if (uap->iovcnt <= 0 || uap->iovcnt > UIO_MAXIOV) { in connectx_nocancel()
1473 if (user_msg.msg_iovlen <= 0 || user_msg.msg_iovlen > UIO_MAXIOV) { in sendmsg_nocancel()
1576 if (uap->cnt == 0 || uap->cnt > UIO_MAXIOV) { in sendmsg_x()
2151 if (user_msg.msg_iovlen <= 0 || user_msg.msg_iovlen > UIO_MAXIOV) { in recvmsg_nocancel()
2261 if (uap->cnt == 0 || uap->cnt > UIO_MAXIOV) { in recvmsg_x()
2947 user_msg->msg_iovlen > UIO_MAXIOV) { in internalize_user_msghdr_array()
3031 user_msg->msg_iovlen > UIO_MAXIOV) { in internalize_recv_msghdr_array()
H A Dsys_generic.c424 if (iovcnt <= 0 || iovcnt > UIO_MAXIOV) { in readv_preadv_uio()
726 if (iovcnt <= 0 || iovcnt > UIO_MAXIOV || offset < 0) { in writev_prwritev_uio()
H A Dkern_guarded.c787 if (uap->iovcnt <= 0 || uap->iovcnt > UIO_MAXIOV) { in guarded_writev_np()
/xnu-8020.101.4/bsd/sys/
H A Duio.h246 #define UIO_MAXIOV 1024 /* max 1K of iov's */ macro