Home
last modified time | relevance | path

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

/xnu-8792.61.2/bsd/vfs/
H A Dvfs_conf.c131 .vfc_next = NULL,
147 .vfc_next = NULL,
169 .vfc_next = NULL,
187 .vfc_next = NULL,
206 .vfc_next = NULL,
225 .vfc_next = NULL,
242 .vfc_next = NULL,
257 .vfc_next = NULL,
H A Dvfs_init.c338 vfsconf[i - 1].vfc_next = vfsp; in vfsinit()
530 slotp->vfc_next = vfsconf[slot - 1].vfc_next; in vfstable_add()
531 vfsconf[slot - 1].vfc_next = slotp; in vfstable_add()
533 slotp->vfc_next = NULL; in vfstable_add()
587 for (vcpp = &vfsconf; *vcpp; vcpp = &(*vcpp)->vfc_next) { in vfstable_del()
604 *vcpp = (*vcpp)->vfc_next; in vfstable_del()
H A Dvfs_subr.c1148 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in vfs_rootmountalloc()
1220 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in vfs_mountroot()
3938 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
5014 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
H A Dkpi_vfs.c986 newvfstbl->vfc_next = NULL; in vfs_fsadd()
H A Dvfs_syscalls.c1151 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in mount_common()
/xnu-8792.61.2/bsd/sys/
H A Dmount_internal.h313 struct vfstable *vfc_next; /* next in list */ member