Home
last modified time | relevance | path

Searched refs:totread (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/stand/libsa/
Dsplitfs.c196 size_t totread; in splitfs_read() local
200 totread = 0; in splitfs_read()
202 nread = read(sf->curfd, buf, size - totread); in splitfs_read()
210 totread += nread; in splitfs_read()
213 if (totread < size) { /* EOF */ in splitfs_read()
226 } while (totread < size); in splitfs_read()
229 *resid = size - totread; in splitfs_read()
/freebsd-12-stable/sys/kern/
Dvfs_cluster.c92 struct ucred *cred, long totread, int seqcount, int gbflags, in cluster_read() argument
192 if (minread > totread) in cluster_read()
193 totread = minread; in cluster_read()
199 if (firstread + totread > filesize) in cluster_read()
200 totread = filesize - firstread; in cluster_read()
201 nblks = howmany(totread, size); in cluster_read()
/freebsd-12-stable/sys/fs/fuse/
Dfuse_io.c392 long totread = uio->uio_resid + on; in fuse_read_biobackend() local
396 totread, seqcount, 0, &bp); in fuse_read_biobackend()