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

/freebsd-11.0-release/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[
780 device_t *kids; local
[all...]
/freebsd-11.0-release/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.0-release/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.0-release/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.0-release/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.0-release/sys/dev/mmc/
H A Dmmc.c1656 device_t *kids; local
1665 if (device_get_children(sc->dev, &kids, &nkid) != 0)
1668 ivar = device_get_ivars(kids[i]);
1677 ivar = device_get_ivars(kids[i]);
1684 free(kids, M_TEMP);
/freebsd-11.0-release/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.0-release/sys/boot/zfs/
H A Dzfsimpl.c465 * Here we should have two kids:
518 const unsigned char *kids; local
625 DATA_TYPE_NVLIST_ARRAY, &nkids, &kids);
627 * Its ok if we don't have any kids.
632 rc = vdev_init_from_nvlist(kids, vdev, &kid, is_newer);
638 kids = nvlist_next(kids);
657 * A mirror or raidz is healthy if all its kids are healthy. A
658 * mirror is degraded if any of its kids is healthy; a raidz
659 * is degraded if at most nparity kids ar
[all...]

Completed in 89 milliseconds