he                 65 dev/hotplug.c  	struct hotplug_event he;
he                 67 dev/hotplug.c  	he.he_type = HOTPLUG_DEVAT;
he                 68 dev/hotplug.c  	he.he_devclass = class;
he                 69 dev/hotplug.c  	strlcpy(he.he_devname, name, sizeof(he.he_devname));
he                 70 dev/hotplug.c  	hotplug_put_event(&he);
he                 76 dev/hotplug.c  	struct hotplug_event he;
he                 78 dev/hotplug.c  	he.he_type = HOTPLUG_DEVDT;
he                 79 dev/hotplug.c  	he.he_devclass = class;
he                 80 dev/hotplug.c  	strlcpy(he.he_devname, name, sizeof(he.he_devname));
he                 81 dev/hotplug.c  	hotplug_put_event(&he);
he                 85 dev/hotplug.c  hotplug_put_event(struct hotplug_event *he)
he                 92 dev/hotplug.c  	evqueue[evqueue_head] = *he;
he                105 dev/hotplug.c  hotplug_get_event(struct hotplug_event *he)
he                113 dev/hotplug.c  	*he = evqueue[evqueue_tail];
he                136 dev/hotplug.c  	struct hotplug_event he;
he                138 dev/hotplug.c  	while (hotplug_get_event(&he) == 0)
he                147 dev/hotplug.c  	struct hotplug_event he;
he                150 dev/hotplug.c  	if (uio->uio_resid != sizeof(he))
he                154 dev/hotplug.c  	if (hotplug_get_event(&he) == 0)
he                155 dev/hotplug.c  		return (uiomove(&he, sizeof(he), uio));