/src/sys/fs/adosfs/ |
adlookup.c | 74 struct vnode **vpp; /* place to store result */ local in function:adosfs_lookup 88 vpp = sp->a_vpp; 89 *vpp = NULL; 114 cnp->cn_nameiop, cnp->cn_flags, NULL, vpp)) { 115 return *vpp == NULLVP ? ENOENT : 0; 123 *vpp = vdp; 149 LK_EXCLUSIVE, vpp); 152 *vpp = NULL; 168 LK_EXCLUSIVE, vpp)) != 0) { 174 ap = VTOA(*vpp); [all...] |
/src/sys/miscfs/genfs/ |
layer_vfsops.c | 128 layerfs_root(struct mount *mp, int lktype, struct vnode **vpp) 134 *vpp = NULL; 142 *vpp = vp; 243 layerfs_vget(struct mount *mp, ino_t ino, int lktype, struct vnode **vpp) 254 *vpp = NULL; 258 error = layer_node_create(mp, vp, vpp); 261 *vpp = NULL; 264 error = vn_lock(*vpp, lktype); 266 vrele(*vpp); 267 *vpp = NULL [all...] |
/src/sys/fs/puffs/ |
puffs_node.c | 58 voff_t vsize, dev_t rdev, bool may_exist, struct vnode **vpp) 101 *vpp = vp; 136 voff_t vsize, dev_t rdev, struct vnode **vpp) 139 return puffs_getvnode1(mp, ck, type, vsize, rdev, true, vpp); 144 puffs_newnode(struct mount *mp, struct vnode *dvp, struct vnode **vpp, 168 error = puffs_getvnode1(dvp->v_mount, ck, type, 0, rdev, false, vpp); 179 cache_enter(dvp, *vpp, cnp->cn_nameptr, cnp->cn_namelen, 246 struct vnode **vpp) 257 *vpp = pmp->pmp_root; 261 rv = vcache_get(PMPTOMP(pmp), &ck, sizeof(ck), vpp); [all...] |
/src/common/lib/libc/gen/ |
radixtree.c | 508 void **vpp; local in function:radix_tree_lookup_ptr 517 vpp = &t->t_root; 520 refs->pptr = vpp; 531 KASSERT(vpp == &t->t_root); 550 entry = *vpp; 565 *vpp = c; 568 vpp = &n->n_ptrs[i]; 571 refs->pptr = vpp; 576 KASSERT(*vpp == NULL); 581 return vpp; 649 void **vpp; local in function:radix_tree_insert_node 677 void **vpp; local in function:radix_tree_replace_node 702 void **vpp; local in function:radix_tree_remove_node 774 void **vpp; local in function:radix_tree_lookup_node 815 void **vpp; local in function:gang_lookup_scan 1029 void **vpp; local in function:radix_tree_get_tag 1094 void **vpp; local in function:radix_tree_clear_tag [all...] |
/src/sys/fs/filecorefs/ |
filecore_lookup.c | 135 struct vnode **vpp = ap->a_vpp; local in function:filecore_lookup 145 *vpp = NULL; 167 cnp->cn_nameiop, cnp->cn_flags, NULL, vpp)) { 168 return *vpp == NULLVP ? ENOENT : 0; 244 cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen, 262 *vpp = vdp; 275 error = vcache_get(vdp->v_mount, &ino, sizeof(ino), vpp); 283 cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen,
|
filecore_vfsops.c | 465 filecore_root(struct mount *mp, int lktype, struct vnode **vpp) 472 *vpp = nvp; 525 struct vnode **vpp) 537 *vpp = NULLVP; 543 *vpp = NULLVP; 546 *vpp = nvp; 559 filecore_vget(struct mount *mp, ino_t ino, int lktype, struct vnode **vpp) 563 error = vcache_get(mp, &ino, sizeof(ino), vpp); 566 error = vn_lock(*vpp, lktype); 568 vrele(*vpp); [all...] |
/src/sys/ufs/ufs/ |
ufs_vfsops.c | 89 ufs_root(struct mount *mp, int lktype, struct vnode **vpp) 96 *vpp = nvp; 104 ufs_vget(struct mount *mp, ino_t ino, int lktype, struct vnode **vpp) 108 error = vcache_get(mp, &ino, sizeof(ino), vpp); 111 error = vn_lock(*vpp, lktype); 113 vrele(*vpp); 114 *vpp = NULL; 236 ufs_fhtovp(struct mount *mp, struct ufid *ufhp, int lktype, struct vnode **vpp) 245 *vpp = NULLVP; 253 *vpp = NULLVP [all...] |
/src/sys/coda/ |
coda_vfsops.c | 352 coda_root(struct mount *vfsp, int lktype, struct vnode **vpp) 366 *vpp = mi->mi_rootvp; 368 vref(*vpp); 369 vn_lock(*vpp, lktype); 392 *vpp = mi->mi_rootvp; 393 vref(*vpp); 394 vn_lock(*vpp, lktype); 407 *vpp = mi->mi_rootvp; 408 vref(*vpp); 409 vn_lock(*vpp, lktype) [all...] |
coda_vfsops.h | 66 int getNewVnode(struct vnode **vpp);
|
coda_vnops.c | 883 vnode_t **vpp = ap->a_vpp; local in function:coda_lookup 912 *vpp = coda_ctlvp; 913 vref(*vpp); 923 *vpp = (vnode_t *)0; 935 *vpp = CTOV(cp); 936 vref(*vpp); 938 myprintf(("lookup result %d vpp %p\n",error,*vpp));) 948 *vpp = (vnode_t *)0; 955 *vpp = CTOV(cp) 997 vnode_t **vpp = ap->a_vpp; local in function:coda_create 1322 vnode_t **vpp = ap->a_vpp; local in function:coda_mkdir 1687 vnode_t **vpp = ap->a_vpp; \/* RETURN vp of device *\/ local in function:coda_bmap [all...] |
/src/bin/sh/ |
var.c | 316 struct var **vpp; local in function:initvar 319 if (find_var(ip->text, &vpp, &vp->name_len) != NULL) 321 vp->next = *vpp; 322 *vpp = vp; 330 if (find_var("PS1", &vpp, &vps1.name_len) == NULL) { 331 vps1.next = *vpp; 332 *vpp = &vps1; 483 struct var *vp, **vpp; local in function:setvareq 489 vp = find_var(s, &vpp, &nlen); 553 vp->next = *vpp; 694 struct var **vpp; local in function:environment 741 struct var **vpp; local in function:shprocvar 875 struct var **vpp; local in function:showvars 1127 struct var **vpp; local in function:mklocal 1287 struct var **vpp; local in function:unsetvar 1348 struct var *vp, **vpp; local in function:find_var [all...] |
/src/sys/ufs/lfs/ |
ulfs_vfsops.c | 88 ulfs_root(struct mount *mp, int lktype, struct vnode **vpp) 95 *vpp = nvp; 216 struct vnode **vpp) 225 *vpp = NULLVP; 232 *vpp = NULLVP; 235 *vpp = nvp;
|
/src/sys/fs/union/ |
union_subr.c | 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) 1049 struct vnode **vpp; local in function:union_dircache 1099 struct vnode **vpp; local in function:union_diruncache [all...] |
/src/sys/fs/tmpfs/ |
tmpfs_vfsops.c | 303 tmpfs_root(struct mount *mp, int lktype, vnode_t **vpp) 308 error = vcache_get(mp, &node, sizeof(node), vpp); 311 error = vn_lock(*vpp, lktype); 313 vrele(*vpp); 314 *vpp = NULL; 322 tmpfs_vget(struct mount *mp, ino_t ino, int lktype, vnode_t **vpp) 329 tmpfs_fhtovp(struct mount *mp, struct fid *fhp, int lktype, vnode_t **vpp) 354 error = vcache_get(mp, &node, sizeof(node), vpp); 362 error = vn_lock(*vpp, lktype); 364 vrele(*vpp); [all...] |
/src/sys/fs/efs/ |
efs_vfsops.c | 298 efs_root(struct mount *mp, int lktype, struct vnode **vpp) 306 *vpp = vp; 346 efs_vget(struct mount *mp, ino_t ino, int lktype, struct vnode **vpp) 350 error = vcache_get(mp, &ino, sizeof(ino), vpp); 353 error = vn_lock(*vpp, lktype); 355 vrele(*vpp); 356 *vpp = NULL; 455 efs_fhtovp(struct mount *mp, struct fid *fhp, int lktype, struct vnode **vpp) 468 *vpp = NULL; 475 *vpp = NULL [all...] |
/src/sys/fs/ptyfs/ |
ptyfs_vfsops.c | 192 ptyfs__allocvp(struct mount *mp, struct lwp *l, struct vnode **vpp, 209 error = ptyfs_allocvp(mp, vpp, type, minor(dev)); 212 error = vn_lock(*vpp, LK_EXCLUSIVE); 214 vrele(*vpp); 215 *vpp = NULL; 389 ptyfs_root(struct mount *mp, int lktype, struct vnode **vpp) 394 error = ptyfs_allocvp(mp, vpp, PTYFSroot, 0); 397 error = vn_lock(*vpp, lktype); 399 vrele(*vpp); 400 *vpp = NULL [all...] |
/src/sys/nfs/ |
nfs_srvsubs.c | 295 nfsrv_fhtovp(nfsrvfh_t *nsfh, int lockflag, struct vnode **vpp, 306 *vpp = (struct vnode *)0; 319 error = VFS_FHTOVP(mp, &fhp->fh_fid, LK_EXCLUSIVE, vpp); 327 vput(*vpp); 332 vput(*vpp); 341 vput(*vpp); 345 vput(*vpp); 365 VOP_UNLOCK(*vpp);
|
/src/sys/rump/librump/rumpvfs/ |
rump_vfs.c | 242 struct vnode **dvpp, struct vnode **vpp, struct componentname **cnpp) 266 if (vpp) { 267 *vpp = nd.ni_vp; 415 rump_vfs_root(struct mount *mp, struct vnode **vpp, int lock) 419 rv = VFS_ROOT(mp, LK_EXCLUSIVE, vpp); 424 VOP_UNLOCK(*vpp); 444 rump_vfs_fhtovp(struct mount *mp, struct fid *fid, struct vnode **vpp) 447 return VFS_FHTOVP(mp, fid, LK_EXCLUSIVE, vpp);
|
/src/sys/fs/cd9660/ |
cd9660_lookup.c | 120 struct vnode **vpp = ap->a_vpp; local in function:cd9660_lookup 129 *vpp = NULL; 152 cnp->cn_nameiop, cnp->cn_flags, NULL, vpp)) { 153 return *vpp == NULLVP ? ENOENT : 0; 341 cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_flags); 359 *vpp = vdp; 365 *vpp = tdp; 371 cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_flags);
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
twl6030.dtsi | 44 vpp: regulator-vpp { label 45 compatible = "ti,twl6030-vpp";
|
/src/sys/miscfs/kernfs/ |
kernfs_vfsops.c | 185 kernfs_root(struct mount *mp, int lktype, struct vnode **vpp) 191 error = vcache_get(mp, &root_target, sizeof(root_target), vpp); 194 error = vn_lock(*vpp, lktype); 196 vrele(*vpp); 197 *vpp = NULL; 218 struct vnode **vpp)
|
/src/sys/fs/hfs/ |
hfs_vfsops.c | 442 hfs_root(struct mount *mp, int lktype, struct vnode **vpp) 453 *vpp = nvp; 498 hfs_vget(struct mount *mp, ino_t ino, int lktype, struct vnode **vpp) 502 error = hfs_vget_internal(mp, ino, HFS_DATAFORK, vpp); 505 error = vn_lock(*vpp, lktype); 507 vrele(*vpp); 508 *vpp = NULL; 519 struct vnode **vpp) 527 return vcache_get(mp, &key, sizeof(key), vpp); 614 hfs_fhtovp(struct mount *mp, struct fid *fhp, int lktype, struct vnode **vpp) [all...] |
/src/sys/ufs/chfs/ |
chfs_vnode.c | 69 chfs_readvnode(struct mount *mp, ino_t ino, struct vnode **vpp) 84 KASSERT(vpp != NULL); 86 if (vpp != NULL) { 87 vp = *vpp; 132 *vpp = vp; 193 chfs_makeinode(int mode, struct vnode *dvp, struct vnode **vpp, 208 *vpp = NULL; 312 *vpp = vp; 313 cache_enter(dvp, *vpp, cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_flags);
|
/src/sys/arch/evbmips/alchemy/ |
dbau1550.c | 258 uint16_t vcc, vpp; local in function:dbau1550_slot_enable 279 vpp = DBAU1550_PCMCIA_VPP_GND; 283 vpp = DBAU1550_PCMCIA_VPP_VCC; 287 vpp = DBAU1550_PCMCIA_VPP_VCC; 297 status |= vpp << shift; 316 /* NOTE: WE DO NOT SUPPORT DIFFERENT VCC/VPP LEVELS! */
|
/src/sys/fs/nilfs/ |
nilfs_vnops.c | 329 struct vnode **vpp = ap->a_vpp; /* return node */ local in function:nilfs_trivial_bmap 355 if (vpp) 356 *vpp = vp; 616 struct vnode **vpp = ap->a_vpp; local in function:nilfs_lookup 625 *vpp = NULL; 652 cnp->cn_nameiop, cnp->cn_flags, NULL, vpp)) { 653 return *vpp == NULLVP ? ENOENT : 0; 669 *vpp = dvp; 688 error = vcache_get(mp, &ino, sizeof(ino), vpp); 725 error = vcache_get(mp, &ino, sizeof(ino), vpp); 1079 struct vnode **vpp = ap->a_vpp; local in function:nilfs_create 1102 struct vnode **vpp = ap->a_vpp; local in function:nilfs_mknod 1125 struct vnode **vpp = ap->a_vpp; local in function:nilfs_mkdir 1218 struct vnode **vpp = ap->a_vpp; local in function:nilfs_symlink [all...] |