Home
last modified time | relevance | path

Searched refs:abbrev (Results 1 – 25 of 78) sorted by relevance

1234

/external/elfutils/tests/
Drun-show-abbrev.sh23 testrun_compare ${abs_builddir}/show-abbrev testfile testfile2 <<\EOF
24 abbrev[0]: code = 1, tag = 17, children = 1
25 abbrev[0]: attr[0]: code = 16, form = 6, offset = 0
26 abbrev[0]: attr[1]: code = 18, form = 1, offset = 2
27 abbrev[0]: attr[2]: code = 17, form = 1, offset = 4
28 abbrev[0]: attr[3]: code = 3, form = 8, offset = 6
29 abbrev[0]: attr[4]: code = 27, form = 8, offset = 8
30 abbrev[0]: attr[5]: code = 37, form = 8, offset = 10
31 abbrev[0]: attr[6]: code = 19, form = 11, offset = 12
32 abbrev[19]: code = 2, tag = 46, children = 1
[all …]
Dshow-abbrev.c59 Dwarf_Abbrev *abbrev = dwarf_getabbrev (&die, offset, &length); in main() local
60 if (abbrev == NULL || abbrev == DWARF_END_ABBREV) in main()
64 unsigned tag = dwarf_getabbrevtag (abbrev); in main()
73 unsigned code = dwarf_getabbrevcode (abbrev); in main()
82 int children = dwarf_abbrevhaschildren (abbrev); in main()
95 if (dwarf_getattrcnt (abbrev, &attrcnt) != 0) in main()
108 if (dwarf_getabbrevattr (abbrev, j, &attr_num, &attr_form, in main()
/external/strace/
Dloop.c46 if (!abbrev(tcp)) { in decode_loop_info()
55 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) { in decode_loop_info()
69 if (!abbrev(tcp) || info.lo_encrypt_type != LO_CRYPT_NONE) { in decode_loop_info()
75 if (!abbrev(tcp)) in decode_loop_info()
94 if (!abbrev(tcp)) { in decode_loop_info64()
110 if (!abbrev(tcp) || info64.lo_encrypt_type != LO_CRYPT_NONE) { in decode_loop_info64()
125 if (!abbrev(tcp) || info64.lo_encrypt_type != LO_CRYPT_NONE) { in decode_loop_info64()
134 if (!abbrev(tcp)) in decode_loop_info64()
Ddirent64.c78 if (!abbrev(tcp)) in SYS_FUNC()
82 if (!abbrev(tcp)) { in SYS_FUNC()
116 if (!abbrev(tcp)) in SYS_FUNC()
Ddirent.c112 if (!abbrev(tcp)) in SYS_FUNC()
117 if (!abbrev(tcp)) { in SYS_FUNC()
149 if (!abbrev(tcp)) in SYS_FUNC()
Devdev.c77 if (!abbrev(tcp)) { in ff_effect_ioctl()
145 if (!abbrev(tcp)) { in abs_ioctl()
193 if (!abbrev(tcp)) { in keycode_V2_ioctl()
222 if (!abbrev(tcp)) { in getid_ioctl()
258 if (abbrev(tcp) && bit_displayed >= 3) { in decode_bitset()
Dgit-version-gen158 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
159 || git describe --abbrev=4 HEAD 2>/dev/null` \
Dprintrusage.c50 if (abbrev(tcp)) in MPERS_PRINTER_DECL()
103 if (abbrev(tcp)) in printrusage32()
Dexecve.c49 for (sep = ""; !abbrev(tcp) || n < max_strlen / 2; sep = ", ", ++n) { in printargv()
93 else if (abbrev(tcp)) in decode_execve()
Dprintstat.h54 if (!abbrev(tcp)) { in DO_PRINTSTAT()
93 if (!abbrev(tcp)) { in DO_PRINTSTAT()
Dpoll.c63 if (abbrev(tcp)) { in decode_poll_entering()
121 if (abbrev(tcp)) { in decode_poll_exiting()
/external/elfutils/libdw/
Ddwarf_getabbrevattr.c40 dwarf_getabbrevattr (Dwarf_Abbrev *abbrev, size_t idx, unsigned int *namep, in dwarf_getabbrevattr() argument
43 if (abbrev == NULL) in dwarf_getabbrevattr()
47 const unsigned char *attrp = abbrev->attrp; in dwarf_getabbrevattr()
73 *offsetp = (start_attrp - abbrev->attrp) + abbrev->offset; in dwarf_getabbrevattr()
Ddwarf_getabbrevcode.c40 dwarf_getabbrevcode (Dwarf_Abbrev *abbrev) in dwarf_getabbrevcode() argument
42 return abbrev == NULL ? 0 : abbrev->code; in dwarf_getabbrevcode()
Ddwarf_getabbrevtag.c40 dwarf_getabbrevtag (Dwarf_Abbrev *abbrev) in dwarf_getabbrevtag() argument
42 return abbrev == NULL ? 0 : abbrev->tag; in dwarf_getabbrevtag()
Ddwarf_abbrevhaschildren.c40 dwarf_abbrevhaschildren (Dwarf_Abbrev *abbrev) in dwarf_abbrevhaschildren() argument
42 return abbrev == NULL ? -1 : abbrev->has_children; in dwarf_abbrevhaschildren()
Ddwarf_getattrcnt.c38 dwarf_getattrcnt (Dwarf_Abbrev *abbrev, size_t *attrcntp) in dwarf_getattrcnt() argument
40 if (abbrev == NULL) in dwarf_getattrcnt()
43 *attrcntp = abbrev->attrcnt; in dwarf_getattrcnt()
Ddwarf_offabbrev.c44 Dwarf_Abbrev *abbrev = __libdw_getabbrev (dbg, NULL, offset, lengthp, in dwarf_offabbrev() local
47 if (abbrev == NULL) in dwarf_offabbrev()
50 return abbrev == DWARF_END_ABBREV ? 1 : 0; in dwarf_offabbrev()
Ddwarf_siblingof.c93 || unlikely (this_die.abbrev == DWARF_END_ABBREV)) in dwarf_siblingof()
95 else if (this_die.abbrev->has_children) in dwarf_siblingof()
123 this_die.abbrev = NULL; in dwarf_siblingof()
Dlibdw.h145 Dwarf_Abbrev *abbrev; member
560 extern unsigned int dwarf_getabbrevcode (Dwarf_Abbrev *abbrev);
563 extern unsigned int dwarf_getabbrevtag (Dwarf_Abbrev *abbrev);
566 extern int dwarf_abbrevhaschildren (Dwarf_Abbrev *abbrev);
569 extern int dwarf_getattrcnt (Dwarf_Abbrev *abbrev, size_t *attrcntp)
573 extern int dwarf_getabbrevattr (Dwarf_Abbrev *abbrev, size_t idx,
DlibdwP.h464 if (die->abbrev == NULL || readp != NULL) in __libdw_dieabbrev()
474 if (die->abbrev == NULL) in __libdw_dieabbrev()
475 die->abbrev = __libdw_findabbrev (die->cu, code); in __libdw_dieabbrev()
477 return die->abbrev; in __libdw_dieabbrev()
/external/bison/build-aux/
Dgit-version-gen154 && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \
155 || git describe --abbrev=4 HEAD 2>/dev/null` \
/external/elfutils/include/elfutils/
Dlibdw.h145 Dwarf_Abbrev *abbrev; member
560 extern unsigned int dwarf_getabbrevcode (Dwarf_Abbrev *abbrev);
563 extern unsigned int dwarf_getabbrevtag (Dwarf_Abbrev *abbrev);
566 extern int dwarf_abbrevhaschildren (Dwarf_Abbrev *abbrev);
569 extern int dwarf_getattrcnt (Dwarf_Abbrev *abbrev, size_t *attrcntp)
573 extern int dwarf_getabbrevattr (Dwarf_Abbrev *abbrev, size_t idx,
/external/google-breakpad/src/common/dwarf/
Ddwarf2reader.cc94 CompilationUnit::Abbrev abbrev; in ReadAbbrevs() local
100 abbrev.number = number; in ReadAbbrevs()
106 abbrev.tag = static_cast<enum DwarfTag>(tag); in ReadAbbrevs()
109 abbrev.has_children = reader_->ReadOneByte(abbrevptr); in ReadAbbrevs()
127 abbrev.attributes.push_back(std::make_pair(name, form)); in ReadAbbrevs()
129 assert(abbrev.number == abbrevs_->size()); in ReadAbbrevs()
130 abbrevs_->push_back(abbrev); in ReadAbbrevs()
136 const Abbrev& abbrev) { in SkipDIE() argument
137 for (AttributeList::const_iterator i = abbrev.attributes.begin(); in SkipDIE()
138 i != abbrev.attributes.end(); in SkipDIE()
[all …]
/external/llvm/test/DebugInfo/
Ddwarfdump-dwp.test15 ; Verify that the second CU uses the index for its abbrev offset
22 ; Verify that abbreviations are decoded using the abbrev offset in the index
/external/llvm/test/Bitcode/
Dinvalid.test3 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev.bc 2>&1 | \
7 RUN: not llvm-dis -disable-output %p/Inputs/invalid-bad-abbrev-number.bc 2>&1 | \
33 BAD-ABBREV-NUMBER: Invalid abbrev number
76 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev-vbr-size-too-big.bc 2>&1 | \
78 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev-fixed-size-too-big.bc 2>&1 | \
81 HUGE-ABBREV-OP: Fixed or VBR abbrev record with size > MaxChunkData
186 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev-no-operands.bc 2>&1 | \

1234