OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:abb
(Results
1 - 2
of
2
) sorted by null
/external/elfutils/libdw/
dwarf_tag.c
62
Dwarf_Abbrev *
abb
;
local
65
abb
= Dwarf_Abbrev_Hash_find (&cu->abbrev_hash, code, NULL);
66
if (
abb
== NULL)
73
abb
= __libdw_getabbrev (cu->dbg, cu, cu->last_abbrev_offset, &length,
75
if (
abb
== NULL ||
abb
== DWARF_END_ABBREV)
85
if (
abb
->code == code)
89
return
abb
;
dwarf_getabbrev.c
108
Dwarf_Abbrev *
abb
= NULL;
local
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
[
all
...]
Completed in 2827 milliseconds