Searched defs:rel (Results 1 - 2 of 2) sorted by relevance

/bionic/linker/
H A Dlinker_mips.cpp57 const auto rel = rel_iterator.next(); local
59 if (rel == nullptr) {
63 ElfW(Word) type = ELFW(R_TYPE)(rel->r_info);
64 ElfW(Word) sym = ELFW(R_SYM)(rel->r_info);
66 ElfW(Addr) reloc = static_cast<ElfW(Addr)>(rel->r_offset + load_bias);
107 if (ELF64_R_TYPE2(rel->r_info) != R_MIPS_64 ||
108 ELF64_R_TYPE3(rel->r_info) != R_MIPS_NONE) {
110 type, static_cast<unsigned>(ELF64_R_TYPE2(rel->r_info)),
111 static_cast<unsigned>(ELF64_R_TYPE3(rel->r_info)), rel, id
[all...]
/bionic/tools/relocation_packer/src/
H A Delf_file.cc131 // the .rel.dyn or .rela.dyn, .dynamic, and .android.rel.dyn or
212 if ((name == ".rel.dyn" || name == ".rela.dyn") &&
238 LOG(ERROR) << "Missing or empty .rel.dyn or .rela.dyn section";
792 // TODO (dimitry): fix string table and replace .rel.dyn/plt with .android.rel.dyn/plt
982 typename ELF::Rel rel; local
983 rel.r_offset = rela.r_offset;
984 rel.r_info = rela.r_info;
986 rel_vector->push_back(rel);
[all...]

Completed in 93 milliseconds