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

  /src/sys/ufs/lfs/
ulfs_vnops.c 787 size_t callerbytes; local in function:ulfs_readdir
810 callerbytes = calleruio->uio_resid;
812 endoffset = startoffset + callerbytes;
814 if (callerbytes < _DIRENT_MINSIZE(dirent)) {
825 if (callerbytes - dropend < LFS_DIRECTSIZ(fs, 0)) {
831 rawbufmax = callerbytes + skipstart - dropend;
855 direntbufmax = callerbytes;
926 callerbytes = ((char *)(void *)dirent - direntbuf);
927 error = uiomove(direntbuf, callerbytes, calleruio);
  /src/sys/ufs/ufs/
ufs_vnops.c 1580 size_t callerbytes; local in function:ufs_readdir
1605 * XXX: there should probably be an upper bound on callerbytes
1608 callerbytes = calleruio->uio_resid;
1610 endoffset = startoffset + callerbytes;
1612 if (callerbytes < _DIRENT_MINSIZE(dirent)) {
1681 * = skipstart - startoffset + (startoffset + callerbytes) - dropend
1682 * = skipstart + callerbytes - dropend
1693 /* Base buffer space for CALLERBYTES of new data */
1694 rawbufmax = callerbytes + skipstart;
1695 if (rawbufmax < callerbytes)
    [all...]

Completed in 14 milliseconds