Lines Matching defs:child
773 Dwarf_Die child;
774 int res = dwarf_child (funcdie, &child);
778 /* We thought there was a child, but the child list was actually
786 int tag = dwarf_tag (&child);
790 print_die (&child, what, 2);
792 if (dwarf_hasattr (&child, DW_AT_location))
795 if (dwarf_attr (&child, DW_AT_location, &attr) == NULL)
865 else if (dwarf_hasattr (&child, DW_AT_const_value))
875 while (dwarf_siblingof (&child, &child) == 0);
1026 Dwarf_Die child;
1027 if (dwarf_haschildren (die) != 0 && dwarf_child (die, &child) == 0)
1028 handle_die (&child, depth + 1, die_has_frame_base, die_entrypc);