Home
last modified time | relevance | path

Searched refs:eofflag (Results 1 – 11 of 11) sorted by relevance

/dragonfly/sys/vfs/udf/
HDudf_vnops.c480 int eofflag; member
649 uiodir.eofflag = 1; in udf_readdir()
698 uiodir.eofflag = 0; in udf_readdir()
705 uiodir.eofflag = 0; in udf_readdir()
709 uiodir.eofflag = 0; in udf_readdir()
714 uiodir.eofflag = 0; in udf_readdir()
721 uiodir.eofflag = 0; in udf_readdir()
725 uiodir.eofflag = 0; in udf_readdir()
736 uiodir.eofflag = 0; in udf_readdir()
743 uiodir.eofflag = 0; in udf_readdir()
[all …]
/dragonfly/sys/vfs/isofs/cd9660/
HDcd9660_vnops.c333 int eofflag; member
346 idp->eofflag = 0; in iso_uiodir()
352 idp->eofflag = 0; in iso_uiodir()
472 idp->eofflag = 1; in cd9660_readdir()
602 *ap->a_eofflag = idp->eofflag; in cd9660_readdir()
/dragonfly/sys/sys/
HDvfsops.h824 struct ucred *cred, int *eofflag,
1080 #define VOP_READDIR_FP(vp, uio, cred, eofflag, ncookies, cookies, fp) \ argument
1081 vop_readdir(*(vp)->v_ops, vp, uio, cred, eofflag, ncookies, cookies, fp) /* FUSE */
1082 #define VOP_READDIR(vp, uio, cred, eofflag, ncookies, cookies) \ argument
1083 VOP_READDIR_FP(vp, uio, cred, eofflag, ncookies, cookies, NULL)
/dragonfly/sys/vfs/nfs/
HDnfs_serv.c2944 int siz, cnt, fullsiz, eofflag, rdonly, ncookies; in nfsrv_readdir() local
3040 eofflag = 0; in nfsrv_readdir()
3045 error = VOP_READDIR(vp, &io, cred, &eofflag, &ncookies, &cookies); in nfsrv_readdir()
3149 eofflag = 0; in nfsrv_readdir()
3211 if (eofflag) in nfsrv_readdir()
3253 int siz, cnt, fullsiz, eofflag, rdonly, dirlen, ncookies; in nfsrv_readdirplus() local
3332 eofflag = 0; in nfsrv_readdirplus()
3337 error = VOP_READDIR(vp, &io, cred, &eofflag, &ncookies, &cookies); in nfsrv_readdirplus()
3481 eofflag = 0; in nfsrv_readdirplus()
3557 if (eofflag) in nfsrv_readdirplus()
/dragonfly/sys/vfs/hammer2/
HDhammer2_vnops.c592 int eofflag; in hammer2_vop_readdir() local
598 eofflag = 0; in hammer2_vop_readdir()
728 eofflag = 1; in hammer2_vop_readdir()
736 *ap->a_eofflag = eofflag; in hammer2_vop_readdir()
/dragonfly/usr.sbin/makefs/hammer2/
HDhammer2_vnops.c652 int eofflag; in hammer2_vop_readdir() local
659 eofflag = 0; in hammer2_vop_readdir()
793 eofflag = 1; in hammer2_vop_readdir()
801 *ap->a_eofflag = eofflag; in hammer2_vop_readdir()
/dragonfly/sys/vfs/tmpfs/
HDtmpfs_vnops.c1646 int *eofflag = ap->a_eofflag; in tmpfs_readdir() local
1692 if (eofflag != NULL) in tmpfs_readdir()
1693 *eofflag = in tmpfs_readdir()
/dragonfly/usr.sbin/makefs/
HDhammer2.c2165 int eofflag = 0; in hammer2_readx_directory() local
2174 while (!eofflag) { in hammer2_readx_directory()
2176 &ndirent, &eofflag); in hammer2_readx_directory()
/dragonfly/sys/kern/
HDvfs_cache.c2734 int eofflag; in cache_inefficient_scan() local
2772 eofflag = 0; in cache_inefficient_scan()
2786 error = VOP_READDIR(pvp, &uio, cred, &eofflag, NULL, NULL); in cache_inefficient_scan()
2816 if (rncp.ncp == NULL && eofflag == 0 && uio.uio_resid != blksize) in cache_inefficient_scan()
HDvfs_vopops.c806 struct ucred *cred, int *eofflag, int *ncookies, off_t **cookies, in vop_readdir() argument
818 ap.a_eofflag = eofflag; in vop_readdir()
HDvfs_syscalls.c4613 int error, eofflag; in kern_getdirentries() local
4635 error = VOP_READDIR_FP(vp, &auio, fp->f_cred, &eofflag, NULL, NULL, fp); in kern_getdirentries()