Searched refs:devfs_mp_p (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/miscfs/devfs/
H A Ddevfs_proto.h43 int dev_dup_plane(struct devfsmount *devfs_mp_p);
44 void devfs_free_plane(struct devfsmount *devfs_mp_p);
H A Ddevfs_vfsops.c166 struct devfsmount *devfs_mp_p; /* devfs specific mount info */ local
186 MALLOC(devfs_mp_p, struct devfsmount *, sizeof(struct devfsmount),
188 if (devfs_mp_p == NULL)
190 bzero(devfs_mp_p,sizeof(*devfs_mp_p));
191 devfs_mp_p->mount = mp;
196 mp->mnt_data = (qaddr_t)devfs_mp_p;
197 mp->mnt_vfsstat.f_fsid.val[0] = (int32_t)(uintptr_t)devfs_mp_p;
202 error = dev_dup_plane(devfs_mp_p);
207 FREE((caddr_t)devfs_mp_p, M_DEVFSMN
239 struct devfsmount *devfs_mp_p = (struct devfsmount *)mp->mnt_data; local
269 struct devfsmount *devfs_mp_p = (struct devfsmount *)(mp->mnt_data); local
283 struct devfsmount *devfs_mp_p = (struct devfsmount *)mp->mnt_data; local
[all...]
H A Ddevfs_tree.c918 dev_dup_plane(struct devfsmount *devfs_mp_p) argument
923 if ((error = dev_dup_entry(NULL, dev_root, &new, devfs_mp_p)))
925 devfs_mp_p->plane_root = new;
938 devfs_free_plane(struct devfsmount *devfs_mp_p) argument
942 dirent_p = devfs_mp_p->plane_root;
947 devfs_mp_p->plane_root = NULL;

Completed in 72 milliseconds