Home
last modified time | relevance | path

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

/xnu-10063.141.1/bsd/dev/arm/
H A Dsystemcalls.c434 assert((unsigned) callp->sy_arg_bytes <= sizeof(uthread->uu_arg)); in arm_get_u32_syscall_args()
436 if (callp->sy_arg_bytes <= (sizeof(uint32_t) * regparams)) { in arm_get_u32_syscall_args()
440 memcpy(&uthread->uu_arg[0], &regs->r[flavor], callp->sy_arg_bytes); in arm_get_u32_syscall_args()
441 } else if (callp->sy_arg_bytes <= sizeof(uthread->uu_arg)) { in arm_get_u32_syscall_args()
449 (callp->sy_arg_bytes - (sizeof(uint32_t) * regparams))) != 0) { in arm_get_u32_syscall_args()
/xnu-10063.141.1/bsd/sys/
H A Dsysent.h50 uint16_t sy_arg_bytes; /* Total size of arguments in bytes for member
/xnu-10063.141.1/bsd/dev/i386/
H A Dsystemcalls.c135 if (callp->sy_arg_bytes != 0) { in unix_syscall()
143 assert((unsigned) callp->sy_arg_bytes <= sizeof(uthread->uu_arg)); in unix_syscall()
144 nargs = callp->sy_arg_bytes; in unix_syscall()