Home | History | Annotate | Download | only in libunwindstack

Lines Matching refs:Elf

17 #include <elf.h>
26 #include <unwindstack/Elf.h>
38 bool Elf::Init() {
59 void Elf::InitGnuDebugdata() {
79 bool Elf::GetSoname(std::string* name) {
83 uint64_t Elf::GetRelPc(uint64_t pc, const MapInfo* map_info) {
92 bool Elf::GetFunctionName(uint64_t addr, std::string* name, uint64_t* func_offset) {
98 bool Elf::Step(uint64_t rel_pc, Regs* regs, Memory* process_memory) {
105 uint64_t Elf::GetLoadBias() {
110 bool Elf::IsValidElf(Memory* memory) {
115 // Verify that this is a valid elf file.
127 ElfInterface* Elf::CreateInterfaceFromMemory(Memory* memory) {
144 ALOGI("32 bit elf that is neither arm nor x86: e_machine = %d\n", e_machine);
154 ALOGI("32 bit elf that is neither arm nor x86: e_machine = %d\n", e_machine);
164 ALOGI("64 bit elf that is neither aarch64 nor x86_64: e_machine = %d\n", e_machine);