Home
last modified time | relevance | path

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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DOatFile.java269 private List<SectionHeader> getSections() {
287 return new AbstractList<SectionHeader>() {
288 @Override public SectionHeader get(int index) {
307 for (SectionHeader header: getSections()) {
308 if (header.getType() == SectionHeader.TYPE_DYNAMIC_SYMBOL_TABLE) {
329 private abstract class SectionHeader {
332 public SectionHeader(int offset) { this.offset = offset; }
342 private class SectionHeader32Bit extends SectionHeader {
351 private class SectionHeader64Bit extends SectionHeader {
366 public SymbolTable(@Nonnull SectionHeader header) {
[all …]
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp458 WithColor(Printer, PDB_ColorItem::SectionHeader).get() in dumpInput()
470 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---TYPES---"; in dumpInput()
479 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---SYMBOLS---"; in dumpInput()
490 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---GLOBALS---"; in dumpInput()
516 WithColor(Printer, PDB_ColorItem::SectionHeader).get() << "---EXTERNALS---"; in dumpInput()
DLinePrinter.h74 SectionHeader, enumerator
DLinePrinter.cpp113 case PDB_ColorItem::SectionHeader: in applyColor()