Lines Matching full:vpp
1099 tarfs_root(struct mount *mp, int flags, struct vnode **vpp) in tarfs_root() argument
1111 *vpp = nvp; in tarfs_root()
1138 * is stored in vpp. Returns 0 on success or a positive errno value on
1142 tarfs_vget(struct mount *mp, ino_t ino, int lkflags, struct vnode **vpp) in tarfs_vget() argument
1154 error = vfs_hash_get(mp, ino, lkflags, td, vpp, NULL, NULL); in tarfs_vget()
1158 if (*vpp != NULL) { in tarfs_vget()
1159 TARFS_DPF(FS, "%s: found hashed vnode %p\n", __func__, *vpp); in tarfs_vget()
1171 *vpp = tmp->znode; in tarfs_vget()
1195 error = vfs_hash_insert(vp, ino, lkflags, td, vpp, NULL, NULL); in tarfs_vget()
1196 if (error != 0 || *vpp != NULL) in tarfs_vget()
1200 *vpp = vp; in tarfs_vget()
1204 *vpp = NULLVP; in tarfs_vget()
1209 tarfs_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) in tarfs_fhtovp() argument
1223 *vpp = NULLVP; in tarfs_fhtovp()
1231 *vpp = NULLVP; in tarfs_fhtovp()
1234 *vpp = nvp; in tarfs_fhtovp()