Searched refs:kids (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/sys/xen/xenbus/
H A Dxenbusb.c207 device_t *kids; local
212 if (device_get_children(dev, &kids, &count))
217 ivars = device_get_ivars(kids[i]);
219 result = kids[i];
223 free(kids, M_TEMP);
443 device_t *kids; local
447 if (device_get_children(dev, &kids, &count) == 0) {
449 if (device_get_state(kids[i]) != DS_NOTPRESENT) {
454 xenbusb_verify_device(dev, kids[i]);
458 error = device_probe_and_attach(kids[
797 device_t *kids; local
[all...]
/freebsd-11-stable/sys/dev/pccard/
H A Dpccard_device.c113 device_t *kids; local
121 err = device_get_children(parent, &kids, &cnt);
125 free(kids, M_TEMP);
130 child = kids[0];
131 free(kids, M_TEMP);
/freebsd-11-stable/sys/dev/ow/
H A Dowc_gpiobus.c123 device_t *kids; local
131 if (device_get_children(dev, &kids, &nkid) == 0)
132 free(kids, M_TEMP);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dvarobj.c2130 int kids[3];
2132 cplus_class_num_children (type, kids);
2133 if (kids[v_public] != 0)
2135 if (kids[v_private] != 0)
2137 if (kids[v_protected] != 0)
2149 int kids[3];
2153 cplus_class_num_children (type, kids);
2155 children = kids[v_public];
2157 children = kids[v_private];
2159 children = kids[v_protecte
2125 int kids[3]; local
2144 int kids[3]; local
[all...]
/freebsd-11-stable/sys/dev/agp/
H A Dagp.c108 device_t *kids; local
115 if (device_get_children(bus, &kids, &numkids) != 0)
118 dev = kids[i];
122 free(kids, M_TEMP);
127 free(kids, M_TEMP);
/freebsd-11-stable/sys/dev/sge/
H A Dif_sge.c269 device_t *kids; local
286 if (device_get_children(bus, &kids, &numkids) != 0)
289 dev = kids[i];
296 free(kids, M_TEMP);
303 free(kids, M_TEMP);
/freebsd-11-stable/stand/libsa/zfs/
H A Dzfsimpl.c472 * Here we should have two kids:
525 const unsigned char *kids; local
633 &nkids, &kids);
635 * Its ok if we don't have any kids.
640 rc = vdev_init_from_nvlist(kids, vdev, &kid, is_newer);
646 kids = nvlist_next(kids);
665 * A mirror or raidz is healthy if all its kids are healthy. A
666 * mirror is degraded if any of its kids is healthy; a raidz
667 * is degraded if at most nparity kids ar
[all...]

Completed in 203 milliseconds