Lines Matching refs:oargs
226 struct pread_args oargs; local
228 oargs.fd = uap->fd;
229 oargs.buf = uap->buf;
230 oargs.nbyte = uap->nbyte;
231 oargs.offset = uap->offset;
232 return (sys_pread(td, &oargs));
435 struct pwrite_args oargs; local
437 oargs.fd = uap->fd;
438 oargs.buf = uap->buf;
439 oargs.nbyte = uap->nbyte;
440 oargs.offset = uap->offset;
441 return (sys_pwrite(td, &oargs));