Home | History | Annotate | Download | only in doio

Lines Matching refs:sysc

344 struct status *sy_listio(struct io_req *req, struct syscall_info *sysc,
353 struct status *sy_pread(struct io_req *req, struct syscall_info *sysc,
355 struct status *sy_pwrite(struct io_req *req, struct syscall_info *sysc,
362 struct status *sy_readv(struct io_req *req, struct syscall_info *sysc,
364 struct status *sy_writev(struct io_req *req, struct syscall_info *sysc,
366 struct status *sy_rwv(struct io_req *req, struct syscall_info *sysc,
373 struct status *sy_aread(struct io_req *req, struct syscall_info *sysc,
375 struct status *sy_awrite(struct io_req *req, struct syscall_info *sysc,
377 struct status *sy_arw(struct io_req *req, struct syscall_info *sysc,
384 struct status *sy_mmread(struct io_req *req, struct syscall_info *sysc,
386 struct status *sy_mmwrite(struct io_req *req, struct syscall_info *sysc,
388 struct status *sy_mmrw(struct io_req *req, struct syscall_info *sysc,
2530 struct status *sy_listio(struct io_req *req, struct syscall_info *sysc, int fd,
2551 lc = (sysc->sy_flags & SY_ASYNC) ? LC_START : LC_WAIT;
2581 l->li_opcode = (sysc->sy_flags & SY_WRITE) ? LO_WRITE : LO_READ;
2650 struct status *sy_pread(struct io_req *req, struct syscall_info *sysc, int fd,
2671 struct status *sy_pwrite(struct io_req *req, struct syscall_info *sysc, int fd,
2714 struct status *sy_readv(struct io_req *req, struct syscall_info *sysc, int fd,
2718 return sy_rwv(req, sysc, fd, addr, 0);
2721 struct status *sy_writev(struct io_req *req, struct syscall_info *sysc, int fd,
2725 return sy_rwv(req, sysc, fd, addr, 1);
2728 struct status *sy_rwv(struct io_req *req, struct syscall_info *sysc, int fd,
2776 struct status *sy_aread(struct io_req *req, struct syscall_info *sysc, int fd,
2780 return sy_arw(req, sysc, fd, addr, 0);
2783 struct status *sy_awrite(struct io_req *req, struct syscall_info *sysc, int fd,
2787 return sy_arw(req, sysc, fd, addr, 1);
2795 struct status *sy_arw(struct io_req *req, struct syscall_info *sysc, int fd,
2869 struct status *sy_mmread(struct io_req *req, struct syscall_info *sysc, int fd,
2873 return sy_mmrw(req, sysc, fd, addr, 0);
2876 struct status *sy_mmwrite(struct io_req *req, struct syscall_info *sysc, int fd,
2880 return sy_mmrw(req, sysc, fd, addr, 1);
2883 struct status *sy_mmrw(struct io_req *req, struct syscall_info *sysc, int fd,