HomeSort by relevance Sort by last modified time
    Searched defs:abbrevp (Results 1 - 3 of 3) sorted by null

  /external/elfutils/libdw/
dwarf_haschildren.c 28 Dwarf_Abbrev *abbrevp = die->abbrev; local
29 if (abbrevp != (Dwarf_Abbrev *) -1l)
38 abbrevp = __libdw_findabbrev (die->cu, abbrev_code);
39 die->abbrev = abbrevp ?: (Dwarf_Abbrev *) -1l;
dwarf_getabbrev.c 37 unsigned char *abbrevp local
39 if (*abbrevp == '\0')
59 unsigned char *start_abbrevp = abbrevp;
61 get_uleb128 (code, abbrevp);
89 get_uleb128 (abb->tag, abbrevp);
90 abb->has_children = *abbrevp++ == DW_CHILDREN_yes;
91 abb->attrp = abbrevp;
100 get_uleb128 (attrname, abbrevp);
101 get_uleb128 (attrform, abbrevp);
107 *lengthp = abbrevp - start_abbrevp
    [all...]
dwarf_child.c 40 Dwarf_Abbrev *abbrevp = die->abbrev; local
41 if (abbrevp == NULL)
43 abbrevp = __libdw_findabbrev (die->cu, abbrev_code);
44 die->abbrev = abbrevp ?: (Dwarf_Abbrev *) -1l;

Completed in 33 milliseconds