Searched refs:vpp (Results 1 - 25 of 91) sorted by path

1234

/freebsd-current/bin/sh/
H A Dvar.c156 struct var **vpp; local
160 if (find_var(ip->text, &vpp, &vp->name_len) != NULL)
162 vp->next = *vpp;
163 *vpp = vp;
171 if (find_var("PS1", &vpp, &vps1.name_len) == NULL) {
172 vps1.next = *vpp;
173 *vpp = &vps1;
318 struct var *vp, **vpp; local
325 vp = find_var(s, &vpp, &nlen);
379 vp->next = *vpp;
546 struct var **vpp; local
591 struct var **vpp; local
647 struct var **vpp; local
748 struct var **vpp; local
881 struct var **vpp; local
939 struct var *vp, **vpp; local
[all...]
/freebsd-current/contrib/ntp/sntp/libevent/build-aux/
H A Dconfig.sub1216 vpp*|vx|vx-*)
/freebsd-current/contrib/ntp/sntp/libevent/
H A Dconfig.sub1213 vpp*|vx|vx-*)
/freebsd-current/contrib/openbsm/config/
H A Dconfig.sub983 vpp*|vx|vx-*)
/freebsd-current/contrib/openpam/
H A Dconfig.sub1188 vpp*|vx|vx-*)
/freebsd-current/contrib/unbound/
H A Dconfig.sub913 vpp*|vx|vx-*)
/freebsd-current/crypto/heimdal/
H A Dconfig.sub1129 vpp*|vx|vx-*)
/freebsd-current/sys/cddl/compat/opensolaris/sys/
H A Dvfs.h100 int mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype,
/freebsd-current/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dvfs.h103 int mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype,
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_vfs.c119 mount_snapshot(kthread_t *td, vnode_t **vpp, const char *fstype, char *fspath, argument
127 ASSERT_VOP_ELOCKED(*vpp, "mount_snapshot");
129 vp = *vpp;
130 *vpp = NULL;
257 *vpp = mvp;
/freebsd-current/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_ctldir.c133 uint64_t id, struct vnode **vpp)
140 err = vfs_hash_get(mp, (uint32_t)id, flags, curthread, vpp,
147 uint64_t id, struct vnode **vpp)
152 err = vfs_hash_insert(vp, (uint32_t)id, flags, curthread, vpp,
169 struct vnode **vpp)
174 error = sfs_vnode_get(mp, flags, parent_id, id, vpp);
175 if (error != 0 || *vpp != NULL) {
176 KASSERT_IMPLY(error == 0, (*vpp)->v_data != NULL,
184 *vpp = NULL;
194 *vpp
132 sfs_vnode_get(const struct mount *mp, int flags, uint64_t parent_id, uint64_t id, struct vnode **vpp) argument
146 sfs_vnode_insert(struct vnode *vp, int flags, uint64_t parent_id, uint64_t id, struct vnode **vpp) argument
166 sfs_vgetx(struct mount *mp, int flags, uint64_t parent_id, uint64_t id, const char *tag, struct vop_vector *vops, sfs_vnode_setup_fn setup, void *arg, struct vnode **vpp) argument
390 zfsctl_fs_root_vnode(struct mount *mp, void *arg __unused, int flags, struct vnode **vpp) argument
408 zfsctl_root_vnode(struct mount *mp, void *arg __unused, int flags, struct vnode **vpp) argument
421 zfsctl_snapdir_vnode(struct mount *mp, void *arg __unused, int flags, struct vnode **vpp) argument
438 zfsctl_root(zfsvfs_t *zfsvfs, int flags, vnode_t **vpp) argument
638 vnode_t **vpp = ap->a_vpp; local
874 zfsctl_mounted_here(vnode_t **vpp, int flags) argument
930 vnode_t **vpp = ap->a_vpp; local
[all...]
H A Dzfs_vfsops.c125 static int zfs_root(vfs_t *vfsp, int flags, vnode_t **vpp);
127 static int zfs_vget(vfs_t *vfsp, ino_t ino, int flags, vnode_t **vpp);
136 static int zfs_fhtovp(vfs_t *vfsp, fid_t *fidp, int flags, vnode_t **vpp);
1508 zfs_root(vfs_t *vfsp, int flags, vnode_t **vpp) argument
1519 *vpp = ZTOV(rootzp);
1524 error = vn_lock(*vpp, flags);
1526 VN_RELE(*vpp);
1527 *vpp = NULL;
1742 zfs_vget(vfs_t *vfsp, ino_t ino, int flags, vnode_t **vpp) argument
1765 *vpp
1805 zfs_fhtovp(vfs_t *vfsp, fid_t *fidp, int flags, vnode_t **vpp) argument
[all...]
H A Dzfs_vnops_os.c231 zfs_open(vnode_t **vpp, int flag, cred_t *cr) argument
234 znode_t *zp = VTOZ(*vpp);
689 zfs_dd_callback(struct mount *mp, void *arg, int lkflags, struct vnode **vpp) argument
693 *vpp = arg;
694 error = vn_lock(*vpp, lkflags);
696 vrele(*vpp);
774 * OUT: vpp - vnode of located entry, NULL if not found.
782 zfs_lookup(vnode_t *dvp, const char *nm, vnode_t **vpp, argument
821 *vpp = NULL;
845 *vpp
1336 zfs_lookup_internal(znode_t *dzp, const char *name, vnode_t **vpp, struct componentname *cnp, int nameiop) argument
[all...]
/freebsd-current/sys/fs/autofs/
H A Dautofs.h139 int flags, struct vnode **vpp);
H A Dautofs_vfsops.c180 autofs_root(struct mount *mp, int flags, struct vnode **vpp) argument
187 error = autofs_node_vn(amp->am_root, mp, flags, vpp);
H A Dautofs_vnops.c200 struct vnode **vpp)
203 return (autofs_node_vn(arg, mp, flags, vpp));
209 struct vnode *dvp, *newvp, **vpp; local
217 vpp = ap->a_vpp;
233 anp->an_parent, cnp->cn_lkflags, vpp);
244 *vpp = dvp;
284 error = autofs_node_vn(child, mp, cnp->cn_lkflags, vpp);
644 struct vnode **vpp)
672 *vpp = vp;
705 *vpp
199 autofs_vget_callback(struct mount *mp, void *arg, int flags, struct vnode **vpp) argument
643 autofs_node_vn(struct autofs_node *anp, struct mount *mp, int flags, struct vnode **vpp) argument
[all...]
/freebsd-current/sys/fs/cd9660/
H A Dcd9660_lookup.c57 struct vnode **vpp)
62 return (cd9660_vget_internal(mp, dd_arg->i_ino, lkflags, vpp,
126 struct vnode **vpp = ap->a_vpp; local
133 *vpp = NULL;
323 cache_enter(vdp, *vpp, cnp);
387 *vpp = tdp;
401 *vpp = vdp;
409 *vpp = tdp;
416 cache_enter(vdp, *vpp, cnp);
56 cd9660_ino_alloc(struct mount *mp, void *arg, int lkflags, struct vnode **vpp) argument
H A Dcd9660_vfsops.c558 cd9660_root(struct mount *mp, int flags, struct vnode **vpp) argument
569 return (cd9660_vget_internal(mp, ino, flags, vpp,
605 cd9660_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) argument
620 *vpp = NULLVP;
626 *vpp = NULLVP;
629 *vpp = nvp;
630 vnode_create_vobject(*vpp, ip->i_size, curthread);
640 cd9660_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
649 return (cd9660_vget_internal(mp, ino, flags, vpp,
672 struct vnode **vpp, in
671 cd9660_vget_internal(struct mount *mp, cd_ino_t ino, int flags, struct vnode **vpp, int relocated, struct iso_directory_record *isodir) argument
[all...]
/freebsd-current/sys/fs/devfs/
H A Ddevfs_vfsops.c205 devfs_root(struct mount *mp, int flags, struct vnode **vpp) argument
217 *vpp = vp;
H A Ddevfs_vnops.c530 struct vnode **vpp)
569 *vpp = vp;
640 *vpp = vp;
1044 struct vnode *dvp, **vpp; local
1056 vpp = ap->a_vpp;
1064 *vpp = NULLVP;
1082 *vpp = dvp;
1096 vpp);
1172 if (*vpp == dvp) {
1174 *vpp
529 devfs_allocv(struct devfs_dirent *de, struct mount *mp, int lockmode, struct vnode **vpp) argument
1205 struct vnode *dvp, **vpp; local
[all...]
/freebsd-current/sys/fs/ext2fs/
H A Dext2_alloc.c379 ext2_valloc(struct vnode *pvp, int mode, struct ucred *cred, struct vnode **vpp) argument
391 *vpp = NULL;
419 error = vfs_hash_get(ump->um_mountp, ino, LK_EXCLUSIVE, td, vpp, NULL, NULL);
420 if (error || *vpp != NULL) {
448 error = vfs_hash_insert(vp, ino, LK_EXCLUSIVE, td, vpp, NULL, NULL);
449 if (error || *vpp != NULL) {
450 *vpp = NULL;
457 *vpp = NULL;
481 *vpp = vp;
H A Dext2_extern.h77 int ext2_vinit(struct mount *, struct vop_vector *, struct vnode **vpp);
H A Dext2_lookup.c125 static int ext2_lookup_ino(struct vnode *vdp, struct vnode **vpp,
315 ext2_lookup_ino(struct vnode *vdp, struct vnode **vpp, struct componentname *cnp, argument
342 if (vpp != NULL)
343 *vpp = NULL;
583 *vpp = vdp;
602 *vpp = tdp;
627 *vpp = tdp;
676 *vpp = tdp;
690 *vpp = vdp;
695 *vpp
[all...]
H A Dext2_vfsops.c1194 ext2_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp) argument
1206 error = vfs_hash_get(mp, ino, flags, td, vpp, NULL, NULL);
1207 if (error || *vpp != NULL)
1215 *vpp = NULL;
1230 *vpp = NULL;
1233 error = vfs_hash_insert(vp, ino, flags, td, vpp, NULL, NULL);
1234 if (error || *vpp != NULL)
1248 *vpp = NULL;
1257 *vpp = NULL;
1286 *vpp
1321 ext2_fhtovp(struct mount *mp, struct fid *fhp, int flags, struct vnode **vpp) argument
1438 ext2_root(struct mount *mp, int flags, struct vnode **vpp) argument
[all...]
H A Dext2_vnops.c636 struct vnode **vpp = ap->a_vpp; local
648 ap->a_dvp, vpp, ap->a_cnp);
651 ip = VTOI(*vpp);
661 (*vpp)->v_type = VNON;
663 vgone(*vpp);
664 vput(*vpp);
665 error = VFS_VGET(ap->a_dvp->v_mount, ino, LK_EXCLUSIVE, vpp);
667 *vpp = NULL;
1516 struct vnode *vp, **vpp = ap->a_vpp; local
1521 vpp, a
1906 ext2_vinit(struct mount *mntp, struct vop_vector *fifoops, struct vnode **vpp) argument
1933 ext2_makeinode(int mode, struct vnode *dvp, struct vnode **vpp, struct componentname *cnp) argument
[all...]

Completed in 560 milliseconds

1234