Home
last modified time | relevance | path

Searched refs:memory_address (Results 1 – 4 of 4) sorted by relevance

/system/core/libunwindstack/include/unwindstack/
DElfInterface.h63 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/
DSymbols.h47 bool GetGlobal(Memory* elf_memory, const std::string& name, uint64_t* memory_address);
DSymbols.cpp150 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()
DElfInterface.cpp489 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()