Searched refs:spacetype (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/sys/
H A Duio_internal.h104 __private_extern__ int copyin_user_iovec_array(user_addr_t uaddr, int spacetype, int count, struct user_iovec *dst);
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_vnops.c832 int spacetype; local
841 spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32;
844 spacetype = UIO_SYSSPACE;
846 auio = uio_createwithbuffer(1, offset, spacetype, rw,
H A Dvfs_syscalls.c4994 int spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
5009 auio = uio_createwithbuffer(1, 0, spacetype, UIO_READ,
6918 int spacetype = proc_is64bit(vfs_context_proc(&context)) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
6959 auio = uio_createwithbuffer(1, loff, spacetype, UIO_READ, &uio_buf[0], sizeof(uio_buf));
7184 int spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
7243 auio = uio_createwithbuffer(1, loff, spacetype, UIO_READ,
7461 int spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
7582 auio = uio_createwithbuffer(1, 0, spacetype, UIO_READ,
8788 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
8799 NDINIT(&nd, LOOKUP, OP_GETXATTR, nameiflags, spacetype, ua
8870 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
8923 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
8980 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
9034 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
9127 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
9169 int spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; local
[all...]
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_subr.c1150 int copyin_user_iovec_array(user_addr_t uaddr, int spacetype, int count, struct user_iovec *dst) argument
1152 size_t size_of_iovec = ( spacetype == UIO_USERSPACE64 ? sizeof(struct user64_iovec) : sizeof(struct user32_iovec));
1163 if (spacetype == UIO_USERSPACE64) {
H A Dkern_descrip.c387 int spacetype; local
415 spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32;
417 spacetype = UIO_SYSSPACE;
419 auio = uio_createwithbuffer(1, offset, spacetype, rw, &uio_buf[0], sizeof(uio_buf));

Completed in 43 milliseconds