Lines Matching refs:ELFRela
122 typedef llvm::PointerUnion<ELFRel *, ELFRela *> RelocUnion;
131 reloc = new ELFRela(); in ELFRelocation()
142 delete reloc.get<ELFRela *>(); in ~ELFRelocation()
150 return reloc.get<ELFRela *>()->Parse(data, offset); in Parse()
157 return ELFRela::RelocType32(*rel.reloc.get<ELFRela *>()); in RelocType32()
164 return ELFRela::RelocType64(*rel.reloc.get<ELFRela *>()); in RelocType64()
171 return ELFRela::RelocSymbol32(*rel.reloc.get<ELFRela *>()); in RelocSymbol32()
178 return ELFRela::RelocSymbol64(*rel.reloc.get<ELFRela *>()); in RelocSymbol64()
185 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset32()
192 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset64()
199 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend32()
206 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend64()