Searched refs:eofp (Results 1 - 18 of 18) sorted by relevance

/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_dir.h77 int *eofp);
126 #define XFS_DIR_GETDENTS(mp,tp,dp,uio,eofp) \
127 ((mp)->m_dirops.xd_getdents(tp,dp,uio,eofp))
H A Dxfs_dir2_block.h86 struct uio *uio, int *eofp,
H A Dxfs_dir.c92 int *eofp);
132 uio_t *uio, int *eofp,
144 uio_t *uio, int *eofp,
448 xfs_dir_getdents(xfs_trans_t *trans, xfs_inode_t *dp, uio_t *uio, int *eofp) argument
476 *eofp = 0;
479 retval = xfs_dir_shortform_getdents(dp, uio, eofp, dbp, put);
481 retval = xfs_dir_leaf_getdents(trans, dp, uio, eofp, dbp, put);
483 retval = xfs_dir_node_getdents(trans, dp, uio, eofp, dbp, put);
675 int *eofp, xfs_dirent_t *dbp, xfs_dir_put_t put)
686 *eofp
674 xfs_dir_leaf_getdents(xfs_trans_t *trans, xfs_inode_t *dp, uio_t *uio, int *eofp, xfs_dirent_t *dbp, xfs_dir_put_t put) argument
879 xfs_dir_node_getdents(xfs_trans_t *trans, xfs_inode_t *dp, uio_t *uio, int *eofp, xfs_dirent_t *dbp, xfs_dir_put_t put) argument
[all...]
H A Dxfs_dir2_sf.h189 int *eofp, struct xfs_dirent *dbp,
H A Dxfs_dir_leaf.h178 int xfs_dir_shortform_getdents(struct xfs_inode *dp, struct uio *uio, int *eofp,
H A Dxfs_dir2.c67 int *eofp);
343 int *eofp) /* out: eof reached */
369 *eofp = 0;
374 rval = xfs_dir2_sf_getdents(dp, uio, eofp, dbp, put);
378 rval = xfs_dir2_block_getdents(tp, dp, uio, eofp, dbp, put);
380 rval = xfs_dir2_leaf_getdents(tp, dp, uio, eofp, dbp, put);
339 xfs_dir2_getdents( xfs_trans_t *tp, xfs_inode_t *dp, uio_t *uio, int *eofp) argument
H A Dxfs_dir2_leaf.h253 struct uio *uio, int *eofp,
H A Dxfs_dir2_block.c431 int *eofp, /* eof reached? (out) */
452 *eofp = 1;
538 *eofp = 1;
427 xfs_dir2_block_getdents( xfs_trans_t *tp, xfs_inode_t *dp, uio_t *uio, int *eofp, xfs_dirent_t *dbp, xfs_dir2_put_t put) argument
H A Dxfs_dir2_sf.c702 int *eofp, /* eof reached? (out) */
739 *eofp = 1;
835 *eofp = 1;
699 xfs_dir2_sf_getdents( xfs_inode_t *dp, uio_t *uio, int *eofp, xfs_dirent_t *dbp, xfs_dir2_put_t put) argument
H A Dxfs_dir2_leaf.c758 int *eofp, /* out: reached end of dir */
794 *eofp = 1;
1126 *eofp = eof;
754 xfs_dir2_leaf_getdents( xfs_trans_t *tp, xfs_inode_t *dp, uio_t *uio, int *eofp, xfs_dirent_t *dbp, xfs_dir2_put_t put) argument
H A Dxfs_dir_leaf.c416 xfs_dir_shortform_getdents(xfs_inode_t *dp, uio_t *uio, int *eofp, argument
530 *eofp = 1;
564 *eofp = 1;
H A Dxfs_bmap.c259 * *eofp will be set, and *prevp will contain the last entry (null if none).
268 int *eofp, /* out: end of file found */
3648 * past eof, *eofp will be set, and *prevp will contain the last
3656 int *eofp, /* out: end of file found */
3684 *eofp = 0;
3689 *eofp = 1;
3699 * *eofp will be set, and *prevp will contain the last entry (null if none).
3708 int *eofp, /* out: end of file found */
3720 ep = xfs_bmap_search_multi_extents(ifp, bno, eofp, lastxp, gotp, prevp);
3653 xfs_bmap_search_multi_extents( xfs_ifork_t *ifp, xfs_fileoff_t bno, int *eofp, xfs_extnum_t *lastxp, xfs_bmbt_irec_t *gotp, xfs_bmbt_irec_t *prevp) argument
3704 xfs_bmap_search_extents( xfs_inode_t *ip, xfs_fileoff_t bno, int whichfork, int *eofp, xfs_extnum_t *lastxp, xfs_bmbt_irec_t *gotp, xfs_bmbt_irec_t *prevp) argument
H A Dxfs_vnodeops.c3244 int *eofp)
3260 error = XFS_DIR_GETDENTS(dp->i_mount, tp, dp, uiop, eofp);
3240 xfs_readdir( bhv_desc_t *dir_bdp, uio_t *uiop, cred_t *credp, int *eofp) argument
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/
H A Dgfs.c218 * return (gfs_readdir_fini(..., error, eofp, eof));
407 * eofp - the eofp passed to readdir
414 gfs_readdir_fini(gfs_readdir_state_t *st, int error, int *eofp, int eof) argument
425 if (eofp)
426 *eofp = eof;
978 * eofp - eof pointer
999 * int gfs_readdir_cb(vnode_t *vp, void *dp, int *eofp,
1008 * eofp - callback must set to 1 when EOF has been reached
1020 gfs_dir_readdir(vnode_t *dvp, uio_t *uiop, int *eofp, in argument
1111 int *eofp = ap->a_eofflag; local
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_ctldir.c1152 zfsctl_snapdir_readdir_cb(vnode_t *vp, void *dp, int *eofp, argument
1171 *eofp = 1;
1211 int *eofp = ap->a_eofflag; local
1224 error = VOP_READDIR(ZTOV(dzp), uiop, cr, eofp, ap->a_ncookies, ap->a_cookies);
1227 *eofp = 1;
H A Dzfs_vnops.c2389 * eofp - set to true if end-of-file detected.
2403 zfs_readdir(vnode_t *vp, uio_t *uio, cred_t *cr, int *eofp, int *ncookies, u_long **cookies) argument
2441 if (eofp == NULL)
2442 eofp = &local_eof;
2455 if ((*eofp = zp->z_unlinked) != 0) {
2551 if ((*eofp = (error == ENOENT)) != 0)
/freebsd-9.3-release/sys/fs/nfsclient/
H A Dnfs_clrpcops.c2537 int *eofp, void *stuff)
2571 if (eofp)
2572 *eofp = 0;
2926 if (eofp) {
2928 *eofp = 1;
2930 *eofp = 0;
2932 *eofp = eof;
2969 int *eofp, void *stuff)
2998 if (eofp != NULL)
2999 *eofp
2535 nfsrpc_readdir(vnode_t vp, struct uio *uiop, nfsuint64 *cookiep, struct ucred *cred, NFSPROC_T *p, struct nfsvattr *nap, int *attrflagp, int *eofp, void *stuff) argument
2967 nfsrpc_readdirplus(vnode_t vp, struct uio *uiop, nfsuint64 *cookiep, struct ucred *cred, NFSPROC_T *p, struct nfsvattr *nap, int *attrflagp, int *eofp, void *stuff) argument
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_vnode.h311 #define XVOP_READDIR(vp,uiop,cr,eofp,rv) \
312 rv = _VOP_(vop_readdir, vp)((vp)->v_fbhv,uiop,cr,eofp)

Completed in 227 milliseconds