Lines Matching refs:bcount
61 ssize_t bcount; in fake_pread() local
66 if ((bcount = (ssize_t)count) < 0) in fake_pread()
74 if (bcount == 0) in fake_pread()
91 if (fileoff + bcount > maxoff) in fake_pread()
92 bcount = (ssize_t)((offset_t)maxoff - fileoff); in fake_pread()
99 aiov.iov_len = bcount; in fake_pread()
104 auio.uio_resid = bcount; in fake_pread()
116 bcount -= auio.uio_resid; in fake_pread()
119 if (error == EINTR && bcount != 0) in fake_pread()
124 return (bcount); in fake_pread()
133 ssize_t bcount; in fake_pwrite() local
138 if ((bcount = (ssize_t)count) < 0) in fake_pwrite()
146 if (bcount == 0) in fake_pwrite()
166 bcount = (ssize_t)((u_offset_t)maxoff - fileoff); in fake_pwrite()
173 aiov.iov_len = bcount; in fake_pwrite()
178 auio.uio_resid = bcount; in fake_pwrite()
194 bcount -= auio.uio_resid; in fake_pwrite()
197 if (error == EINTR && bcount != 0) in fake_pwrite()
202 return (bcount); in fake_pwrite()