Home
last modified time | relevance | path

Searched refs:vnio (Results 1 – 2 of 2) sorted by relevance

/xnu-8020.101.4/bsd/vfs/
H A Dvfs_vnops.c2160 vniodesc_t vnio; in vnio_openfd() local
2165 vnio = kalloc_type(struct vniodesc, Z_WAITOK); in vnio_openfd()
2193 vnio->vnio_vnode = vp; in vnio_openfd()
2194 vnio->vnio_fflags = fp->fp_glob->fg_flag; in vnio_openfd()
2199 error = vnode_ref_ext(vp, vnio->vnio_fflags, 0); in vnio_openfd()
2201 *vniop = vnio; in vnio_openfd()
2202 vnio = NULL; in vnio_openfd()
2211 if (vnio != NULL) { in vnio_openfd()
2212 kfree_type(struct vniodesc, vnio); in vnio_openfd()
2218 vnio_close(vniodesc_t vnio) in vnio_close() argument
[all …]
/xnu-8020.101.4/bsd/dev/vn/
H A Dvn.c1249 struct vn_ioctl_64 vnio; in vndevice_root_image() local
1251 vnio.vn_file = CAST_USER_ADDR_T(path); in vndevice_root_image()
1252 vnio.vn_size = 0; in vndevice_root_image()
1258 error = vniocattach_file(vn, &vnio, *dev_p, 1, current_proc()); in vndevice_root_image()