Home
last modified time | relevance | path

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

/art/dex2oat/linker/
Delf_writer_test.cc53 EXPECT_EQ(expected_value, (ef)->FindDynamicSymbolAddress(symbol_name)); \
115 reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatdata"))); in TEST_F()
117 reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatexec"))); in TEST_F()
119 reinterpret_cast<uintptr_t>(ef->FindDynamicSymbolAddress("oatlastword"))); in TEST_F()
/art/runtime/
Delf_file.h63 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name) const;
Doat_file.cc134 virtual const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name,
336 begin_ = FindDynamicSymbolAddress("oatdata", &symbol_error_msg); in ComputeFields()
343 end_ = FindDynamicSymbolAddress("oatlastword", &symbol_error_msg); in ComputeFields()
353 data_bimg_rel_ro_begin_ = FindDynamicSymbolAddress("oatdatabimgrelro", &symbol_error_msg); in ComputeFields()
356 FindDynamicSymbolAddress("oatdatabimgrelrolastword", &symbol_error_msg); in ComputeFields()
366 bss_begin_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbss", &symbol_error_msg)); in ComputeFields()
371 bss_end_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbsslastword", &symbol_error_msg)); in ComputeFields()
380 const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbssmethods", &symbol_error_msg)); in ComputeFields()
382 bss_roots_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatbssroots", &symbol_error_msg)); in ComputeFields()
385 vdex_begin_ = const_cast<uint8_t*>(FindDynamicSymbolAddress("oatdex", &symbol_error_msg)); in ComputeFields()
[all …]
Delf_file_impl.h87 const uint8_t* FindDynamicSymbolAddress(const std::string& symbol_name) const;
Delf_file.cc750 const uint8_t* ElfFileImpl<ElfTypes>::FindDynamicSymbolAddress( in FindDynamicSymbolAddress() function in art::ElfFileImpl
1810 const uint8_t* ElfFile::FindDynamicSymbolAddress(const std::string& symbol_name) const { in FindDynamicSymbolAddress() function in art::ElfFile
1811 DELEGATE_TO_IMPL(FindDynamicSymbolAddress, symbol_name); in FindDynamicSymbolAddress()