Searched refs:orig_resid (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/sys/riscv/riscv/
H A Dmem.c51 ssize_t orig_resid; local
60 orig_resid = uio->uio_resid;
119 if (uio->uio_resid != orig_resid)
/freebsd-13-stable/sys/amd64/amd64/
H A Dmem.c84 ssize_t orig_resid; local
90 orig_resid = uio->uio_resid;
159 if (uio->uio_resid != orig_resid)
/freebsd-13-stable/sys/powerpc/powerpc/
H A Dmem.c101 ssize_t orig_resid; local
105 orig_resid = uio->uio_resid;
183 if (uio->uio_resid != orig_resid)
/freebsd-13-stable/sys/dev/hyperv/hvsock/
H A Dhv_sock.c641 ssize_t orig_resid; local
668 orig_resid = uio->uio_resid;
726 orig_resid > uio->uio_resid) {
749 if (!(flags & MSG_WAITALL) && orig_resid > uio->uio_resid)
755 if (orig_resid == uio->uio_resid) {
808 ssize_t orig_resid; local
827 orig_resid = uio->uio_resid;
849 if (orig_resid > uio->uio_resid)
/freebsd-13-stable/sys/ufs/ffs/
H A Dffs_vnops.c648 ssize_t orig_resid; local
683 orig_resid = uio->uio_resid;
684 KASSERT(orig_resid >= 0, ("ffs_read: uio->uio_resid < 0"));
685 if (orig_resid == 0)
809 if ((error == 0 || uio->uio_resid != orig_resid) &&
1046 ssize_t orig_resid; local
1058 orig_resid = uio->uio_resid;
1059 KASSERT(orig_resid >= 0, ("ffs_extread: uio->uio_resid < 0"));
1060 if (orig_resid == 0)
/freebsd-13-stable/sys/kern/
H A Dsys_pipe.c1065 ssize_t orig_resid; local
1123 orig_resid = uio->uio_resid;
1179 if ((space < uio->uio_resid) && (orig_resid <= PIPE_BUF))
1304 if (uio->uio_resid != orig_resid && error == EPIPE)
1319 if (uio->uio_resid != orig_resid)
H A Duipc_socket.c1910 ssize_t orig_resid = uio->uio_resid; local
2030 orig_resid = 0;
2113 orig_resid = 0;
2123 orig_resid = 0;
2368 if (orig_resid == uio->uio_resid && orig_resid &&
/freebsd-13-stable/sys/fs/msdosfs/
H A Dmsdosfs_vnops.c524 ssize_t orig_resid; local
541 orig_resid = uio->uio_resid;
542 if (orig_resid == 0)
604 if (!isadir && (error == 0 || uio->uio_resid != orig_resid) &&
/freebsd-13-stable/sys/fs/nfsclient/
H A Dnfs_clbio.c907 size_t orig_resid, local_resid; local
960 orig_resid = uio->uio_resid;
1289 uio->uio_offset -= orig_resid - uio->uio_resid;
1290 uio->uio_resid = orig_resid;
/freebsd-13-stable/sys/fs/ext2fs/
H A Dext2_vnops.c2051 int error, orig_resid, seqcount; local
2072 orig_resid = uio->uio_resid;
2073 KASSERT(orig_resid >= 0, ("ext2_read: uio->uio_resid < 0"));
2074 if (orig_resid == 0)
2144 if ((error == 0 || uio->uio_resid != orig_resid) &&

Completed in 90 milliseconds