Home
last modified time | relevance | path

Searched refs:ElfInterface32 (Results 1 – 6 of 6) sorted by relevance

/system/unwinding/libunwindstack/tests/
DElfInterfaceTest.cpp211 SinglePtLoad<Elf32_Ehdr, Elf32_Phdr, Elf32_Dyn, ElfInterface32>(); in TEST_F()
278 MultipleExecutablePtLoads<Elf32_Ehdr, Elf32_Phdr, Elf32_Dyn, ElfInterface32>(); in TEST_F()
346 ElfInterface32>(); in TEST_F()
404 NonExecutablePtLoads<Elf32_Ehdr, Elf32_Phdr, Elf32_Dyn, ElfInterface32>(); in TEST_F()
475 ElfInterfaceTest::ManyPhdrs<Elf32_Ehdr, Elf32_Phdr, Elf32_Dyn, ElfInterface32>(); in TEST_F()
591 Soname<ElfInterface32>(); in TEST_F()
612 SonameAfterDtNull<ElfInterface32>(); in TEST_F()
633 SonameSize<ElfInterface32>(); in TEST_F()
656 SonameMissingMap<ElfInterface32>(); in TEST_F()
740 InitProgramHeadersMalformed<Elf32_Ehdr, Elf32_Phdr, ElfInterface32>(); in TEST_F()
[all …]
DElfFake.h123 class ElfInterface32Fake : public ElfInterface32 {
125 ElfInterface32Fake(Memory* memory) : ElfInterface32(memory) {} in ElfInterface32Fake()
/system/unwinding/libunwindstack/
DElfInterfaceArm.cpp30 if (!ElfInterface32::Init(load_bias)) { in Init()
109 return ElfInterface32::Step(pc, regs, process_memory, finished, is_signal_frame) || in Step()
178 if (ElfInterface32::GetFunctionName(addr | 1, name, offset)) { in GetFunctionName()
DElfInterfaceArm.h31 class ElfInterfaceArm : public ElfInterface32 {
33 ElfInterfaceArm(Memory* memory) : ElfInterface32(memory) {} in ElfInterfaceArm()
DElf.cpp235 ElfInterface32::GetMaxSize(memory, size); in GetInfo()
299 interface.reset(new ElfInterface32(memory)); in CreateInterfaceFromMemory()
302 interface.reset(new ElfInterface32(memory)); in CreateInterfaceFromMemory()
/system/unwinding/libunwindstack/include/unwindstack/
DElfInterface.h224 using ElfInterface32 = ElfInterfaceImpl<ElfTypes32>; variable