Home | History | Annotate | Download | only in libdw

Lines Matching defs:abb

84   Dwarf_Abbrev *abb = NULL;
86 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL)
89 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev);
91 abb = result;
97 if (unlikely (abb->offset != offset))
114 abb->code = code;
117 get_uleb128 (abb->tag, abbrevp, end);
120 abb->has_children = *abbrevp++ == DW_CHILDREN_yes;
121 abb->attrp = (unsigned char *) abbrevp;
122 abb->offset = offset;
125 abb->attrcnt = 0;
137 while (attrname != 0 && attrform != 0 && ++abb->attrcnt);
145 (void) Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb);
148 return abb;