Lines Matching full:vpp
558 cd9660_root(struct mount *mp, int flags, struct vnode **vpp) in cd9660_root() argument
569 return (cd9660_vget_internal(mp, ino, flags, vpp, in cd9660_root()
605 cd9660_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) in cd9660_fhtovp() argument
620 *vpp = NULLVP; in cd9660_fhtovp()
626 *vpp = NULLVP; in cd9660_fhtovp()
629 *vpp = nvp; in cd9660_fhtovp()
630 vnode_create_vobject(*vpp, ip->i_size, curthread); in cd9660_fhtovp()
640 cd9660_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) in cd9660_vget() argument
649 return (cd9660_vget_internal(mp, ino, flags, vpp, in cd9660_vget()
672 struct vnode **vpp, int relocated, struct iso_directory_record *isodir) in cd9660_vget_internal() argument
682 error = vfs_hash_get(mp, ino, flags, td, vpp, cd9660_vfs_hash_cmp, in cd9660_vget_internal()
684 if (error || *vpp != NULL) in cd9660_vget_internal()
707 *vpp = NULLVP; in cd9660_vget_internal()
720 *vpp = NULLVP; in cd9660_vget_internal()
723 error = vfs_hash_insert(vp, ino, flags, td, vpp, cd9660_vfs_hash_cmp, in cd9660_vget_internal()
725 if (error || *vpp != NULL) in cd9660_vget_internal()
848 *vpp = vp; in cd9660_vget_internal()