Home
last modified time | relevance | path

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

/xnu-12377.41.6/bsd/vfs/
H A Dvfs_conf.c130 .vfc_next = NULL,
146 .vfc_next = NULL,
168 .vfc_next = NULL,
186 .vfc_next = NULL,
205 .vfc_next = NULL,
224 .vfc_next = NULL,
241 .vfc_next = NULL,
256 .vfc_next = NULL,
H A Dvfs_init.c346 vfsconf[i - 1].vfc_next = vfsp; in vfsinit()
542 slotp->vfc_next = vfsconf[slot - 1].vfc_next; in vfstable_add()
543 vfsconf[slot - 1].vfc_next = slotp; in vfstable_add()
545 slotp->vfc_next = NULL; in vfstable_add()
599 for (vcpp = &vfsconf; *vcpp; vcpp = &(*vcpp)->vfc_next) { in vfstable_del()
616 *vcpp = (*vcpp)->vfc_next; in vfstable_del()
H A Dvfs_subr.c1173 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in vfs_rootmountalloc()
1245 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in vfs_mountroot()
4126 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
5280 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
H A Dkpi_vfs.c1026 newvfstbl->vfc_next = NULL; in vfs_fsadd()
H A Dvfs_syscalls.c1306 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in mount_common()
/xnu-12377.41.6/bsd/sys/
H A Dmount_internal.h314 struct vfstable *vfc_next; /* next in list */ member