HomeSort by: relevance | last modified time | path
    Searched defs:bytesinfile (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/ufs/ext2fs/
ext2fs_readwrite.c 159 off_t bytesinfile; local in function:ext2fs_bufrd
186 bytesinfile = ext2fs_size(ip) - uio->uio_offset;
187 if (bytesinfile <= 0)
196 if (bytesinfile < xfersize)
197 xfersize = bytesinfile;
  /src/sys/ufs/lfs/
ulfs_readwrite.c 128 off_t bytesinfile; local in function:BUFRD
157 bytesinfile = ip->i_size - uio->uio_offset;
158 if (bytesinfile <= 0)
165 bytesinfile);
  /src/sys/ufs/ufs/
ufs_readwrite.c 132 off_t bytesinfile; local in function:BUFRD
160 bytesinfile = ip->i_size - uio->uio_offset;
161 if (bytesinfile <= 0)
168 bytesinfile);
  /src/sys/ufs/ffs/
ffs_extattr.c 144 off_t bytesinfile; local in function:ffs_extread
165 if ((bytesinfile = dp->di_extsize - uio->uio_offset) <= 0)
193 if (bytesinfile < xfersize)
194 xfersize = bytesinfile;
ffs_snapshot.c 2076 off_t fsbytes, bytesinfile; local in function:ffs_snapshot_read
2087 bytesinfile = fsbytes - uio->uio_offset;
2088 if (bytesinfile <= 0)
2095 bytesinfile);
  /src/sys/ufs/chfs/
chfs_vnops.c 628 off_t bytesinfile; local in function:chfs_read
688 bytesinfile = ip->size - uio->uio_offset;
689 if (bytesinfile <= 0)
696 bytesinfile);

Completed in 168 milliseconds