Home
last modified time | relevance | path

Searched refs:FindDynamicSymbolAddress (Results 1 – 5 of 5) sorted by relevance

/art/compiler/
Delf_writer_test.cc48 EXPECT_EQ(expected_value, (ef)->FindDynamicSymbolAddress(symbol_name)); \
99 reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatdata"))); in TEST_F()
101 reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatexec"))); in TEST_F()
103 reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatlastword"))); in TEST_F()
/art/runtime/
Delf_file.h58 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name) const;
Doat_file.cc108 virtual const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name,
210 begin_ = FindDynamicSymbolAddress("oatdata", &symbol_error_msg); in ComputeFields()
227 end_ = FindDynamicSymbolAddress("oatlastword", &symbol_error_msg); in ComputeFields()
237 bss_begin_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbss", &symbol_error_msg)); in ComputeFields()
242 bss_end_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbsslastword", &symbol_error_msg)); in ComputeFields()
251 const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbssmethods", &symbol_error_msg)); in ComputeFields()
253 bss_roots_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbssroots", &symbol_error_msg)); in ComputeFields()
700 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name, in FindDynamicSymbolAddress() function in art::FINAL
961 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name, in FindDynamicSymbolAddress() function in art::FINAL
963 const uint8_t* ptr = elf_file_->FindDynamicSymbolAddress(symbol_name); in FindDynamicSymbolAddress()
Delf_file_impl.h93 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name) const;
Delf_file.cc760 const uint8_t* ElfFileImpl<ElfTypes>::FindDynamicSymbolAddress( in FindDynamicSymbolAddress() function in art::ElfFileImpl
1797 const uint8_t* ElfFile::FindDynamicSymbolAddress(const std::string& symbol_name) const { in FindDynamicSymbolAddress() function in art::ElfFile
1798 DELEGATE_TO_IMPL(FindDynamicSymbolAddress, symbol_name); in FindDynamicSymbolAddress()