Searched refs:spacetype (Results 1 – 6 of 6) sorted by relevance
| /xnu-8020.121.3/bsd/sys/ |
| H A D | uio_internal.h | 104 __private_extern__ int copyin_user_iovec_array(user_addr_t uaddr, int spacetype, int count, struct …
|
| /xnu-8020.121.3/bsd/kern/ |
| H A D | uipc_syscalls.c | 2905 internalize_user_msghdr_array(const void *src, int spacetype, int direction, in internalize_user_msghdr_array() argument 2918 if (spacetype == UIO_USERSPACE64) { in internalize_user_msghdr_array() 2951 auio = uio_create(user_msg->msg_iovlen, 0, spacetype, in internalize_user_msghdr_array() 2965 spacetype, user_msg->msg_iovlen, iovp); in internalize_user_msghdr_array() 2990 internalize_recv_msghdr_array(const void *src, int spacetype, int direction, in internalize_recv_msghdr_array() argument 3002 if (spacetype == UIO_USERSPACE64) { in internalize_recv_msghdr_array() 3036 spacetype, direction); in internalize_recv_msghdr_array() 3048 spacetype, user_msg->msg_iovlen, iovp); in internalize_recv_msghdr_array() 3073 externalize_user_msghdr_array(void *dst, int spacetype, int direction, in externalize_user_msghdr_array() argument 3094 if (spacetype == UIO_USERSPACE64) { in externalize_user_msghdr_array() [all …]
|
| H A D | kern_subr.c | 1379 copyin_user_iovec_array(user_addr_t uaddr, int spacetype, int count, struct user_iovec *dst) in copyin_user_iovec_array() argument 1381 …size_t size_of_iovec = (spacetype == UIO_USERSPACE64 ? sizeof(struct user64_iovec) : sizeof(struct… in copyin_user_iovec_array() 1393 if (spacetype == UIO_USERSPACE64) { in copyin_user_iovec_array()
|
| H A D | kern_descrip.c | 2203 int spacetype; in fd_rdwr() local 2237 spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; in fd_rdwr() 2239 spacetype = UIO_SYSSPACE; in fd_rdwr() 2242 auio = uio_createwithbuffer(1, offset, spacetype, rw, &uio_buf[0], sizeof(uio_buf)); in fd_rdwr()
|
| /xnu-8020.121.3/bsd/vfs/ |
| H A D | vfs_vnops.c | 926 int spacetype; in vn_rdwr_64() local 935 spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; in vn_rdwr_64() 937 spacetype = UIO_SYSSPACE; in vn_rdwr_64() 944 auio = uio_createwithbuffer(1, offset, spacetype, rw, in vn_rdwr_64()
|
| H A D | vfs_syscalls.c | 9683 int spacetype = proc_is64bit(vfs_context_proc(&context)) ? UIO_USERSPACE64 : UIO_USERSPACE32; in getdirentries_common() local 9741 auio = uio_createwithbuffer(1, loff, spacetype, UIO_READ, &uio_buf[0], sizeof(uio_buf)); in getdirentries_common() 9974 int spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; in getdirentriesattr() local 10049 auio = uio_createwithbuffer(1, loff, spacetype, UIO_READ, &uio_buf[0], sizeof(uio_buf)); in getdirentriesattr() 10318 int spacetype = proc_is64bit(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; in searchfs() local 10459 auio = uio_createwithbuffer(1, 0, spacetype, UIO_READ, &uio_buf[0], sizeof(uio_buf)); in searchfs() 12227 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; in getxattr() local 12239 NDINIT(&nd, LOOKUP, OP_GETXATTR, nameiflags, spacetype, uap->path, ctx); in getxattr() 12284 auio = uio_createwithbuffer(1, uap->position, spacetype, UIO_READ, in getxattr() 12312 int spacetype = IS_64BIT_PROCESS(p) ? UIO_USERSPACE64 : UIO_USERSPACE32; in fgetxattr() local [all …]
|