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

/bionic/linker/
H A Dlinker_mips.cpp59 const auto rel = rel_iterator.next(); local
61 if (rel == nullptr) {
65 ElfW(Word) type = ELFW(R_TYPE)(rel->r_info);
66 ElfW(Word) sym = ELFW(R_SYM)(rel->r_info);
68 ElfW(Addr) reloc = static_cast<ElfW(Addr)>(rel->r_offset + load_bias);
109 if (ELF64_R_TYPE2(rel->r_info) != R_MIPS_64 ||
110 ELF64_R_TYPE3(rel->r_info) != R_MIPS_NONE) {
112 type, static_cast<unsigned>(ELF64_R_TYPE2(rel->r_info)),
113 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 857 milliseconds