HomeSort by: relevance | last modified time | path
    Searched refs:vdp (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/arch/mipsco/stand/installboot/
installboot.c 131 struct mips_voldir *vdp; local
138 for (i=0, vdp=vh.vh_voldir; i<MIPS_NVOLDIR; i++, vdp++)
139 if (vdp->vd_len)
140 printf("%2d:\t%5d\t%6d\t%s\n", i, vdp->vd_lba,
141 vdp->vd_len, vdp->vd_name);
148 struct mips_voldir *vdp; local
151 vdp = voldir_findfile(&vh, filename, 0);
152 if (vdp == NULL
166 struct mips_voldir *vdp; local
316 struct mips_voldir *vdp = vhp->vh_voldir; local
    [all...]
  /src/sys/fs/adosfs/
adlookup.c 76 struct vnode *vdp; /* vnode of search dir */ local
86 vdp = sp->a_dvp;
87 adp = VTOA(vdp);
101 if ((error = VOP_ACCESS(vdp, VEXEC, ucp)) != 0)
104 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
113 if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
123 *vpp = vdp;
130 if (vdp->v_type == VDIR && (vdp->v_vflag & VV_ROOT))
133 * cannot get `..' while `vdp' is locke
    [all...]
  /src/sys/dev/wscons/
wsdisplay_vcons.c 188 struct vcons_data_private *vdp; local
193 vd->private = vdp = kmem_zalloc(sizeof(*vdp), KM_SLEEP);
201 vdp->ioctl = ao->ioctl;
213 LIST_INIT(&vdp->screens);
215 vdp->wanted = NULL;
216 vdp->currenttype = def;
217 vdp->defaulttype = def;
218 callout_init(&vdp->switch_callout, 0);
219 callout_setfunc(&vdp->switch_callout, vcons_do_switch, vd)
316 struct vcons_data_private *vdp = vd->private; local
377 struct vcons_data_private *vdp = vd->private; local
461 struct vcons_data_private *vdp = vd->private; local
595 struct vcons_data_private *vdp = vd->private; local
670 struct vcons_data_private *vdp = vd->private; local
773 struct vcons_data_private *vdp = vd->private; local
828 struct vcons_data_private *vdp = vd->private; local
886 struct vcons_data_private *vdp = vd->private; local
957 struct vcons_data_private *vdp = vd->private; local
1025 struct vcons_data_private *vdp = vd->private; local
1086 struct vcons_data_private *vdp = vd->private; local
1180 struct vcons_data_private *vdp = vd->private; local
1243 struct vcons_data_private *vdp = vd->private; local
1305 struct vcons_data_private *vdp = vd->private; local
1617 struct vcons_data_private *vdp = vd->private; local
1626 struct vcons_data_private *vdp = vd->private; local
1653 struct vcons_data_private *vdp = vd->private; local
1667 struct vcons_data_private *vdp = vd->private; local
1682 struct vcons_data_private *vdp = vd->private; local
1698 struct vcons_data_private *vdp = vd->private; local
1717 struct vcons_data_private *vdp = vd->private; local
    [all...]
  /src/sys/fs/filecorefs/
filecore_lookup.c 126 struct vnode *vdp; /* vnode for directory being searched */ local
146 vdp = ap->a_dvp;
147 dp = VTOI(vdp);
152 if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
155 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
166 if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
244 cache_enter(vdp, *vpp, cnp->cn_nameptr, cnp->cn_namelen,
261 vref(vdp); /* we want ourself, ie "." */
262 *vpp = vdp;
275 error = vcache_get(vdp->v_mount, &ino, sizeof(ino), vpp)
    [all...]
filecore_vnops.c 294 struct vnode *vdp = ap->a_vp; local
305 dp = VTOI(vdp);
  /src/sys/fs/cd9660/
cd9660_lookup.c 100 struct vnode *vdp; /* vnode for directory being searched */ local
130 vdp = ap->a_dvp;
131 dp = VTOI(vdp);
137 if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
140 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
151 if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
156 if (VOP_ISLOCKED(vdp) != LK_EXCLUSIVE)
190 (error = cd9660_blkatoff(vdp, (off_t)dp->i_offset, NULL,
208 error = cd9660_blkatoff(vdp, (off_t)dp->i_offset,
313 if ((error = cd9660_blkatoff(vdp,
    [all...]
cd9660_vfsops.c 397 struct iso_volume_descriptor *vdp; local
439 vdp = (struct iso_volume_descriptor *)bp->b_data;
440 if (memcmp(vdp->id, ISO_STANDARD_ID, sizeof(vdp->id)) != 0) {
445 switch (isonum_711(vdp->type)) {
464 if (isonum_711 (vdp->type) == ISO_VD_END) {
cd9660_vnops.c 396 struct vnode *vdp = ap->a_vp; local
410 if (vdp->v_type != VDIR)
413 dp = VTOI(vdp);
438 (error = cd9660_blkatoff(vdp, (off_t)idp->curroff, NULL, &bp))) {
453 error = cd9660_blkatoff(vdp, (off_t)idp->curroff,
  /src/sys/ufs/ext2fs/
ext2fs_lookup.c 282 struct vnode *vdp = ap->a_dvp; /* vnode for directory being searched */ local
283 struct inode *dp = VTOI(vdp); /* inode for directory being searched */
318 if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
321 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
332 if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
338 if (VOP_ISLOCKED(vdp) != LK_EXCLUSIVE)
374 bmask = vdp->v_mount->mnt_stat.f_iosize - 1;
383 (error = ext2fs_blkatoff(vdp, (off_t)results->ulr_offset, NULL, &bp)))
433 error = ext2fs_blkatoff(vdp, (off_t)results->ulr_offset,
460 ext2fs_dirbadentry(vdp, ep, entryoffsetinblock)))
754 struct vnode *vdp = ITOV(ip); local
1099 struct vnode *vdp = ITOV(dp); local
    [all...]
  /src/sys/ufs/ufs/
ufs_lookup.c 210 * Check if we can delete inode tdp in directory vdp with inode ip and creds.
213 ufs_can_delete(struct vnode *tdp, struct vnode *vdp, struct inode *ip,
228 error = VOP_ACCESS(vdp, VEXEC, cred);
239 error = VOP_ACCESSX(vdp, VDELETE_CHILD, cred);
243 error = VOP_ACCESSX(vdp, VEXPLICIT_DENY | VDELETE_CHILD, cred);
252 error = VOP_ACCESS(vdp, VWRITE, cred);
265 error = kauth_authorize_vnode(cred, KAUTH_VNODE_DELETE, tdp, vdp,
266 genfs_can_sticky(vdp, cred, ip->i_uid, VTOI(tdp)->i_uid));
278 ufs_getino(struct vnode *vdp, struct inode *ip, ino_t foundino,
284 vref(vdp);
333 struct vnode *vdp = ap->a_dvp; \/* vnode for directory being searched *\/ local
1264 struct vnode *vdp = ITOV(dp); local
    [all...]
  /src/sys/ufs/lfs/
ulfs_lookup.c 121 struct vnode *vdp = ap->a_dvp; /* vnode for directory being searched */ local
122 struct inode *dp = VTOI(vdp); /* inode for directory being searched */
167 if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
170 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
181 if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
190 if (VOP_ISLOCKED(vdp) != LK_EXCLUSIVE)
239 bmask = vdp->v_mount->mnt_stat.f_iosize - 1;
288 (error = ulfs_blkatoff(vdp, (off_t)results->ulr_offset,
308 error = ulfs_blkatoff(vdp, (off_t)results->ulr_offset,
333 (lfs_dirchk && ulfs_dirbadentry(vdp, ep, entryoffsetinblock)))
1101 struct vnode *vdp = ITOV(dp); local
    [all...]
  /src/sys/dev/usb/
if_umbreg.h 34 umb_val2descr(const struct umb_valdescr *vdp, int val)
38 while (vdp->descr != NULL) {
39 if (vdp->val == val)
40 return vdp->descr;
41 vdp++;
  /src/sys/arch/playstation2/ee/
gsreg.h 94 #define SYNCV(vs, vdp, vbpe, vbp, vfpe, vfp) \
96 ((u_int64_t)(vdp) << 42) | \
  /src/sys/fs/msdosfs/
msdosfs_lookup.c 103 struct vnode *vdp = ap->a_dvp; local
134 dp = VTODE(vdp);
138 printf("msdosfs_lookup(): vdp %p, dp %p, Attr %02x\n",
139 vdp, dp, dp->de_Attributes);
145 if ((error = VOP_ACCESS(vdp, VEXEC, cnp->cn_cred)) != 0)
148 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
159 if (cache_lookup(vdp, cnp->cn_nameptr, cnp->cn_namelen,
165 if (VOP_ISLOCKED(vdp) != LK_EXCLUSIVE)
173 if ((vdp->v_vflag & VV_ROOT) && cnp->cn_nameptr[0] == '.' &&
220 * Search the directory pointed at by vdp for the name pointed a
    [all...]
  /src/sys/fs/hfs/
hfs_vnops.c 318 struct vnode *vdp; /* vnode for directory being searched */ local
333 vdp = ap->a_dvp;
334 dp = VTOH(vdp);
348 if ((error = VOP_ACCESS(vdp, VEXEC, cred)) != 0)
351 if ((flags & ISLASTCN) && (vdp->v_mount->mnt_flag & MNT_RDONLY) &&
364 if ((error = cache_lookup(vdp, vpp, cnp)) >= 0)
371 *vpp = vdp;
372 vref(vdp);
379 error = hfs_vget_internal(vdp->v_mount, dp->h_parent,
389 vref(vdp); /* we want ourself, ie "." *
    [all...]
  /src/usr.bin/kdump/
kdump.c 1228 hexdump_buf(const void *vdp, int datalen, int word_sz)
1233 const unsigned char *dp = vdp;
1310 visdump_buf(const void *vdp, int datalen, int col)
1312 const unsigned char *dp = vdp;
  /src/sys/fs/udf/
ecma167-udf.h 820 struct vol_desc_ptr vdp; member in union:dscrptr

Completed in 25 milliseconds