Home
last modified time | relevance | path

Searched refs:ElfTypes32 (Results 1 – 10 of 10) sorted by relevance

/art/compiler/debug/
Delf_debug_writer.cc44 using ElfRuntimeTypes = std::conditional<sizeof(void*) == 4, ElfTypes32, ElfTypes64>::type;
165 return MakeMiniDebugInfoInternal<ElfTypes32>(isa, in MakeMiniDebugInfo()
374 template void WriteDebugInfo<ElfTypes32>(
375 ElfBuilder<ElfTypes32>* builder,
/art/runtime/
Delf_file.h35 using ElfFileImpl32 = ElfFileImpl<ElfTypes32>;
Delf_file.cc1473 template class ElfFileImpl<ElfTypes32>;
/art/tools/create_minidebuginfo/
Dcreate_minidebuginfo.cc157 if (ElfDebugReader<ElfTypes32>::IsValidElfHeader(elf)) { in Main()
158 WriteMinidebugInfo<ElfTypes32>(elf, &output); in Main()
/art/libelffile/elf/
Delf_utils.h28 struct ElfTypes32 { struct
/art/dex2oat/linker/
Delf_writer_quick.cc141 return std::make_unique<ElfWriterQuick<ElfTypes32>>(compiler_options, elf_file); in CreateElfWriterQuick()
332 template class ElfWriterQuick<ElfTypes32>;
/art/compiler/utils/
Dassembler_test_base.h210 using ElfTypes = typename std::conditional<IsElf64, ElfTypes64, ElfTypes32>::type; in ReadElf()
221 using ElfTypes = typename std::conditional<IsElf64, ElfTypes64, ElfTypes32>::type; in WriteElf()
/art/compiler/debug/dwarf/
Ddwarf_test.h118 return Objdump<ElfTypes32>(args); in Objdump()
/art/runtime/jit/
Ddebugger_interface.cc656 using ElfRuntimeTypes = std::conditional<sizeof(void*) == 4, ElfTypes32, ElfTypes64>::type; in ForEachNativeDebugSymbol()
/art/oatdump/
Doatdump.cc2659 OatSymbolizer<ElfTypes32> oat_symbolizer(oat_file.get(), output_name, no_bits); in SymbolizeOat()