Searched refs:memory_address (Results 1 – 4 of 4) sorted by relevance
/system/core/libunwindstack/include/unwindstack/ |
D | ElfInterface.h | 63 virtual bool GetGlobalVariable(const std::string& name, uint64_t* memory_address) = 0; 132 bool GetGlobalVariableWithTemplate(const std::string& name, uint64_t* memory_address); 203 bool GetGlobalVariable(const std::string& name, uint64_t* memory_address) override { in GetGlobalVariable() argument 204 return ElfInterface::GetGlobalVariableWithTemplate<Elf32_Sym>(name, memory_address); in GetGlobalVariable() 231 bool GetGlobalVariable(const std::string& name, uint64_t* memory_address) override { in GetGlobalVariable() argument 232 return ElfInterface::GetGlobalVariableWithTemplate<Elf64_Sym>(name, memory_address); in GetGlobalVariable()
|
/system/core/libunwindstack/ |
D | Symbols.h | 47 bool GetGlobal(Memory* elf_memory, const std::string& name, uint64_t* memory_address);
|
D | Symbols.cpp | 150 bool Symbols::GetGlobal(Memory* elf_memory, const std::string& name, uint64_t* memory_address) { in GetGlobal() argument 163 *memory_address = entry.st_value; in GetGlobal()
|
D | ElfInterface.cpp | 489 bool ElfInterface::GetGlobalVariableWithTemplate(const std::string& name, uint64_t* memory_address)… in GetGlobalVariableWithTemplate() argument 495 if (symbol->GetGlobal<SymType>(memory_, name, memory_address)) { in GetGlobalVariableWithTemplate()
|