Searched refs:vfstable (Results 1 – 7 of 7) sorted by relevance
| /xnu-8792.61.2/bsd/vfs/ |
| H A D | vfs_init.c | 305 struct vfstable *vfsp; in vfsinit() 481 struct vfstable * 482 vfstable_add(struct vfstable *nvfsp) in vfstable_add() 485 struct vfstable *slotp, *allocated = NULL; in vfstable_add() 512 allocated = kalloc_type(struct vfstable, Z_WAITOK); in vfstable_add() 528 bcopy(nvfsp, slotp, sizeof(struct vfstable)); in vfstable_add() 553 kfree_type(struct vfstable, allocated); in vfstable_add() 573 vfstable_del(struct vfstable * vtbl) in vfstable_del() 575 struct vfstable **vcpp; in vfstable_del() 576 struct vfstable *vcdelp; in vfstable_del() [all …]
|
| H A D | vfs_conf.c | 120 static struct vfstable vfstbllist[] = { 270 const int maxvfsslots = sizeof(vfstbllist) / sizeof(struct vfstable); 274 struct vfstable *vfsconf = vfstbllist;
|
| H A D | kpi_vfs.c | 919 struct vfstable *newvfstbl = NULL; in vfs_fsadd() 948 newvfstbl = kalloc_type(struct vfstable, Z_WAITOK | Z_ZERO); in vfs_fsadd() 1133 kfree_type(struct vfstable, newvfstbl); in vfs_fsadd() 1146 struct vfstable * vfstbl = (struct vfstable *)handle; in vfs_fsremove()
|
| H A D | vfs_subr.c | 1093 vfs_rootmountalloc_internal(struct vfstable *vfsp, const char *devname) in vfs_rootmountalloc_internal() 1146 struct vfstable *vfsp; in vfs_rootmountalloc() 1183 struct vfstable *vfsp; in vfs_mountroot() 3882 is_bad_sysctl_name(struct vfstable *vfsp, int selector_name) in is_bad_sysctl_name() 3925 struct vfstable *vfsp; 5000 struct vfstable *vfsp;
|
| H A D | vfs_syscalls.c | 1012 struct vfstable *vfsp = (struct vfstable *)0; in mount_common() 2171 struct vfstable *vfsp; in relocate_imageboot_source()
|
| /xnu-8792.61.2/bsd/sys/ |
| H A D | kernel_types.h | 88 struct vfstable; 89 typedef struct vfstable * vfstable_t; 90 __CCT_DECLARE_CONSTRAINED_PTR_TYPES(struct vfstable, vfstable); 163 typedef struct vfstable * vfstable_t; 164 __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… 306 struct vfstable { struct 313 struct vfstable *vfc_next; /* next in list */ argument 337 extern struct vfstable *vfsconf; /* head of list of filesystem types */ argument 343 struct vfstable * vfstable_add(struct vfstable *); 344 int vfstable_del(struct vfstable *);
|