Searched defs:abbrevp (Results 1 - 6 of 6) sorted by relevance
/external/elfutils/libdw/ |
H A D | dwarf_haschildren.c | 42 Dwarf_Abbrev *abbrevp = __libdw_dieabbrev (die, NULL); local 43 if (unlikely (abbrevp == DWARF_END_ABBREV)) 49 return abbrevp->has_children;
|
H A D | dwarf_offabbrev.c | 39 Dwarf_Abbrev *abbrevp) 45 abbrevp); 38 dwarf_offabbrev(Dwarf *dbg, Dwarf_Off offset, size_t *lengthp, Dwarf_Abbrev *abbrevp) argument
|
H A D | dwarf_tag.c | 85 Dwarf_Abbrev *abbrevp = __libdw_dieabbrev (die, NULL); local 86 if (unlikely (abbrevp == DWARF_END_ABBREV)) 92 return abbrevp->tag;
|
H A D | dwarf_getabbrev.c | 53 const unsigned char *abbrevp local 56 if (*abbrevp == '\0') 78 const unsigned char *start_abbrevp = abbrevp; 80 get_uleb128 (code, abbrevp, end); 115 if (abbrevp >= end) 117 get_uleb128 (abb->tag, abbrevp, end); 118 if (abbrevp + 1 >= end) 120 abb->has_children = *abbrevp++ == DW_CHILDREN_yes; 121 abb->attrp = (unsigned char *) abbrevp; 130 if (abbrevp > [all...] |
H A D | dwarf_getattrs.c | 50 Dwarf_Abbrev *abbrevp = __libdw_dieabbrev (die, &die_addr); local 52 if (unlikely (abbrevp == DWARF_END_ABBREV)) 60 const unsigned char *attrp = abbrevp->attrp; 61 const unsigned char *const offset_attrp = abbrevp->attrp + offset; 104 return remembered_attrp - abbrevp->attrp;
|
H A D | dwarf_child.c | 50 Dwarf_Abbrev *abbrevp = __libdw_dieabbrev (die, &readp); local 51 if (unlikely (abbrevp == DWARF_END_ABBREV)) 63 const unsigned char *attrp = abbrevp->attrp; 125 Dwarf_Abbrev *abbrevp = __libdw_dieabbrev (die, NULL); 126 if (unlikely (abbrevp == DWARF_END_ABBREV)) 133 if (! abbrevp->has_children)
|
Completed in 140 milliseconds