Searched refs:fvd (Results 1 - 2 of 2) sorted by relevance

/xnu-2782.1.97/bsd/sys/
H A Dvnode_internal.h291 #define FV_LOCK(fvd) lck_mtx_lock(&(((struct fd_vn_data *)fvd)->fv_lock))
292 #define FV_UNLOCK(fvd) lck_mtx_unlock(&(((struct fd_vn_data *)fvd)->fv_lock))
293 #define FV_BUF_FREE(fvd, tag) \
295 FREE(fvd->fv_buf, tag); \
296 fvd->fv_buf = NULL; \
297 fvd->fv_bufsiz = 0; \
298 fvd->fv_bufdone = 0; \
299 fvd
[all...]
/xnu-2782.1.97/bsd/vfs/
H A Dvfs_attrlist.c2828 refill_fd_direntries(vfs_context_t ctx, vnode_t dvp, struct fd_vn_data *fvd, argument
2848 if (fvd->fv_offset && fvd->fv_bufallocsiz) {
2849 rdirbufsiz = fvd->fv_bufallocsiz;
2864 if (!fvd->fv_buf) {
2865 MALLOC(fvd->fv_buf, caddr_t, rdirbufsiz, M_FD_DIRBUF, M_WAITOK);
2866 fvd->fv_bufdone = 0;
2869 uio_reset(rdir_uio, fvd->fv_eoff, UIO_SYSSPACE, UIO_READ);
2870 uio_addiov(rdir_uio, CAST_USER_ADDR_T(fvd->fv_buf), rdirbufsiz);
2884 fvd
2952 get_direntry(vfs_context_t ctx, vnode_t dvp, struct fd_vn_data *fvd, int *eofflagp, struct direntry **dpp) argument
2980 direntry_done(struct fd_vn_data *fvd) argument
3151 readdirattr(vnode_t dvp, struct fd_vn_data *fvd, uio_t auio, struct attrlist *alp, uint64_t options, int *count, int *eofflagp, vfs_context_t ctx) argument
[all...]

Completed in 81 milliseconds