| /freebsd-12-stable/sys/ufs/ufs/ |
| D | ufs_lookup.c | 82 ufs_delete_denied(struct vnode *vdp, struct vnode *tdp, struct ucred *cred, in ufs_delete_denied() argument 97 error = VOP_ACCESS(vdp, VEXEC, cred, td); in ufs_delete_denied() 105 error = VOP_ACCESSX(vdp, VDELETE_CHILD, cred, td); in ufs_delete_denied() 109 error = VOP_ACCESSX(vdp, VEXPLICIT_DENY | VDELETE_CHILD, cred, td); in ufs_delete_denied() 118 error = VOP_ACCESS(vdp, VWRITE, cred, td); in ufs_delete_denied() 128 if ((VTOI(vdp)->i_mode & ISVTX) && in ufs_delete_denied() 129 VOP_ACCESS(vdp, VADMIN, cred, td) && in ufs_delete_denied() 194 ufs_lookup_ino(struct vnode *vdp, struct vnode **vpp, struct componentname *cnp, in ufs_lookup_ino() argument 225 dp = VTOI(vdp); in ufs_lookup_ino() 235 vnode_create_vobject(vdp, DIP(dp, i_size), cnp->cn_thread); in ufs_lookup_ino() [all …]
|
| /freebsd-12-stable/sys/fs/cd9660/ |
| D | cd9660_lookup.c | 112 struct vnode *vdp; /* vnode for directory being searched */ local 145 vdp = ap->a_dvp; 146 dp = VTOI(vdp); 185 (error = cd9660_blkatoff(vdp, (off_t)i_offset, NULL, &bp))) 203 cd9660_blkatoff(vdp, (off_t)i_offset, NULL, &bp)) != 0) 304 if ((error = cd9660_blkatoff(vdp, 334 cache_enter(vdp, *vpp, cnp); 370 pdp = vdp; 400 VREF(vdp); /* we want ourself, ie "." */ 406 if (ltype != VOP_ISLOCKED(vdp)) { [all …]
|
| D | cd9660_vfsops.c | 221 struct iso_volume_descriptor *vdp = NULL; local 269 vdp = (struct iso_volume_descriptor *)bp->b_data; 270 if (bcmp (vdp->id, ISO_STANDARD_ID, sizeof vdp->id) != 0) { 271 if (bcmp (vdp->id_sierra, ISO_SIERRA_ID, 272 sizeof vdp->id_sierra) != 0) { 278 switch (isonum_711 (high_sierra? vdp->type_sierra: vdp->type)){ 283 pri = (struct iso_primary_descriptor *)vdp; 285 (struct iso_sierra_primary_descriptor *)vdp; 293 sup = (struct iso_supplementary_descriptor *)vdp;
|
| D | cd9660_vnops.c | 473 struct vnode *vdp = ap->a_vp; local 488 dp = VTOI(vdp); 518 (error = cd9660_blkatoff(vdp, (off_t)idp->curroff, NULL, &bp))) { 534 cd9660_blkatoff(vdp, (off_t)idp->curroff, NULL, &bp)) != 0)
|
| /freebsd-12-stable/sys/fs/ext2fs/ |
| D | ext2_lookup.c | 134 static int ext2_lookup_ino(struct vnode *vdp, struct vnode **vpp, 324 ext2_lookup_ino(struct vnode *vdp, struct vnode **vpp, struct componentname *cnp, in ext2_lookup_ino() argument 349 int DIRBLKSIZ = VTOI(vdp)->i_e2fs->e2fs_bsize; in ext2_lookup_ino() 354 dp = VTOI(vdp); in ext2_lookup_ino() 355 bmask = VFSTOEXT2(vdp->v_mount)->um_mountp->mnt_stat.f_iosize - 1; in ext2_lookup_ino() 427 (error = ext2_blkatoff(vdp, (off_t)i_offset, NULL, in ext2_lookup_ino() 444 error = ext2_blkatoff(vdp, (off_t)i_offset, NULL, &bp); in ext2_lookup_ino() 494 if ((error = VOP_ACCESS(vdp, VWRITE, cred, cnp->cn_thread)) != 0) in ext2_lookup_ino() 536 cache_enter(vdp, NULL, cnp); in ext2_lookup_ino() 569 ASSERT_VOP_ELOCKED(vdp, __FUNCTION__); in ext2_lookup_ino() [all …]
|
| /freebsd-12-stable/sys/fs/msdosfs/ |
| D | msdosfs_lookup.c | 66 static int msdosfs_lookup_(struct vnode *vdp, struct vnode **vpp, 114 msdosfs_lookup_(struct vnode *vdp, struct vnode **vpp, in msdosfs_lookup_() argument 149 dp = VTODE(vdp); in msdosfs_lookup_() 153 vdp, dp, dp->de_Attributes); in msdosfs_lookup_() 164 if ((vdp->v_vflag & VV_ROOT) && cnp->cn_nameptr[0] == '.' && in msdosfs_lookup_() 386 error = VOP_ACCESS(vdp, VWRITE, cnp->cn_cred, cnp->cn_thread); in msdosfs_lookup_() 422 cache_enter(vdp, *vpp, cnp); in msdosfs_lookup_() 489 error = VOP_ACCESS(vdp, VWRITE, cnp->cn_cred, cnp->cn_thread); in msdosfs_lookup_() 498 VREF(vdp); in msdosfs_lookup_() 499 *vpp = vdp; in msdosfs_lookup_() [all …]
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | stih415-clock.dtsi | 317 "clk-m-icn-vdp-0"; 329 clock-output-names = "clk-m-icn-vdp-1", 330 "clk-m-icn-vdp-2", 331 "clk-m-icn-vdp-3", 333 "clk-m-icn-vdp-4",
|
| D | stih416-clock.dtsi | 242 "clk-m-icn-vdp-0", 243 "clk-m-icn-vdp-1"; 332 "clk-m-rx-icn-vdp-0", 472 clock-output-names = "clk-m-icn-vdp-2",
|
| /freebsd-12-stable/crypto/openssl/crypto/bn/ |
| D | bn_gf2m.c | 618 BN_ULONG *udp, *bdp, *vdp, *cdp; in BN_GF2m_mod_inv_vartime() local 639 vdp = v->d; /* It pays off to "cache" *->d pointers, in BN_GF2m_mod_inv_vartime() 681 udp = vdp; in BN_GF2m_mod_inv_vartime() 682 vdp = v->d; in BN_GF2m_mod_inv_vartime() 687 udp[i] ^= vdp[i]; in BN_GF2m_mod_inv_vartime()
|
| /freebsd-12-stable/sys/fs/udf/ |
| D | ecma167-udf.h | 374 struct vol_desc_ptr vdp; member
|
| /freebsd-12-stable/contrib/ntp/libparse/ |
| D | parsestreams.c | 213 struct vddrv *vdp, in xxxinit() argument 229 vdp->vdd_vdtab = (struct vdlinkage *)&parsesync_vd; in xxxinit()
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ |
| D | vdev_impl.h | 464 extern int vdev_alloc(spa_t *spa, vdev_t **vdp, nvlist_t *config,
|
| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | spa.c | 1431 spa_config_parse(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent, in spa_config_parse() argument 1438 if ((error = vdev_alloc(spa, vdp, nv, parent, id, atype)) != 0) in spa_config_parse() 1441 if ((*vdp)->vdev_ops->vdev_op_leaf) in spa_config_parse() 1451 vdev_free(*vdp); in spa_config_parse() 1452 *vdp = NULL; in spa_config_parse() 1458 if ((error = spa_config_parse(spa, &vd, child[c], *vdp, c, in spa_config_parse() 1460 vdev_free(*vdp); in spa_config_parse() 1461 *vdp = NULL; in spa_config_parse() 1466 ASSERT(*vdp != NULL); in spa_config_parse()
|
| D | vdev.c | 659 vdev_alloc(spa_t *spa, vdev_t **vdp, nvlist_t *nv, vdev_t *parent, uint_t id, in vdev_alloc() argument 924 *vdp = vd; in vdev_alloc()
|
| /freebsd-12-stable/cddl/contrib/opensolaris/cmd/zdb/ |
| D | zdb.c | 2558 vdev_t *vdp = &vd; in dump_label_uberblocks() local 2562 vdp->vdev_top = vdp; in dump_label_uberblocks() 2564 for (int i = 0; i < VDEV_UBERBLOCK_COUNT(vdp); i++) { in dump_label_uberblocks() 2565 uint64_t uoff = VDEV_UBERBLOCK_OFFSET(vdp, i); in dump_label_uberblocks()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| D | SystemZInstrVector.td | 1809 def VDP : QuaternaryVRIf<"vdp", 0xE67A>;
|