Home
last modified time | relevance | path

Searched refs:SectionHeader (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DOatFile.java336 private List<SectionHeader> getSections() {
354 return new AbstractList<SectionHeader>() {
355 @Override public SectionHeader get(int index) {
374 for (SectionHeader header: getSections()) {
375 if (header.getType() == SectionHeader.TYPE_DYNAMIC_SYMBOL_TABLE) {
396 private abstract class SectionHeader {
399 public SectionHeader(int offset) { this.offset = offset; }
409 private class SectionHeader32Bit extends SectionHeader {
418 private class SectionHeader64Bit extends SectionHeader {
433 public SymbolTable(@Nonnull SectionHeader header) {
[all …]
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp437 WithColor(Printer, PDB_ColorItem::SectionHeader).get() in dumpPretty()
452 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---TYPES---"; in dumpPretty()
461 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---SYMBOLS---"; in dumpPretty()
472 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---"; in dumpPretty()
498 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---EXTERNALS---"; in dumpPretty()
DLinePrinter.h75 SectionHeader, enumerator
DLinePrinter.cpp116 case PDB_ColorItem::SectionHeader: in applyColor()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
Dllvm-pdbutil.cpp980 WithColor(Printer, PDB_ColorItem::SectionHeader).get() in dumpPretty()
1056 WithColor(Printer, PDB_ColorItem::SectionHeader).get() in dumpPretty()
1072 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---TYPES---"; in dumpPretty()
1081 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---SYMBOLS---"; in dumpPretty()
1093 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---"; in dumpPretty()
1144 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---EXTERNALS---"; in dumpPretty()
1154 WithColor(Printer, PDB_ColorItem::SectionHeader).get() in dumpPretty()
DLinePrinter.h150 SectionHeader, enumerator
DLinePrinter.cpp328 case PDB_ColorItem::SectionHeader: in applyColor()
/external/swiftshader/src/Reactor/
DSubzeroReactor.cpp204 using SectionHeader = std::conditional<sizeof(void*) == 8, Elf64_Shdr, Elf32_Shdr>::type; typedef
206 inline const SectionHeader *sectionHeader(const ElfHeader *elfHeader) in sectionHeader()
208 return reinterpret_cast<const SectionHeader*>((intptr_t)elfHeader + elfHeader->e_shoff); in sectionHeader()
211 inline const SectionHeader *elfSection(const ElfHeader *elfHeader, int index) in elfSection()
216 …Symbol(const ElfHeader *elfHeader, const Elf32_Rel &relocation, const SectionHeader &relocationTab… in relocateSymbol()
218 const SectionHeader *target = elfSection(elfHeader, relocationTable.sh_info); in relocateSymbol()
227 const SectionHeader *symbolTable = elfSection(elfHeader, table); in relocateSymbol()
242 const SectionHeader *target = elfSection(elfHeader, symbol.st_shndx); in relocateSymbol()
301 …ymbol(const ElfHeader *elfHeader, const Elf64_Rela &relocation, const SectionHeader &relocationTab… in relocateSymbol()
303 const SectionHeader *target = elfSection(elfHeader, relocationTable.sh_info); in relocateSymbol()
[all …]