nbytes             62 kern/include/syscall.h int sys_write(int fdesc,userptr_t ubuf,unsigned int nbytes,int *retval);
nbytes             24 kern/syscall/file_syscalls.c sys_write(int fdesc,userptr_t ubuf,unsigned int nbytes,int *retval)
nbytes             30 kern/syscall/file_syscalls.c   DEBUG(DB_SYSCALL,"Syscall: write(%d,%x,%d)\n",fdesc,(unsigned int)ubuf,nbytes);
nbytes             42 kern/syscall/file_syscalls.c   iov.iov_len = nbytes;
nbytes             46 kern/syscall/file_syscalls.c   u.uio_resid = nbytes;
nbytes             57 kern/syscall/file_syscalls.c   *retval = nbytes - u.uio_resid;