Searched refs:child_head (Results 1 - 10 of 10) sorted by relevance

/u-boot/include/dm/
H A Ddevice.h150 * @child_head: List of children of this device
183 struct list_head child_head; member in struct:udevice
1022 list_for_each_entry_safe(pos, next, &parent->child_head, sibling_node)
1031 list_for_each_entry(pos, &parent->child_head, sibling_node)
/u-boot/drivers/core/
H A Ddevice.c70 INIT_LIST_HEAD(&dev->child_head);
160 list_add_tail(&dev->sibling_node, &parent->child_head);
293 list_add_tail(&dev->sibling_node, &new_parent->child_head);
935 if (list_empty(&parent->child_head)) {
938 *devp = list_first_entry(&parent->child_head, struct udevice,
950 if (list_is_last(&dev->sibling_node, &parent->child_head)) {
1110 return !list_empty(&dev->child_head);
1133 return list_is_last(&dev->sibling_node, &parent->child_head);
H A Droot.c302 list_for_each_entry(child, &dev->child_head, sibling_node)
396 list_for_each_entry(dev, &parent->child_head, sibling_node)
H A Ddump.c81 &dev->child_head);
/u-boot/cmd/
H A Dclk.c57 is_last = list_is_last(&child->sibling_node, &dev->child_head);
/u-boot/tools/
H A Dproftool.c131 * @child_head: List of children of this node (functions called from here)
140 struct list_head child_head; member in struct:flame_node
1633 INIT_LIST_HEAD(&node->child_head);
1665 list_for_each_entry(chd, &node->child_head, sibling_node) {
1676 list_add_tail(&child->sibling_node, &node->child_head);
1835 list_for_each_entry(child, &node->child_head, sibling_node) {
/u-boot/test/dm/
H A Dcore.c128 ut_asserteq(0, list_count_items(&gd->dm_root->child_head));
135 ut_assert(0 < list_count_items(&gd->dm_root->child_head));
141 list_for_each_entry(dev, &gd->dm_root->child_head, sibling_node)
/u-boot/drivers/pinctrl/
H A Dpinctrl_stm32.c100 list_for_each_entry(child, &dev->child_head, sibling_node) {
/u-boot/drivers/gpio/
H A Dsandbox.c409 list_for_each_entry(child, &dev->child_head, sibling_node) {
/u-boot/drivers/clk/
H A Dclk-uclass.c558 list_for_each_entry(child_dev, &clk->dev->child_head, sibling_node) {

Completed in 154 milliseconds