Searched refs:dvp (Results 1 - 25 of 58) sorted by relevance

123

/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_lookup.c139 * Lookup *cnp in directory *dvp, return it in *vpp.
143 #% lookup dvp L ? ?
146 IN struct vnode *dvp - Parent node of file;
154 hfs_lookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, int *cnode_locked, int force_casesensitive_lookup) argument
173 hfsmp = VTOHFS(dvp);
193 if (hfs_lock(VTOC(dvp), HFS_EXCLUSIVE_LOCK, HFS_LOCK_DEFAULT) != 0) {
197 dcp = VTOC(dvp);
205 tsleep((caddr_t)dvp, PRIBIO, "hfs_lookup", 1);
304 cache_enter(dvp, NULL, cnp);
328 if ((retval = vnode_get(dvp)))
464 struct vnode *dvp = ap->a_dvp; local
[all...]
H A Dhfs_vnops.c87 int hfs_makenode(struct vnode *dvp, struct vnode **vpp,
211 struct vnode *dvp = ap->a_dvp; local
216 if (VTOVCB(dvp)->vcbSigWord != kHFSPlusSigWord) {
221 error = hfs_makenode(dvp, vpp, ap->a_cnp, vap, ap->a_context);
581 save_tombstone(struct hfsmount *hfsmp, struct vnode *dvp, struct vnode *vp, struct componentname *cnp, int for_unlink) argument
597 ut->t_lastop_parent = dvp;
598 ut->t_lastop_parent_vid = vnode_vid(dvp);
3213 struct vnode *dvp = ap->a_dvp; local
3215 struct cnode *dcp = VTOC(dvp);
3225 if (dvp
3280 hfs_removedir(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, int skip_reserve, int only_unlink) argument
3507 struct vnode *dvp = ap->a_dvp; local
3712 hfs_removefile(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, int flags, int skip_reserve, int allow_dirs, __unused struct vnode *rvp, int only_unlink) argument
5269 struct vnode *dvp = ap->a_dvp; local
6102 hfs_makenode(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx) argument
6619 struct vnode *dvp = NULLVP; local
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_cache.c161 static vnode_t cache_lookup_locked(vnode_t dvp, struct componentname *cnp);
165 static void cache_enter_locked(vnode_t dvp, vnode_t vp, struct componentname *cnp, const char *strname);
178 #define NCHHASH(dvp, hash_val) \
179 (&nchashtbl[(dvp->v_id ^ (hash_val)) & nchashmask])
366 vnode_t dvp; local
442 if ((ret = VFS_VGET(vp->v_mount, (ino64_t)va.va_parentid, &dvp, ctx)))
445 if (!fixhardlink && (vp->v_parent != dvp))
446 vnode_update_identity(vp, dvp, NULL, 0, 0, VNODE_UPDATE_PARENT);
450 vp = dvp;
637 * a reference on dvp, the
649 vnode_update_identity(vnode_t vp, vnode_t dvp, const char *name, int name_len, uint32_t name_hashval, int flags) argument
1404 cache_lookup_locked(vnode_t dvp, struct componentname *cnp) argument
1481 cache_lookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp) argument
1574 cache_enter_create(vnode_t dvp, vnode_t vp, struct componentname *cnp) argument
1607 cache_enter_with_gen(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, int gen) argument
1626 cache_enter(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
1648 cache_enter_locked(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, const char *strname) argument
[all...]
H A Dkpi_vfs.c135 static void xattrfile_remove(vnode_t dvp, const char *basename,
137 static void xattrfile_setattr(vnode_t dvp, const char * basename,
1821 vnode_setparent(vnode_t vp, vnode_t dvp) argument
1823 vp->v_parent = dvp;
2737 *#% lookup dvp L ? ?
2772 VNOP_LOOKUP(vnode_t dvp, vnode_t *vpp, struct componentname *cnp, vfs_context_t ctx) argument
2778 a.a_dvp = dvp;
2783 _err = (*dvp->v_op[vnop_lookup_desc.vdesc_offset])(&a);
2806 VNOP_COMPOUND_OPEN(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, int32_t fmode, uint32_t *statusp, struct vnode_attr *vap, vfs_context_t ctx) argument
2818 a.a_dvp = dvp;
2893 VNOP_CREATE(vnode_t dvp, vnode_t * vpp, struct componentname * cnp, struct vnode_attr * vap, vfs_context_t ctx) argument
2941 VNOP_WHITEOUT(__unused vnode_t dvp, __unused struct componentname *cnp, __unused int flags, __unused vfs_context_t ctx) argument
2964 VNOP_MKNOD(vnode_t dvp, vnode_t * vpp, struct componentname * cnp, struct vnode_attr * vap, vfs_context_t ctx) argument
3165 vnode_t dvp; local
3571 VNOP_REMOVE(vnode_t dvp, vnode_t vp, struct componentname * cnp, int flags, vfs_context_t ctx) argument
3605 VNOP_COMPOUND_REMOVE(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, struct vnode_attr *vap, vfs_context_t ctx) argument
4143 vn_mkdir(struct vnode *dvp, struct vnode **vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx) argument
4174 VNOP_MKDIR(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx) argument
4206 VNOP_COMPOUND_MKDIR(struct vnode *dvp, struct vnode **vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx) argument
4249 vn_rmdir(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx) argument
4281 VNOP_RMDIR(struct vnode *dvp, struct vnode *vp, struct componentname *cnp, vfs_context_t ctx) argument
4315 VNOP_COMPOUND_RMDIR(struct vnode *dvp, struct vnode **vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx) argument
4372 xattrfile_remove(vnode_t dvp, const char * basename, vfs_context_t ctx, int force) argument
4450 xattrfile_setattr(vnode_t dvp, const char * basename, struct vnode_attr * vap, vfs_context_t ctx) argument
4518 VNOP_SYMLINK(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp, struct vnode_attr *vap, char *target, vfs_context_t ctx) argument
5028 vn_remove(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, struct vnode_attr *vap, vfs_context_t ctx) argument
[all...]
H A Dvfs_vnops.c215 vnode_t dvp = ndp->ni_dvp; local
229 if ((error = vn_authorize_create(dvp, &ndp->ni_cnd, vap, ctx, NULL)) != 0)
231 if ((error = vnode_makenamedstream(dvp, &ndp->ni_vp, XATTR_RESOURCEFORK_NAME, 0, ctx)) != 0)
237 if ((error = vn_authorize_create(dvp, &ndp->ni_cnd, vap, ctx, NULL)) != 0)
241 error = vn_create(dvp, &ndp->ni_vp, ndp, vap, VN_CREATE_DOOPEN, fmode, &status, ctx);
261 * Do NOT drop the dvp: we need everything to continue the lookup.
289 vnode_update_identity(vp, dvp, ndp->ni_cnd.cn_nameptr, ndp->ni_cnd.cn_namelen, ndp->ni_cnd.cn_hash, update_flags);
291 vnode_put(dvp);
304 vnode_put(dvp);
360 struct vnode *dvp; local
[all...]
H A Dvfs_xattr.c520 vnode_t dvp; local
552 err = get_shadow_dir(&dvp);
557 (void) VNOP_REMOVE(dvp, svp, &cn, 0, kernelctx);
558 vnode_put(dvp);
726 vnode_t dvp = NULLVP; local
770 if (get_shadow_dir(&dvp) != 0) {
776 if (VNOP_LOOKUP(dvp, &svp, &cn, kernelctx) == 0) {
816 error = VNOP_CREATE(dvp, &svp, &cn, &va, kernelctx);
822 error = VNOP_LOOKUP(dvp, &svp, &cn, kernelctx);
833 if (dvp) {
1078 vnode_t dvp = NULLVP; local
2412 vnode_t dvp = NULLVP; local
2655 vnode_t dvp; local
[all...]
H A Dvfs_lookup.c118 static void lookup_consider_update_cache(vnode_t dvp, vnode_t vp, struct componentname *cnp, int nc_generation);
484 lookup_consider_update_cache(vnode_t dvp, vnode_t vp, struct componentname *cnp, int nc_generation) argument
495 if (dvp != NULLVP && vp->v_parent == NULLVP)
499 vnode_update_identity(vp, dvp, cnp->cn_nameptr, cnp->cn_namelen, cnp->cn_hash, update_flags);
516 if (dvp != NULLVP && (nc_generation == dvp->v_nc_generation) && (!isdot_or_dotdot))
517 cache_enter_with_gen(dvp, vp, cnp, nc_generation);
715 * Definitely have a dvp if there's another slash
746 /* If SAVESTART is set, we should have a dvp */
1061 * will be doing a batched operation. Return an iocount on dvp
1219 lookup_traverse_union(vnode_t dvp, vnode_t *new_dvp, vfs_context_t ctx) argument
1519 relookup(struct vnode *dvp, struct vnode **vpp, struct componentname *cnp) argument
1842 lookup_compound_vnop_post_hook(int error, vnode_t dvp, vnode_t vp, struct nameidata *ndp, int did_create) argument
[all...]
H A Dvfs_subr.c222 static int vn_create_reg(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp,
224 static int vnode_authattr_new_internal(vnode_t dvp, struct vnode_attr *vap, int noauth, uint32_t *defaulted_fieldsp, vfs_context_t ctx);
4651 vnode_t dvp; local
4687 dvp = param->vnfs_dvp;
4826 if (dvp && vnode_ref(dvp) == 0) {
4827 vp->v_parent = dvp;
4830 if (dvp && ((param->vnfs_flags & (VNFS_NOCACHE | VNFS_CANTCACHE)) == 0)) {
4837 vp->v_name = cache_enter_create(dvp, vp, cnp);
5318 vn_create_reg(vnode_t dvp, vnode_ argument
5371 vn_create(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, struct vnode_attr *vap, uint32_t flags, int fmode, uint32_t *statusp, vfs_context_t ctx) argument
5489 vnode_t dvp; member in struct:_vnode_authorize_context
5511 vn_attribute_prepare(vnode_t dvp, struct vnode_attr *vap, uint32_t *defaulted_fieldsp, vfs_context_t ctx) argument
5595 vn_authorize_unlink(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, __unused void *reserved) argument
5718 vn_authorize_create(vnode_t dvp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx, void *reserved) argument
5879 vn_authorize_mkdir(vnode_t dvp, struct componentname *cnp, struct vnode_attr *vap, vfs_context_t ctx, void *reserved) argument
5917 vn_authorize_rmdir(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, void *reserved) argument
5971 vnode_authorize(vnode_t vp, vnode_t dvp, kauth_action_t action, vfs_context_t ctx) argument
6906 vnode_t vp, dvp; local
7001 vnode_t vp, dvp; local
7275 vnode_authattr_new(vnode_t dvp, struct vnode_attr *vap, int noauth, vfs_context_t ctx) argument
7285 vnode_authattr_new_internal(vnode_t dvp, struct vnode_attr *vap, int noauth, uint32_t *defaulted_fieldsp, vfs_context_t ctx) argument
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/miscfs/mockfs/
H A Dmockfs_vnops.c91 vnode_t dvp; local
97 dvp = ap->a_dvp;
102 fsnode = (mockfs_fsnode_t) dvp->v_data;
271 vnode_t dvp; local
278 dvp = vfs_devvp(buf_vnode(ap->a_bp)->v_mount);
280 if (dvp) {
281 rvalue = buf_strategy(dvp, ap);
282 vnode_put(dvp);
/macosx-10.10/xnu-2782.1.97/security/
H A Dmac_vfs.c364 struct vnode *dvp, struct vnode *vp, struct componentname *cnp)
375 dvp, dvp->v_label, vp, vp->v_label, cnp);
382 struct vnode *dvp, struct componentname *cnp)
392 dvp, dvp->v_label, cnp);
410 struct vnode *dvp, struct componentname *cnp)
419 MAC_PERFORM(vnode_notify_link, cred, dvp, dvp->v_label, vp, vp->v_label, cnp);
609 mac_vnode_check_chdir(vfs_context_t ctx, struct vnode *dvp) argument
363 mac_vnode_notify_create(vfs_context_t ctx, struct mount *mp, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
381 mac_vnode_notify_rename(vfs_context_t ctx, struct vnode *vp, struct vnode *dvp, struct componentname *cnp) argument
409 mac_vnode_notify_link(vfs_context_t ctx, struct vnode *vp, struct vnode *dvp, struct componentname *cnp) argument
624 mac_vnode_check_chroot(vfs_context_t ctx, struct vnode *dvp, struct componentname *cnp) argument
640 mac_vnode_check_create(vfs_context_t ctx, struct vnode *dvp, struct componentname *cnp, struct vnode_attr *vap) argument
656 mac_vnode_check_unlink(vfs_context_t ctx, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
921 mac_vnode_check_link(vfs_context_t ctx, struct vnode *dvp, struct vnode *vp, struct componentname *cnp) argument
953 mac_vnode_check_lookup(vfs_context_t ctx, struct vnode *dvp, struct componentname *cnp) argument
1002 mac_vnode_check_readdir(vfs_context_t ctx, struct vnode *dvp) argument
1049 mac_vnode_check_rename(vfs_context_t ctx, struct vnode *dvp, struct vnode *vp, struct componentname *cnp, struct vnode *tdvp, struct vnode *tvp, struct componentname *tcnp) argument
1290 mac_vnode_check_uipc_bind(vfs_context_t ctx, struct vnode *dvp, struct componentname *cnp, struct vnode_attr *vap) argument
[all...]
H A Dmac_vfs_subr.c45 vnode_label(struct mount *mp, struct vnode *dvp, struct vnode *vp, argument
57 mp, dvp, vp, cnp);
88 mp, dvp, vp, cnp);
H A Dmac_framework.h465 int mac_vnode_check_chdir(vfs_context_t ctx, struct vnode *dvp);
466 int mac_vnode_check_chroot(vfs_context_t ctx, struct vnode *dvp,
468 int mac_vnode_check_create(vfs_context_t ctx, struct vnode *dvp,
490 int mac_vnode_check_link(vfs_context_t ctx, struct vnode *dvp,
493 int mac_vnode_check_lookup(vfs_context_t ctx, struct vnode *dvp,
501 int mac_vnode_check_rename(vfs_context_t ctx, struct vnode *dvp,
525 int mac_vnode_check_uipc_bind(vfs_context_t ctx, struct vnode *dvp,
528 int mac_vnode_check_unlink(vfs_context_t ctx, struct vnode *dvp,
554 struct vnode *dvp, struct vnode *vp, struct componentname *cnp);
556 struct vnode *dvp, struc
[all...]
/macosx-10.10/dtrace-147/libdtrace/
H A Ddt_as.c93 dtrace_difv_t *dvp; local
100 dvp = &pcb->pcb_difo->dtdo_vartab[pcb->pcb_asvidx++];
108 dvp->dtdv_name = (uint_t)stroff;
109 dvp->dtdv_id = idp->di_id;
110 dvp->dtdv_flags = 0;
112 dvp->dtdv_kind = (idp->di_kind == DT_IDENT_ARRAY) ?
116 dvp->dtdv_scope = DIFV_SCOPE_LOCAL;
118 dvp->dtdv_scope = DIFV_SCOPE_THREAD;
120 dvp->dtdv_scope = DIFV_SCOPE_GLOBAL;
123 dvp
[all...]
H A Ddt_dis.c101 const dtrace_difv_t *dvp = dp->dtdo_vartab; local
104 for (i = 0; i < dp->dtdo_varlen; i++, dvp++) {
105 if (dvp->dtdv_id == id && dvp->dtdv_scope == scope) {
106 if (dvp->dtdv_name < dp->dtdo_strlen)
107 return (dp->dtdo_strtab + dvp->dtdv_name);
/macosx-10.10/webdavfs-367/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav_vnops.c821 vnode_t dvp, /* parent vnode */
881 cache_enter(dvp, vp, cnp);
889 new_pt->pt_parent = dvp;
907 vfsp.vnfs_dvp = dvp;
915 vfsp.vnfs_flags = (dvp && cnp && (cnp->cn_flags & MAKEENTRY)) ? 0 : VNFS_NOCACHE;
973 vnode_t dvp; local
992 dvp = ap->a_dvp;
996 fmp = VFSTOWEBDAV(vnode_mount(dvp));
997 pt_dvp = VTOWEBDAV(dvp);
1027 else if ( !vnode_isdir(dvp) )
819 webdav_get( struct mount *mp, vnode_t dvp, int markroot, struct componentname *cnp, opaque_id obj_id, webdav_ino_t obj_fileid, enum vtype obj_vtype, struct webdav_timespec64 obj_atime, struct webdav_timespec64 obj_mtime, struct webdav_timespec64 obj_ctime, struct webdav_timespec64 obj_createtime, off_t obj_filesize, vnode_t *vpp) argument
2723 vnode_t dvp; local
2847 vnode_t dvp; local
2949 vnode_t dvp = ap->a_dvp; local
3252 vnode_t dvp = ap->a_dvp; local
[all...]
/macosx-10.10/autofs-246/autofs_kext/
H A Dauto_vnops.c295 vnode_t dvp = ap->a_dvp; local
317 dfnip = vfstofni(vnode_mount(dvp));
318 AUTOFS_DPRINT((3, "auto_lookup: dvp=%p (%s) name=%.*s\n",
319 (void *)dvp, dfnip->fi_map, namelen, cnp->cn_nameptr));
322 if (!vnode_isdir(dvp))
329 error = vnode_get(dvp);
332 *vpp = dvp;
351 error = vnode_get(dvp);
354 *vpp = dvp;
359 pdfnp = (vntofn(dvp))
[all...]
H A Dauto_subr.c1191 vnode_t dvp; local
1202 * XXX - this will hold an iocount on dvp; will that block any
1208 dvp = vfs_vnodecovered(mp);
1318 vnode_put(dvp);
1549 vnode_t dvp; local
1608 dvp = fntovn(dfnp);
1609 if (vnode_ismonitored(dvp) && auto_nobrowse(dvp)) {
1611 auto_get_attributes(dvp, &vattr);
1612 vnode_notify(dvp, VNODE_EVENT_WRIT
1789 vnode_t dvp; local
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dvnode_internal.h430 errno_t vn_remove(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, int32_t flags, struct vnode_attr *vap, vfs_context_t ctx);
447 int vn_attribute_prepare(vnode_t dvp, struct vnode_attr *vap, uint32_t *defaulted_fieldsp, vfs_context_t ctx);
449 int vn_authorize_unlink(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, void *reserved);
453 int vn_authorize_rmdir(vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t ctx, void *reserved);
466 int vn_mkdir(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx);
467 int vn_rmdir(vnode_t dvp, vnode_t *vpp, struct nameidata *ndp, struct vnode_attr *vap, vfs_context_t ctx);
489 void cache_enter_with_gen(vnode_t dvp, vnode_t vp, struct componentname *cnp, int gen);
490 const char *cache_enter_create(vnode_t dvp, vnode_t vp, struct componentname *cnp);
H A Dnamei.h257 int relookup(struct vnode *dvp, struct vnode **vpp,
259 int lookup_traverse_union(vnode_t dvp, vnode_t *new_dvp, vfs_context_t ctx);
260 void lookup_compound_vnop_post_hook(int error, vnode_t dvp, vnode_t vp, struct nameidata *ndp, int did_create);
/macosx-10.10/smb-759.0/kernel/smbfs/
H A Dsmbfs_vnops.c651 smbfs_create_open(struct smb_share *share, vnode_t dvp, struct componentname *cnp, argument
656 struct smbnode *dnp = VTOSMB(dvp);
657 struct smbmount *smp = VTOSMBFS(dvp);
736 error = smbfs_nget(share, vnode_mount(dvp),
737 dvp, name, nmlen,
863 cache_purge_negatives(dvp);
1372 vnode_t dvp = ap->a_dvp; local
1447 share = smb_get_share_with_reference(VTOSMBFS(dvp));
1458 vid = vnode_vid(dvp);
1459 error = vnode_getwithvid(dvp, vi
2064 vnode_t dvp; local
3901 vnode_t dvp = ap->a_dvp; local
4025 vnode_t dvp = ap->a_dvp; local
4053 smbfs_remove(struct smb_share *share, vnode_t dvp, vnode_t vp, struct componentname *cnp, int flags, vfs_context_t context) argument
4208 vnode_t dvp = ap->a_dvp; local
4240 smbfs_rmdir(struct smb_share *share, vnode_t dvp, vnode_t vp, struct componentname *cnp, vfs_context_t context) argument
4333 vnode_t dvp = ap->a_dvp; local
4939 vnode_t dvp = ap->a_dvp; local
5072 vnode_t dvp = ap->a_dvp; local
6086 vnode_t dvp = ap->a_dvp; local
9264 struct vnode *dvp = ap->a_vp; local
[all...]
H A Dsmbfs_io.c170 smbfs_readvdir(vnode_t dvp, uio_t uio, vfs_context_t context, int flags, argument
173 struct smbnode *dnp = VTOSMB(dvp);
189 share = smb_get_share_with_reference(VTOSMBFS(dvp));
290 error = smbfs_nget(ctx->f_share, vnode_mount(dvp),
291 dvp, ctx->f_LocalName, ctx->f_LocalNameLen,
320 smbfs_update_name_par(ctx->f_share, dvp, vp,
H A Dsmbfs_node.c717 vnode_t dvp, const char *name, size_t nmlen,
734 * (1) dvp can be NULL
746 /* dvp is only required if we are possibly creating the vnode */
747 if (smp->sm_rvp != NULL && dvp == NULL) {
760 dnp = dvp ? VTOSMB(dvp) : NULL;
761 if (dnp == NULL && dvp != NULL) {
818 if (dvp && (cnp.cn_flags & MAKEENTRY)) {
819 cache_enter(dvp, *vpp, &cnp);
899 if (dvp) {
716 smbfs_nget(struct smb_share *share, struct mount *mp, vnode_t dvp, const char *name, size_t nmlen, struct smbfattr *fap, vnode_t *vpp, uint32_t cnflags, uint32_t flags, vfs_context_t context) argument
2306 smbfs_update_name_par(struct smb_share *share, vnode_t dvp, vnode_t vp, struct timespec *reqtime, const char *new_name, size_t name_len) argument
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dderef.c190 LDAPDerefVal **dvp; local
194 dvp = &dr->attrVals;
216 *dvp = dv;
217 dvp = &dv->next;
/macosx-10.10/xnu-2782.1.97/bsd/nfs/
H A Dnfs_serv.c164 extern int safe_getpath(struct vnode *dvp, char *leafname, char *path, int _len, int *truncated_path);
1818 vnode_t vp, dvp, dirp; local
1831 vp = dvp = dirp = NULL;
1874 dvp = ni.ni_dvp;
1930 error = nfsrv_authorize(dvp, NULL, KAUTH_VNODE_ADD_FILE, ctx, nxo, 0);
1934 error = kauth_acl_inherit(dvp,
1955 error = vnode_authattr_new(dvp, vap, 0, ctx);
1960 error = VNOP_CREATE(dvp, &vp, &ni.ni_cnd, vap, ctx);
2003 error = VNOP_MKNOD(dvp, &vp, &ni.ni_cnd, vap, ctx);
2021 ni.ni_startdir = dvp;
2149 vnode_t vp, dvp, dirp; local
2381 vnode_t vp, dvp, dirp = NULL; local
3128 vnode_t vp, xp, dvp, dirp; local
3289 vnode_t vp, dvp, dirp; local
3508 vnode_t vp, dvp, dirp; local
3720 vnode_t vp, dvp, dirp; local
4808 nfsrv_authorize( vnode_t vp, vnode_t dvp, kauth_action_t action, vfs_context_t ctx, struct nfs_export_options *nxo, int override) argument
[all...]
/macosx-10.10/msdosfs-209.1.1/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_denode.c267 * dvp - parent directory
275 vnode_t dvp, /* parent directory */
310 if (dvp && cnp && (cnp->cn_flags & MAKEENTRY) && (dep->de_flag & DE_ROOT) == 0)
311 cache_enter(dvp, DETOV(dep), cnp);
312 if (dep->de_parent == NULL && dvp != NULLVP && (dep->de_flag & DE_ROOT) == 0)
315 dep->de_parent = VTODE(dvp);
481 dep->de_parent = (dvp != NULLVP) ? VTODE(dvp) : NULL;
489 vfsp.vnfs_dvp = dvp;
495 if (dvp
271 msdosfs_deget( struct msdosfsmount *pmp, uint32_t dirclust, uint32_t diroffset, vnode_t dvp, struct componentname *cnp, struct denode **depp, vfs_context_t context) argument
[all...]

Completed in 534 milliseconds

123