Lines Matching refs:abb
108 Dwarf_Abbrev *abb = NULL;
110 || (abb = Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL)) == NULL)
113 abb = libdw_typed_alloc (dbg, Dwarf_Abbrev);
115 abb = result;
121 assert (abb->offset == offset);
131 abb->code = code;
132 get_uleb128 (abb->tag, abbrevp);
133 abb->has_children = *abbrevp++ == DW_CHILDREN_yes;
134 abb->attrp = (unsigned char *) abbrevp;
135 abb->offset = offset;
138 abb->attrcnt = 0;
146 while (attrname != 0 && attrform != 0 && ++abb->attrcnt);
154 (void) Dwarf_Abbrev_Hash_insert (&cu->abbrev_hash, abb->code, abb);
157 return abb;