Lines Matching refs:children
127 device_t *children; in miibus_attach() local
131 if (device_get_children(dev, &children, &nchildren) == 0) { in miibus_attach()
133 ma = device_get_ivars(children[i]); in miibus_attach()
136 free(children, M_TEMP); in miibus_attach()
241 device_t *children, phy; in miibus_hinted_child() local
247 if (device_get_children(dev, &children, &nchildren) != 0) in miibus_hinted_child()
251 args = device_get_ivars(children[i]); in miibus_hinted_child()
257 free(children, M_TEMP); in miibus_hinted_child()
374 device_t *children, phy; in mii_attach() local
439 if (device_get_children(*miibus, &children, &nchildren) != 0) { in mii_attach()
440 children = NULL; in mii_attach()
451 args = device_get_ivars(children[i]); in mii_attach()
509 free(children, M_TEMP); in mii_attach()
516 rv = device_get_children(*miibus, &children, &nchildren); in mii_attach()
519 free(children, M_TEMP); in mii_attach()