Searched refs:a_iovcount (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Duio_internal.h103 __private_extern__ uio_t uio_createwithbuffer( int a_iovcount, off_t a_offset, int a_spacetype, int a_iodirection, void *a_buf_p, size_t a_buffer_size );
165 #define UIO_SIZEOF( a_iovcount ) \
166 ( sizeof(struct uio) + (MAX(sizeof(struct user_iovec), sizeof(struct kern_iovec)) * (a_iovcount)) )
H A Duio.h142 * Space is allocated to hold up to a_iovcount number of iovecs. The uio_t
144 * a_iovcount is the maximum number of iovecs you may add.
146 uio_t uio_create( int a_iovcount, /* max number of iovecs */
155 * The a_iovcount value passed in the uio_create is the maximum number of
177 * the a_iovcount number that was passed to uio_create.
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_subr.c567 * Space is allocated to hold up to a_iovcount number of iovecs. The uio_t
569 * a_iovcount is the maximum number of iovecs you may add.
571 uio_t uio_create( int a_iovcount, /* number of iovecs */ argument
580 my_size = UIO_SIZEOF(a_iovcount);
582 my_uio = uio_createwithbuffer( a_iovcount,
604 * a_iovcount is the maximum number of iovecs you may add.
608 uio_createwithbuffer( int a_iovcount, /* number of iovecs */ argument
618 my_size = UIO_SIZEOF(a_iovcount);
637 if (a_iovcount > UIO_MAXIOV) {
638 panic("%s :%d - invalid a_iovcount\
[all...]

Completed in 17 milliseconds