Home
last modified time | relevance | path

Searched refs:Rela (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/android_crazy_linker/src/src/
Dcrazy_linker_elf_relocations.cpp290 if (!ApplyRelaRelocs(reinterpret_cast<ELF::Rela*>(plt_relocations_), in ApplyAll()
291 plt_relocations_size_ / sizeof(ELF::Rela), in ApplyAll()
296 if (!ApplyRelaRelocs(reinterpret_cast<ELF::Rela*>(relocations_), in ApplyAll()
297 relocations_size_ / sizeof(ELF::Rela), in ApplyAll()
320 bool ElfRelocations::ApplyRelaReloc(const ELF::Rela* rela, in ApplyRelaReloc()
597 bool ElfRelocations::ApplyRelaRelocs(const ELF::Rela* rela, in ApplyRelaRelocs()
737 const ELF::Rela* rel = reinterpret_cast<ELF::Rela*>(relocations_); in RelocateRela()
738 const size_t relocations_count = relocations_size_ / sizeof(ELF::Rela); in RelocateRela()
739 const ELF::Rela* rel_limit = rel + relocations_count; in RelocateRela()
Delf_traits.h24 typedef Elf32_Rela Rela; typedef
48 typedef Elf64_Rela Rela; typedef
Dcrazy_linker_elf_relocations.h66 bool ApplyRelaReloc(const ELF::Rela* rela,
74 bool ApplyRelaRelocs(const ELF::Rela* relocs,
/external/elfutils/0.153/libelf/
Dabstract.h169 START (32, Rela, Ext##Rela) \
173 END (32, Ext##Rela)
175 START (64, Rela, Ext##Rela) \
179 END (64, Ext##Rela)
Dgelf_xlate.h67 TYPE (Rela, LIBELFBITS)
Delf_getdata.c112 [ELF_T_RELA] = __alignof__ (ElfW2(Bits,Rela)), \
/external/llvm/tools/llvm-readobj/
DELFDumper.cpp646 typename ELFO::Elf_Rela Rela; in printRelocations() local
647 Rela.r_offset = RI->r_offset; in printRelocations()
648 Rela.r_info = RI->r_info; in printRelocations()
649 Rela.r_addend = 0; in printRelocations()
650 printRelocation(Sec, Rela); in printRelocations()
/external/llvm/include/llvm/Object/
DELFObjectFile.h127 const Elf_Rela *getRela(DataRefImpl Rela) const;
771 ELFObjectFile<ELFT>::getRela(DataRefImpl Rela) const { in getRela() argument
772 return EF.template getEntry<Elf_Rela>(Rela.d.a, Rela.d.b); in getRela()