Home | History | Annotate | Download | only in msdosfs

Lines Matching refs:uio_resid

467 	if (uio->uio_resid == 0)
477 while (uio->uio_resid > 0) {
479 uio->uio_resid);
496 n = MIN(pmp->pm_bpcluster - on, uio->uio_resid);
523 } while (error == 0 && uio->uio_resid > 0 && n != 0);
585 if (uio->uio_resid == 0)
589 if (uio->uio_offset + uio->uio_resid > MSDOSFS_FILESIZE_MAX)
609 resid = uio->uio_resid;
634 bytelen = uio->uio_resid;
652 } while (error == 0 && uio->uio_resid > 0);
670 uio->uio_offset -= resid - uio->uio_resid;
671 uio->uio_resid = resid;
993 count = uio->uio_resid & ~(sizeof(struct direntry) - 1);
998 lost = uio->uio_resid - count;
999 uio->uio_resid = count;
1007 nc = uio->uio_resid / _DIRENT_MINSIZE((struct dirent *)0);
1051 if (uio->uio_resid < dirbuf->d_reclen)
1068 while (uio->uio_resid > 0) {
1071 n = MIN(pmp->pm_bpcluster - on, uio->uio_resid);
1178 if (uio->uio_resid < dirbuf->d_reclen) {
1202 uio->uio_resid += lost;