Home | History | Annotate | Download | only in libunwindstack

Lines Matching refs:Elf

23 #include <unwindstack/Elf.h>
54 // valid elf data. Check if this is a valid elf, and if not assume
56 if (offset != 0 && !Elf::IsValidElf(file_memory.get())) {
57 // Don't bother checking the validity that will happen on the elf init.
78 Elf* MapInfo::GetElf(pid_t pid, bool init_gnu_debugdata) {
79 if (elf) {
80 return elf;
83 elf = new Elf(CreateMemory(pid));
84 if (elf->Init() && init_gnu_debugdata) {
85 elf->InitGnuDebugdata();
87 // If the init fails, keep the elf around as an invalid object so we
89 return elf;