Home
last modified time | relevance | path

Searched refs:Rel (Results 1 – 6 of 6) sorted by relevance

/bionic/tools/relocation_packer/src/
Delf_file.h91 static void ConvertRelArrayToRelaVector(const typename ELF::Rel* rel_array, size_t rel_array_size,
95 std::vector<typename ELF::Rel>* rel_vector);
Delf_traits.h26 typedef Elf32_Rel Rel; typedef
50 typedef Elf64_Rel Rel; typedef
Delf_file.cc695 const typename ELF::Rel* relocations_base = reinterpret_cast<typename ELF::Rel*>(data->d_buf); in PackRelocations()
697 data->d_size / sizeof(typename ELF::Rel), &relocations); in PackRelocations()
732 relocations_type_ == RELA ? sizeof(typename ELF::Rela) : sizeof(typename ELF::Rel); in PackTypedRelocations()
878 relocations_type_ == REL ? sizeof(typename ELF::Rel) : sizeof(typename ELF::Rela); in UnpackTypedRelocations()
904 std::vector<typename ELF::Rel> unpacked_rel_relocations; in UnpackTypedRelocations()
974 void ElfFile<ELF>::ConvertRelArrayToRelaVector(const typename ELF::Rel* rel_array, in ConvertRelArrayToRelaVector()
988 std::vector<typename ELF::Rel>* rel_vector) { in ConvertRelaVectorToRelVector()
990 typename ELF::Rel rel; in ConvertRelaVectorToRelVector()
/bionic/linker/
Dlinker_reloc_iterators.h45 typedef ElfW(Rel) rel_t;
71 typedef ElfW(Rel) rel_t;
Dlinker_soinfo.h139 ElfW(Rel)* plt_rel_;
142 ElfW(Rel)* rel_;
Dlinker.cpp2488 static ElfW(Addr) get_addend(ElfW(Rel)* rel, ElfW(Addr) reloc_addr) { in get_addend()
2973 plt_rel_ = reinterpret_cast<ElfW(Rel)*>(load_bias + d->d_un.d_ptr); in prelink_image()
2981 plt_rel_count_ = d->d_un.d_val / sizeof(ElfW(Rel)); in prelink_image()
3052 rel_ = reinterpret_cast<ElfW(Rel)*>(load_bias + d->d_un.d_ptr); in prelink_image()
3056 rel_count_ = d->d_un.d_val / sizeof(ElfW(Rel)); in prelink_image()
3060 if (d->d_un.d_val != sizeof(ElfW(Rel))) { in prelink_image()