Home
last modified time | relevance | path

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

/xnu-8796.141.3/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.c342 vfsconf[i - 1].vfc_next = vfsp; in vfsinit()
534 slotp->vfc_next = vfsconf[slot - 1].vfc_next; in vfstable_add()
535 vfsconf[slot - 1].vfc_next = slotp; in vfstable_add()
537 slotp->vfc_next = NULL; in vfstable_add()
591 for (vcpp = &vfsconf; *vcpp; vcpp = &(*vcpp)->vfc_next) { in vfstable_del()
608 *vcpp = (*vcpp)->vfc_next; in vfstable_del()
H A Dvfs_subr.c1180 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in vfs_rootmountalloc()
1252 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in vfs_mountroot()
3971 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
5047 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
H A Dkpi_vfs.c986 newvfstbl->vfc_next = NULL; in vfs_fsadd()
H A Dvfs_syscalls.c1157 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in mount_common()
/xnu-8796.141.3/bsd/sys/
H A Dmount_internal.h313 struct vfstable *vfc_next; /* next in list */ member