Home | History | Annotate | Download | only in libdw

Lines Matching refs:child

106   struct Dwarf_Die_Chain child;
108 child.parent = root;
109 if (INTUSE(dwarf_child) (&root->die, &child.die) != 0)
114 return __libdw_visit_scopes (depth + 1, &child,
120 child.prune = false;
124 int result = (*previsit) (depth + 1, &child, arg);
129 if (!child.prune)
130 switch (classify_die (&child.die))
135 if (INTUSE(dwarf_haschildren) (&child.die))
151 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child.die,
154 if (INTUSE(dwarf_formref_die) (attr, &child.die) != NULL)
169 int result = (*postvisit) (depth + 1, &child, arg);
174 while (INTUSE(dwarf_siblingof) (&child.die, &child.die) == 0);