/external/elfutils/libdw/ |
H A D | dwarf_abbrevhaschildren.c | 25 dwarf_abbrevhaschildren (abbrev) 26 Dwarf_Abbrev *abbrev; 28 return abbrev == NULL ? -1 : abbrev->has_children;
|
H A D | dwarf_getabbrevcode.c | 25 dwarf_getabbrevcode (abbrev) 26 Dwarf_Abbrev *abbrev; 28 return abbrev == NULL ? 0 : abbrev->code;
|
H A D | dwarf_getabbrevtag.c | 25 dwarf_getabbrevtag (abbrev) 26 Dwarf_Abbrev *abbrev; 28 return abbrev == NULL ? 0 : abbrev->tag;
|
H A D | dwarf_getattrcnt.c | 23 dwarf_getattrcnt (abbrev, attrcntp) 24 Dwarf_Abbrev *abbrev; 27 if (abbrev == NULL) 30 *attrcntp = abbrev->attrcnt;
|
H A D | dwarf_getabbrevattr.c | 25 dwarf_getabbrevattr (abbrev, idx, namep, formp, offsetp) 26 Dwarf_Abbrev *abbrev; 32 if (abbrev == NULL) 36 unsigned char *attrp = abbrev->attrp; 61 *offsetp = (start_attrp - abbrev->attrp) + abbrev->offset;
|
H A D | dwarf_haschildren.c | 28 Dwarf_Abbrev *abbrevp = die->abbrev; 39 die->abbrev = abbrevp ?: (Dwarf_Abbrev *) -1l; 41 if (unlikely (die->abbrev == (Dwarf_Abbrev *) -1l)) 47 return die->abbrev->has_children;
|
H A D | dwarf_child.c | 40 Dwarf_Abbrev *abbrevp = die->abbrev; 44 die->abbrev = abbrevp ?: (Dwarf_Abbrev *) -1l; 46 if (unlikely (die->abbrev == (Dwarf_Abbrev *) -1l)) 57 unsigned char *attrp = die->abbrev->attrp; 130 if (die->abbrev != (Dwarf_Abbrev *) -1 131 && (die->abbrev == NULL || die->abbrev->has_children)) 133 if (die->abbrev == (Dwarf_Abbrev *) -1l) 137 if (! die->abbrev->has_children)
|
H A D | dwarf_tag.c | 63 if (die->abbrev == NULL) 71 die->abbrev = __libdw_findabbrev (die->cu, u128); 74 if (die->abbrev == (Dwarf_Abbrev *) -1l) 80 return die->abbrev->tag;
|
H A D | dwarf_getattrs.c | 35 if (die->abbrev == NULL) 37 die->abbrev = __libdw_findabbrev (die->cu, u128); 39 if (die->abbrev == (Dwarf_Abbrev *) -1l) 46 unsigned char *attrp = die->abbrev->attrp + offset; 77 return attrp - die->abbrev->attrp;
|
H A D | dwarf_siblingof.c | 65 || unlikely (this_die.abbrev == (Dwarf_Abbrev *) -1l)) 67 else if (this_die.abbrev->has_children) 83 this_die.abbrev = NULL;
|
H A D | libdw.h | 127 Dwarf_Abbrev *abbrev; member in struct:__anon1980 302 extern unsigned int dwarf_getabbrevcode (Dwarf_Abbrev *abbrev); 305 extern unsigned int dwarf_getabbrevtag (Dwarf_Abbrev *abbrev); 308 extern int dwarf_abbrevhaschildren (Dwarf_Abbrev *abbrev); 311 extern int dwarf_getattrcnt (Dwarf_Abbrev *abbrev, size_t *attrcntp) 315 extern int dwarf_getabbrevattr (Dwarf_Abbrev *abbrev, size_t idx,
|
/external/elfutils/tests/ |
H A D | run-show-abbrev.sh | 22 ./show-abbrev testfile testfile2 > show-abbrev.out 24 diff -u show-abbrev.out - <<"EOF" 25 abbrev[0]: code = 1, tag = 17, children = 1 26 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0 27 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2 28 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4 29 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6 30 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8 31 abbrev[ [all...] |
H A D | show-abbrev.c | 55 Dwarf_Abbrev *abbrev = dwarf_getabbrev (&die, offset, &length); local 56 if (abbrev == NULL) 60 unsigned tag = dwarf_getabbrevtag (abbrev); 69 unsigned code = dwarf_getabbrevcode (abbrev); 78 int children = dwarf_abbrevhaschildren (abbrev); 87 printf ("abbrev[%llu]: code = %u, tag = %u, children = %d\n", 91 if (dwarf_getattrcnt (abbrev, &attrcnt) != 0) 104 if (dwarf_getabbrevattr (abbrev, j, &attr_num, &attr_form, 106 printf ("dwarf_getabbrevattr for abbrev[%llu] and index %zu failed\n", 109 printf ("abbrev[ [all...] |
H A D | Makefile.am | 29 show-abbrev hash asm-tst1 asm-tst2 asm-tst3 \ 38 run-show-abbrev.sh hash asm-tst1 asm-tst2 \ 47 run-show-ciefde.sh run-show-abbrev.sh run-strip-test.sh \
|
H A D | Makefile | 17 SOURCES = arextract.c arsymtest.c asm-tst1.c asm-tst2.c asm-tst3.c asm-tst4.c asm-tst5.c asm-tst6.c asm-tst7.c asm-tst8.c asm-tst9.c ecp.c get-aranges.c get-files.c get-lines.c get-pubnames.c hash.c msg_tst.c newfile.c newscn.c saridx.c scnnames.c sectiondump.c show-abbrev.c show-die-info.c showptable.c test-nlist.c update1.c update2.c update3.c update4.c 47 show-abbrev$(EXEEXT) hash$(EXEEXT) asm-tst1$(EXEEXT) \ 151 show_abbrev_SOURCES = show-abbrev.c 152 show_abbrev_OBJECTS = show-abbrev.$(OBJEXT) 187 scnnames.c sectiondump.c show-abbrev.c show-die-info.c \ 194 saridx.c scnnames.c sectiondump.c show-abbrev.c \ 315 run-show-abbrev.sh hash asm-tst1 asm-tst2 \ 324 run-show-ciefde.sh run-show-abbrev.sh run-strip-test.sh \ 476 show-abbrev$(EXEEXT): $(show_abbrev_OBJECTS) $(show_abbrev_DEPENDENCIES) 477 @rm -f show-abbrev [all...] |
H A D | show-die-info.c | 451 Dwarf_Off abbrev; local 454 while (dwarf_nextcu (dbg, off, &off, &hsize, &abbrev, &addresssize, 460 (unsigned long long int) abbrev, addresssize,
|
/external/e2fsprogs/lib/ss/ |
H A D | ss_internal.h | 28 char *name; /* abbrev name */ 29 char **abbrev; /* new tokens to insert */ member in struct:_ss_abbrev_entry
|
/external/elfcopy/ |
H A D | dwarf.h | 45 abbrev = 0, enumerator in enum:dwarf_section_display_enum
|
H A D | fixdwarf.c | 128 CHECK_DEBUG_SECTION(abbrev); 175 ADJUST_IF_NECESSARY(abbrev); 255 if (dwarf_idx != info && dwarf_idx != abbrev)
|
H A D | dwarf.c | 351 abbrev_entry *abbrev; local 353 for (abbrev = first_abbrev; abbrev;) 355 abbrev_entry *next = abbrev->next; 358 for (attr = abbrev->first_attr; attr;) 366 free (abbrev); 367 abbrev = next; 1631 load_debug_section (abbrev, file); 1632 if (debug_displays [abbrev].section.start == NULL) 1635 debug_displays [abbrev] [all...] |
/external/strace/ |
H A D | bjm.c | 134 if (!abbrev(tcp)) { 159 if (!abbrev(tcp)) {
|
H A D | file.c | 692 if (!abbrev(tcp)) { 717 if (!abbrev(tcp)) { 747 if (!abbrev(tcp)) { 774 if (!abbrev(tcp)) { 839 if (!abbrev(tcp)) { 874 if (!abbrev(tcp)) { 973 if (!abbrev(tcp)) { 1017 if (!abbrev(tcp)) { 2061 if (!abbrev(tcp)) 2066 if (!abbrev(tc [all...] |
H A D | term.c | 217 if (abbrev(tcp)) { 262 if (abbrev(tcp)) {
|
H A D | mem.c | 516 if (abbrev(tcp) && i >= max_strlen) { 705 if (abbrev(tcp)) {
|
/external/chromium/base/third_party/symbolize/ |
H A D | demangle.cc | 38 const char *abbrev; member in struct:__anon847 706 for (p = kOperatorList; p->abbrev != NULL; ++p) { 707 if (state->mangled_cur[0] == p->abbrev[0] && 708 state->mangled_cur[1] == p->abbrev[1]) { 931 for (p = kBuiltinTypeList; p->abbrev != NULL; ++p) { 932 if (state->mangled_cur[0] == p->abbrev[0]) { 1206 for (p = kSubstitutionList; p->abbrev != NULL; ++p) { 1207 if (state->mangled_cur[0] == p->abbrev[1]) {
|