Searched refs:relocations_type_ (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/tools/relocation_packer/src/
H A Delf_file.h75 android_relocations_section_(NULL), relocations_type_(NONE) {}
131 enum { NONE = 0, REL, RELA } relocations_type_; member in class:relocation_packer::ElfFile
H A Delf_file.cc280 relocations_type_ = has_rel_relocations ? REL : RELA;
948 if (relocations_type_ == REL) {
959 if (relocations_type_ == RELA) {
1153 CHECK(relocations_type_ == REL);
1164 CHECK(relocations_type_ == RELA);
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_elf_relocations.cpp191 relocations_type_ = dyn_value;
280 // If DT_PLTREL did not explicitly assign relocations_type_, set it
282 if (relocations_type_ != DT_REL && relocations_type_ != DT_RELA) {
284 relocations_type_ = DT_REL;
286 relocations_type_ = DT_RELA;
289 if (relocations_type_ == DT_REL && has_rela_relocations) {
293 if (relocations_type_ == DT_RELA && has_rel_relocations) {
313 if (relocations_type_ == DT_REL) {
328 if (relocations_type_
[all...]
H A Dcrazy_linker_elf_relocations.h125 ELF::Addr relocations_type_; member in class:crazy::ElfRelocations

Completed in 803 milliseconds