Searched refs:vfstable (Results 1 – 7 of 7) sorted by relevance
| /xnu-12377.41.6/bsd/vfs/ |
| H A D | vfs_init.c | 313 struct vfstable *vfsp; in vfsinit() 493 struct vfstable * 494 vfstable_add(struct vfstable *nvfsp) in vfstable_add() 497 struct vfstable *slotp, *allocated = NULL; in vfstable_add() 524 allocated = kalloc_type(struct vfstable, Z_WAITOK); in vfstable_add() 540 bcopy(nvfsp, slotp, sizeof(struct vfstable)); in vfstable_add() 565 kfree_type(struct vfstable, allocated); in vfstable_add() 585 vfstable_del(struct vfstable * vtbl) in vfstable_del() 587 struct vfstable **vcpp; in vfstable_del() 588 struct vfstable *vcdelp; in vfstable_del() [all …]
|
| H A D | vfs_conf.c | 119 static struct vfstable vfstbllist[] = { 269 const int maxvfsslots = sizeof(vfstbllist) / sizeof(struct vfstable); 273 struct vfstable *vfsconf = vfstbllist;
|
| H A D | kpi_vfs.c | 959 struct vfstable *newvfstbl = NULL; in vfs_fsadd() 988 newvfstbl = kalloc_type(struct vfstable, Z_WAITOK | Z_ZERO); in vfs_fsadd() 1173 kfree_type(struct vfstable, newvfstbl); in vfs_fsadd() 1186 struct vfstable * vfstbl = (struct vfstable *)handle; in vfs_fsremove()
|
| H A D | vfs_subr.c | 1118 vfs_rootmountalloc_internal(struct vfstable *vfsp, const char *devname) in vfs_rootmountalloc_internal() 1171 struct vfstable *vfsp; in vfs_rootmountalloc() 1208 struct vfstable *vfsp; in vfs_mountroot() 4070 is_bad_sysctl_name(struct vfstable *vfsp, int selector_name) in is_bad_sysctl_name() 4113 struct vfstable *vfsp; 5266 struct vfstable *vfsp;
|
| H A D | vfs_syscalls.c | 1166 struct vfstable *vfsp = (struct vfstable *)0; in mount_common() 2402 struct vfstable *vfsp; in relocate_imageboot_source()
|
| /xnu-12377.41.6/bsd/sys/ |
| H A D | kernel_types.h | 83 struct vfstable; 84 typedef struct vfstable * vfstable_t; 85 __CCT_DECLARE_CONSTRAINED_PTR_TYPES(struct vfstable, vfstable); 158 typedef struct vfstable * vfstable_t; 159 __CCT_DECLARE_CONSTRAINED_PTR_TYPES(struct vfstable, vfstable);
|
| H A D | mount_internal.h | 113 …struct vfstable * XNU_PTRAUTH_SIGNED_PTR("mount.mnt_vtable") mnt_vtable; /* configu… 307 struct vfstable { struct 314 struct vfstable *vfc_next; /* next in list */ argument 338 extern struct vfstable *vfsconf; /* head of list of filesystem types */ argument 344 struct vfstable * vfstable_add(struct vfstable *); 345 int vfstable_del(struct vfstable *);
|