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.cc619 const typename ELF::Rel* relocations_base = reinterpret_cast<typename ELF::Rel*>(data->d_buf); in PackRelocations()
621 data->d_size / sizeof(typename ELF::Rel), &relocations); in PackRelocations()
656 relocations_type_ == RELA ? sizeof(typename ELF::Rela) : sizeof(typename ELF::Rel); in PackTypedRelocations()
797 relocations_type_ == REL ? sizeof(typename ELF::Rel) : sizeof(typename ELF::Rela); in UnpackTypedRelocations()
823 std::vector<typename ELF::Rel> unpacked_rel_relocations; in UnpackTypedRelocations()
893 void ElfFile<ELF>::ConvertRelArrayToRelaVector(const typename ELF::Rel* rel_array, in ConvertRelArrayToRelaVector()
907 std::vector<typename ELF::Rel>* rel_vector) { in ConvertRelaVectorToRelVector()
909 typename ELF::Rel rel; in ConvertRelaVectorToRelVector()
/bionic/linker/
Dlinker_reloc_iterators.h33 typedef ElfW(Rel) rel_t;
59 typedef ElfW(Rel) rel_t;
Dlinker.h222 ElfW(Rel)* plt_rel_;
225 ElfW(Rel)* rel_;
Dlinker.cpp1822 static ElfW(Addr) get_addend(ElfW(Rel)* rel, ElfW(Addr) reloc_addr) { in get_addend()
2599 plt_rel_ = reinterpret_cast<ElfW(Rel)*>(load_bias + d->d_un.d_ptr); in prelink_image()
2607 plt_rel_count_ = d->d_un.d_val / sizeof(ElfW(Rel)); in prelink_image()
2678 rel_ = reinterpret_cast<ElfW(Rel)*>(load_bias + d->d_un.d_ptr); in prelink_image()
2682 rel_count_ = d->d_un.d_val / sizeof(ElfW(Rel)); in prelink_image()
2686 if (d->d_un.d_val != sizeof(ElfW(Rel))) { in prelink_image()