Home
last modified time | relevance | path

Searched refs:a_spacetype (Results 1 – 3 of 3) sorted by relevance

/xnu-10002.81.5/bsd/kern/
H A Dkern_subr.c709 int a_spacetype, /* type of address space */ in uio_init() argument
715 assert(IS_VALID_UIO_SEGFLG(a_spacetype)); in uio_init()
725 switch (a_spacetype) { in uio_init()
736 uio->uio_segflg = a_spacetype; in uio_init()
749 uio_alloc_iov_array(int a_spacetype, size_t a_iovcount) in uio_alloc_iov_array() argument
751 if (IS_SYS_SPACE_SEGFLG(a_spacetype) || IS_PHYS_SEGFLG(a_spacetype)) { in uio_alloc_iov_array()
760 uio_free_iov_array(int a_spacetype, void *iovs, size_t a_iovcount) in uio_free_iov_array() argument
762 if (IS_SYS_SPACE_SEGFLG(a_spacetype) || IS_PHYS_SEGFLG(a_spacetype)) { in uio_free_iov_array()
779 int a_spacetype, /* type of address space */ in uio_create() argument
790 iovecs = uio_alloc_iov_array(a_spacetype, (size_t)a_iovcount); in uio_create()
[all …]
/xnu-10002.81.5/bsd/sys/
H A Duio.h137 int a_spacetype, /* type of address space */
149 int a_spacetype, /* type of address space */
H A Duio_internal.h103 __private_extern__ uio_t uio_createwithbuffer( int a_iovcount, off_t a_offset, int a_spacetype, in…