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

/macosx-10.10/Libc-1044.1.2/gdtoa/FreeBSD/
H A Dgdtoa-strtoIg.c36 strtoIg(s00, se, fpi, exp, B, rvp) CONST char *s00; char **se; FPI *fpi; Long *exp; Bigint **B; int *rvp;
38 strtoIg(CONST char *s00, char **se, FPI *fpi, Long *exp, Bigint **B, int *rvp)
50 return *rvp = rv;
123 rvp[0] = rv1;
124 rvp[1] = rv;
131 rvp[0] = rv;
132 rvp[1] = rv1;
/macosx-10.10/xnu-2782.1.97/bsd/miscfs/mockfs/
H A Dmockfs_vfsops.c46 int mockfs_mountroot(mount_t mp, vnode_t rvp, __unused vfs_context_t ctx);
58 * Given a mount (mp) and a vnode for the root device (rvp), builds a fake filesystem for rvp. This consists
66 int mockfs_mountroot(mount_t mp, vnode_t rvp, __unused vfs_context_t ctx) argument
95 * If rvp is a memory device (with a few caveats), we can point to the same physical memory as the device
101 if (!VNOP_IOCTL(rvp, DKIOCGETMEMDEVINFO, (caddr_t)&memdev_info, 0, NULL)) {
/macosx-10.10/xnu-2782.1.97/bsd/hfs/
H A Dhfs_xattr.c324 struct vnode *rvp = NULL; local
345 result = hfs_vgetrsrc(hfsmp, vp, &rvp);
351 *ap->a_size = (size_t)VTOF(rvp)->ff_size;
358 result = VNOP_READ(rvp, uio, 0, ap->a_context);
376 result = VNOP_READ(rvp, uio, 0, decmpfs_ctx);
383 vref = vnode_ref (rvp);
385 vnode_rele (rvp);
387 vnode_recycle(rvp);
389 vnode_put(rvp);
866 struct vnode *rvp local
1361 struct vnode *rvp = NULL; local
[all...]
H A Dhfs_vnops.c878 struct vnode *rvp = NULLVP; local
1129 error = hfs_vgetrsrc(hfsmp, vp, &rvp);
1144 rcp = VTOC(rvp);
1377 if (rvp) {
1378 vnode_put (rvp);
1936 vnode_t rvp = cp->c_rsrc_vp; local
1938 if (!rvp) {
1943 int vid = vnode_vid(rvp);
1947 int error = vnode_getwithvid(rvp, vid);
1954 hfs_filedone(rvp, ct
3511 struct vnode *rvp = NULL; 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
6618 struct vnode *rvp; local
[all...]
H A Dhfs_cnode.c2200 vnode_t rvp = NULLVP; local
2240 rvp = cp->c_rsrc_vp;
2271 if (rvp) {
2273 ubc_setsize(rvp, VTOF(rvp)->ff_size);
2275 vnode_put(rvp);
2448 vnode_t vp = NULL, rvp = NULL; local
2468 rvp = cp->c_rsrc_vp;
2491 if (rvp)
2492 vnode_put(rvp);
[all...]
H A Dhfs_resize.c3085 struct vnode *rvp; local
3185 rvp = vp;
3187 error = hfs_vgetrsrc(hfsmp, vp, &rvp);
3189 printf ("hfs_reclaimspace: Error looking up rvp for fileid=%u (error=%d)\n", filerec.fileID, error);
3194 VTOC(rvp)->c_flag |= C_NEED_RVNODE_PUT;
3197 error = hfs_reclaim_file(hfsmp, rvp, filerec.fileID,
H A Dhfs_vfsops.c180 hfs_mountroot(mount_t mp, vnode_t rvp, vfs_context_t context) argument
187 if ((error = hfs_mountfs(rvp, mp, NULL, 0, context))) {
189 printf("hfs_mountroot: hfs_mountfs returned %d, rvp (%p) name (%s) \n",
190 error, rvp, (rvp->v_name ? rvp->v_name : "unknown device"));
212 error = VNOP_IOCTL(rvp, _DKIOCCORESTORAGE, NULL, 0, context);
H A Dhfs_vfsutils.c3608 struct vnode *rvp; local
3612 error = VFS_ROOT(HFSTOVFS(hfsmp), &rvp, vfs_context_kernel());
3617 cp = VTOC(rvp);
3645 vnode_put(rvp);
3646 rvp = NULL;
H A Dhfs.h745 int hfs_mountroot(mount_t mp, vnode_t rvp, vfs_context_t context);
/macosx-10.10/webdavfs-367/webdav_fs.kextproj/webdav_fs.kmodproj/
H A Dwebdav_vfsops.c214 vnode_t rvp; local
378 args.pa_root_id, args.pa_root_fileid, VDIR, wts, wts, wts, wts, fmp->pm_dir_size, &rvp);
385 webdav_unlock(VTOWEBDAV(rvp));
387 /* hold on to rvp until unmount */
388 error = vnode_ref(rvp);
389 (void) vnode_put(rvp);
395 fmp->pm_root = rvp;
/macosx-10.10/autofs-246/autofs_kext/
H A Dauto_vfsops.c803 vnode_t rvp; local
822 rvp = fnip->fi_rootvp;
823 rfnp = vntofn(rvp);
892 error = vflush(mp, rvp, 0);
902 if (vnode_isinuse(rvp, 1) || rfnp->fn_dirents != NULL) {
922 * A check here is made to see if rvp is busy. If
926 if (vnode_isinuse(rvp, 1) || rfnp->fn_dirents != NULL) {
955 assert(vnode_isinuse(rvp, 0) && !vnode_isinuse(rvp, 1));
974 vnode_rele(rvp); /* releas
[all...]
/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_sysctl.c2005 vnode_t rvp, devvp; local
2015 rvp = imgsrc_rootvnodes[i];
2016 if (rvp == NULLVP) {
2020 error = vnode_get(rvp);
2028 devvp = vnode_mount(rvp)->mnt_devvp;
2030 vnode_put(rvp);
2036 vnode_put(rvp);
2049 vnode_put(rvp);
/macosx-10.10/xnu-2782.1.97/bsd/vfs/
H A Dvfs_syscalls.c488 struct vnode *rvp; local
868 error = VFS_ROOT(mp, &rvp, ctx);
873 error = vnode_label(mp, NULL, rvp, NULL, 0, ctx);
877 vnode_put(rvp);
1363 vnode_t rvp; local
1431 error = get_imgsrc_rootvnode(height, &rvp);
1442 mp = vnode_mount(rvp);
1534 vnode_put(rvp);
1564 vnode_put(rvp);
H A Dvfs_subr.c9018 vnode_t rvp, vp; local
9033 res = VFS_ROOT(mp, &rvp, ctx);
9042 nd.ni_dvp = rvp;
9045 vnode_put(rvp);
9051 vnode_put(rvp);
/macosx-10.10/ruby-106/ruby/
H A Dutil.c1895 hexnan(double *rvp, const char **sp) argument
1936 word0(*rvp) = Exp_mask | x[0];
1937 word1(*rvp) = x[1];
/macosx-10.10/emacs-93/emacs/leim/CXTERM-DIC/
H A DARRAY30.tit7349 rvp\040 �� # ---> 4^4v0^ 0

Completed in 466 milliseconds