Home
last modified time | relevance | path

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

/xnu-8019.80.24/bsd/kern/
H A Dkern_subr.c702 int a_spacetype, /* type of address space */ in uio_init() argument
708 assert(IS_VALID_UIO_SEGFLG(a_spacetype)); in uio_init()
718 switch (a_spacetype) { in uio_init()
729 uio->uio_segflg = a_spacetype; in uio_init()
742 uio_alloc_iov_array(int a_spacetype, size_t a_iovcount) in uio_alloc_iov_array() argument
744 if (IS_SYS_SPACE_SEGFLG(a_spacetype) || IS_PHYS_SEGFLG(a_spacetype)) { in uio_alloc_iov_array()
753 uio_free_iov_array(int a_spacetype, void *iovs, size_t a_iovcount) in uio_free_iov_array() argument
755 if (IS_SYS_SPACE_SEGFLG(a_spacetype) || IS_PHYS_SEGFLG(a_spacetype)) { in uio_free_iov_array()
772 int a_spacetype, /* type of address space */ in uio_create() argument
783 iovecs = uio_alloc_iov_array(a_spacetype, (size_t)a_iovcount); in uio_create()
[all …]
/xnu-8019.80.24/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…