Lines Matching refs:ELFRela
124 typedef llvm::PointerUnion<ELFRel *, ELFRela *> RelocUnion;
133 reloc = new ELFRela(); in ELFRelocation()
144 delete reloc.get<ELFRela *>(); in ~ELFRelocation()
152 return reloc.get<ELFRela *>()->Parse(data, offset); in Parse()
159 return ELFRela::RelocType32(*rel.reloc.get<ELFRela *>()); in RelocType32()
166 return ELFRela::RelocType64(*rel.reloc.get<ELFRela *>()); in RelocType64()
173 return ELFRela::RelocSymbol32(*rel.reloc.get<ELFRela *>()); in RelocSymbol32()
180 return ELFRela::RelocSymbol64(*rel.reloc.get<ELFRela *>()); in RelocSymbol64()
187 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset32()
194 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset64()
201 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend32()
208 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend64()