Searched refs:GetGlobal (Results 1 – 4 of 4) sorted by relevance
/system/core/libunwindstack/ |
D | Symbols.cpp | 107 bool Symbols::GetGlobal(Memory* elf_memory, const std::string& name, uint64_t* memory_address) { in GetGlobal() function in unwindstack::Symbols 135 template bool Symbols::GetGlobal<Elf32_Sym>(Memory*, const std::string&, uint64_t*); 136 template bool Symbols::GetGlobal<Elf64_Sym>(Memory*, const std::string&, uint64_t*);
|
D | Symbols.h | 50 bool GetGlobal(Memory* elf_memory, const std::string& name, uint64_t* memory_address);
|
D | ElfInterface.cpp | 452 if (symbol->GetGlobal<SymType>(memory_, name, memory_address)) { in GetGlobalVariableWithTemplate()
|
/system/core/libunwindstack/tests/ |
D | SymbolsTest.cpp | 347 EXPECT_TRUE(symbols.GetGlobal<TypeParam>(&this->memory_, "global_0", &offset)); in TYPED_TEST_P() 348 EXPECT_TRUE(symbols.GetGlobal<TypeParam>(&this->memory_, "global_1", &offset)); in TYPED_TEST_P() 349 EXPECT_TRUE(symbols.GetGlobal<TypeParam>(&this->memory_, "global_0", &offset)); in TYPED_TEST_P() 350 EXPECT_TRUE(symbols.GetGlobal<TypeParam>(&this->memory_, "global_1", &offset)); in TYPED_TEST_P() 352 EXPECT_FALSE(symbols.GetGlobal<TypeParam>(&this->memory_, "function_0", &offset)); in TYPED_TEST_P() 353 EXPECT_FALSE(symbols.GetGlobal<TypeParam>(&this->memory_, "function_1", &offset)); in TYPED_TEST_P()
|