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()
240 device_t *children, phy; in miibus_hinted_child() local
246 if (device_get_children(dev, &children, &nchildren) != 0) in miibus_hinted_child()
250 args = device_get_ivars(children[i]); in miibus_hinted_child()
256 free(children, M_TEMP); in miibus_hinted_child()
373 device_t *children, phy; in mii_attach() local
438 if (device_get_children(*miibus, &children, &nchildren) != 0) { in mii_attach()
439 children = NULL; in mii_attach()
450 args = device_get_ivars(children[i]); in mii_attach()
508 free(children, M_TEMP); in mii_attach()
515 rv = device_get_children(*miibus, &children, &nchildren); in mii_attach()
518 free(children, M_TEMP); in mii_attach()