Searched refs:fromnd (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/xnu-2422.115.4/bsd/vfs/
H A Dkpi_vfs.c3718 struct nameidata *fromnd = NULL; local
3780 MALLOC(fromnd, struct nameidata *, sizeof (struct nameidata), M_TEMP, M_WAITOK);
3781 NDINIT(fromnd, RENAME, OP_RENAME, NOFOLLOW | USEDVP | CN_NBMOUNTLOOK,
3783 fromnd->ni_dvp = fdvp;
3784 error = namei(fromnd);
3792 if (fromnd->ni_vp) {
3794 src_attr_vp = fromnd->ni_vp;
3796 if (fromnd->ni_vp->v_type != VREG) {
3798 vnode_put(fromnd->ni_vp);
3807 nameidone(fromnd);
[all...]
H A Dvfs_syscalls.c5928 struct nameidata fromnd, tond; local
5938 NDINIT(&fromnd, LOOKUP, OP_COPYFILE, SAVESTART | AUDITVNPATH1,
5940 if ((error = namei(&fromnd)))
5942 fvp = fromnd.ni_vp;
5993 if (fromnd.ni_startdir)
5994 vnode_put(fromnd.ni_startdir);
5995 nameidone(&fromnd);
6013 struct nameidata *fromnd, *tond; local
6038 fromnd = &__rename_data->from_node;
6049 NDINIT(fromnd, DELET
[all...]

Completed in 203 milliseconds