Home
last modified time | relevance | path

Searched refs:vfsconf (Results 1 – 14 of 14) sorted by relevance

/xnu-12377.41.6/bsd/vfs/
H A Dvfs_init.c340 for (vfsp = vfsconf, i = 0; i < maxvfsslots; i++, vfsp++) { in vfsinit()
341 struct vfsconf vfsc; in vfsinit()
346 vfsconf[i - 1].vfc_next = vfsp; in vfsinit()
352 bzero(&vfsc, sizeof(struct vfsconf)); in vfsinit()
516 if (vfsconf[slot].vfc_vfsops == NULL) { in vfstable_add()
530 slotp = &vfsconf[slot]; in vfstable_add()
542 slotp->vfc_next = vfsconf[slot - 1].vfc_next; in vfstable_add()
543 vfsconf[slot - 1].vfc_next = slotp; in vfstable_add()
599 for (vcpp = &vfsconf; *vcpp; vcpp = &(*vcpp)->vfc_next) { in vfstable_del()
623 if (vcdelp >= vfsconf && vcdelp < (vfsconf + maxvfsslots)) { /* Y */ in vfstable_del()
H A Dvfs_conf.c273 struct vfstable *vfsconf = vfstbllist; variable
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) {
5267 struct vfsconf vfsc = {};
5280 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) {
5300 return SYSCTL_OUT(req, &vfsc, sizeof(struct vfsconf));
H A Dkpi_vfs.c1160 struct vfsconf vfsc; in vfs_fsadd()
1161 bzero(&vfsc, sizeof(struct vfsconf)); in vfs_fsadd()
H A Dvfs_syscalls.c1306 for (vfsp = vfsconf; vfsp; vfsp = vfsp->vfc_next) { in mount_common()
/xnu-12377.41.6/bsd/miscfs/mockfs/
H A Dmockfs_vfsops.c52 int mockfs_init(__unused struct vfsconf * vfsc);
229 mockfs_init(__unused struct vfsconf * vfsc) in mockfs_init()
/xnu-12377.41.6/bsd/miscfs/bindfs/
H A Dbindfs.h129 int bindfs_init(struct vfsconf * vfsp);
H A Dbind_subr.c99 bindfs_init(__unused struct vfsconf * vfsp) in bindfs_init()
/xnu-12377.41.6/bsd/miscfs/nullfs/
H A Dnullfs.h139 int nullfs_init(struct vfsconf * vfsp);
H A Dnull_subr.c114 nullfs_init(__unused struct vfsconf * vfsp) in nullfs_init()
/xnu-12377.41.6/bsd/sys/
H A Dmount.h408 struct vfsconf { struct
720 int (*vfs_init)(struct vfsconf *vfsc);
1558 int getvfsbyname(const char *, struct vfsconf *);
H A Dmount_internal.h338 extern struct vfstable *vfsconf; /* head of list of filesystem types */
/xnu-12377.41.6/bsd/miscfs/routefs/
H A Droutefs_ops.c49 static int routefs_init(__unused struct vfsconf *vfsp);
76 routefs_init(__unused struct vfsconf *vfsp) in routefs_init()
/xnu-12377.41.6/bsd/miscfs/devfs/
H A Ddevfs_vfsops.c110 devfs_init(__unused struct vfsconf *vfsp) in devfs_init()