Searched refs:rvp (Results 1 - 9 of 9) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/miscfs/fdesc/
H A Dfdesc_vfsops.c92 struct vnode *rvp; local
100 error = fdesc_allocvp(Froot, FD_ROOT, mp, &rvp, VDIR);
107 vnode_setnoflush(rvp);
108 vnode_ref(rvp);
109 vnode_put(rvp);
111 fmp->f_root = rvp;
134 struct vnode *rvp = VFSTOFDESC(mp)->f_root; local
141 if ( vnode_isinuse(rvp, 1) && !force )
143 if ( (error = vflush(mp, rvp, flags|SKIPSYSTEM)) && !force )
149 vnode_recycle(rvp);
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/hfs/
H A Dhfs_xattr.c274 struct vnode *rvp = NULL; local
287 result = hfs_vgetrsrc(hfsmp, vp, &rvp, TRUE);
293 *ap->a_size = (size_t)VTOF(rvp)->ff_size;
295 result = VNOP_READ(rvp, uio, 0, ap->a_context);
297 vnode_put(rvp);
600 struct vnode *rvp = NULL; local
623 result = hfs_vgetrsrc(hfsmp, vp, &rvp, TRUE);
629 result = VNOP_WRITE(rvp, uio, 0, ap->a_context);
630 vnode_put(rvp);
947 struct vnode *rvp local
[all...]
H A Dhfs_vnops.c392 struct vnode *rvp = NULLVP; local
525 error = hfs_vgetrsrc(hfsmp, vp, &rvp, TRUE);
529 rcp = VTOC(rvp);
705 if (rvp) {
706 vnode_put(rvp);
1793 struct vnode *rvp = cp->c_rsrc_vp; local
1811 // the rvp *after* we're done unlocking everything. Otherwise the
1818 if (error == 0 && (cp->c_flag & C_DELETED) && rvp && !vnode_isinuse(rvp, 0)) {
1819 rvid = vnode_vid(rvp);
1867 struct vnode *rvp = NULL; local
2281 struct vnode *rvp = NULLVP; local
3753 struct vnode *rvp; local
[all...]
H A Dhfs_cnode.c161 struct vnode *rvp = NULLVP; local
163 error = hfs_vgetrsrc(hfsmp, vp, &rvp, FALSE);
167 * Defer the vnode_put and ubc_setsize on rvp until hfs_unlock().
170 error = hfs_truncate(rvp, (off_t)0, IO_NDELAY, 1, ap->a_context);
173 vnode_recycle(rvp); /* all done with this vnode */
1181 vnode_t rvp = NULLVP; local
1202 rvp = cp->c_rsrc_vp;
1220 if (rvp) {
1222 ubc_setsize(rvp, 0);
1224 vnode_put(rvp);
[all...]
H A Dhfs.h637 int hfs_mountroot(mount_t mp, vnode_t rvp, vfs_context_t context);
H A Dhfs_vfsops.c156 hfs_mountroot(mount_t mp, vnode_t rvp, vfs_context_t context) argument
165 if ((error = hfs_mountfs(rvp, mp, NULL, 0, context)))
4683 struct vnode * rvp; local
4707 error = hfs_vgetrsrc(hfsmp, vp, &rvp, TRUE);
4710 error = hfs_relocate(rvp, hfsmp->hfs_metazone_end + 1, kauth_cred_get(), current_proc());
4711 VTOC(rvp)->c_flag |= C_NEED_RVNODE_PUT;
/macosx-10.5.8/xnu-1228.15.4/bsd/isofs/cd9660/
H A Dcd9660_vfsops.c163 cd9660_mountroot(mount_t mp, vnode_t rvp, vfs_context_t context) argument
173 if ((error = iso_mountfs(rvp, mp, &args, context)))
307 struct vnode *rvp = NULL; local
314 err = cd9660_root(isomp->im_mountp, &rvp, NULL);
328 err = VNOP_LOOKUP(rvp, &videovp, &cn, cn.cn_context);
338 vnode_put(rvp);
/macosx-10.5.8/xnu-1228.15.4/bsd/ufs/ffs/
H A Dffs_vfsops.c141 ffs_mountroot(mount_t mp, vnode_t rvp, vfs_context_t context) argument
149 if (error = ffs_mountfs(rvp, mp, context))
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_syscalls.c231 struct vnode *rvp; local
627 error = VFS_ROOT(mp, &rvp, ctx);
634 error = vnode_label(mp, NULL, rvp, NULL, 0, ctx);

Completed in 87 milliseconds