Lines Matching defs:vpp
336 * via (vpp). (mp) is the mountpoint of the union filesystem,
356 struct vnode **vpp,
464 *vpp = UNIONTOV(un);
466 VOP_UNLOCK(*vpp);
520 error = vcache_get(mp, &un, sizeof(un), vpp);
521 KASSERT(error != 0 || UNIONTOV(un) == *vpp);
802 * (vpp) is the returned newly created shadow directory, which
810 struct componentname *cnp, struct vnode **vpp)
845 KASSERT(*vpp == NULL);
846 error = VOP_MKDIR(dvp, vpp, &cn, &va);
888 union_vn_create(struct vnode **vpp, struct union_node *un, struct lwp *l)
899 *vpp = NULLVP;
940 *vpp = vp;
1049 struct vnode **vpp;
1065 vpp = dircache;
1066 union_dircache_r(vp, &vpp, &cnt);
1068 *vpp = NULLVP;
1069 vpp = dircache + 1;
1071 vpp = dircache;
1073 if (*vpp++ == VTOUNION(vp)->un_lowervp)
1075 } while (*vpp != NULLVP);
1078 if (*vpp == NULLVP)
1081 vref(*vpp);
1083 NULLVP, *vpp, 0);
1099 struct vnode **vpp;
1103 for (vpp = un->un_dircache; *vpp != NULLVP; vpp++)
1104 vrele(*vpp);
1199 union_readdirhook(struct vnode **vpp, struct file *fp, struct lwp *l)
1201 struct vnode *vp = *vpp, *lvp;
1232 *vpp = lvp;