Home
last modified time | relevance | path

Searched refs:VOFFSET (Results 1 – 6 of 6) sorted by relevance

/xnu-12377.41.6/bsd/miscfs/deadfs/
H A Ddead_vnops.c210 return VCALL(ap->a_vp, VOFFSET(vnop_ioctl), ap); in dead_ioctl()
255 return VOCALL(vp->v_op, VOFFSET(vnop_strategy), ap); in dead_strategy()
301 return VOCALL(vp->v_op, VOFFSET(vnop_bwrite), ap); in dead_bwrite()
/xnu-12377.41.6/bsd/vfs/
H A Dvfs_init.c233 if (opv_desc_vector[VOFFSET(vnop_default)] == NULL) { in vfs_opv_init()
239 opv_desc_vector[VOFFSET(vnop_default)]; in vfs_opv_init()
H A Dkpi_vfs.c1146 if (opv_desc_vector[VOFFSET(vnop_default)] == NULL) { in vfs_fsadd()
1152 opv_desc_vector[VOFFSET(vnop_default)]; in vfs_fsadd()
H A Dvfs_bio.c1731 error = VOCALL(devvp->v_op, VOFFSET(vnop_strategy), ap); in buf_strategy()
/xnu-12377.41.6/bsd/miscfs/devfs/
H A Ddevfs_vnops.c784 return VOCALL(spec_vnodeop_p, VOFFSET(vnop_close), ap); in devfsspec_close()
851 return VOCALL(spec_vnodeop_p, VOFFSET(vnop_read), ap); in devfsspec_read()
867 return VOCALL(spec_vnodeop_p, VOFFSET(vnop_write), ap); in devfsspec_write()
/xnu-12377.41.6/bsd/sys/
H A Dvnode_internal.h447 #define VOFFSET(OP) (VDESC(OP)->vdesc_offset) macro