Searched refs:ELFRela (Results 1 – 3 of 3) sorted by relevance
346 struct ELFRela { struct351 ELFRela(); argument370 static unsigned RelocType32(const ELFRela &rela) { in RelocType32() argument375 static unsigned RelocType64(const ELFRela &rela) { in RelocType64() argument381 static unsigned RelocSymbol32(const ELFRela &rela) { in RelocSymbol32() argument387 static unsigned RelocSymbol64(const ELFRela &rela) { in RelocSymbol64() argument
426 ELFRela::ELFRela() { memset(this, 0, sizeof(ELFRela)); } in ELFRela() function in ELFRela428 bool ELFRela::Parse(const lldb_private::DataExtractor &data, in Parse()
125 bool IsRela() { return (reloc.is<ELFRela *>()); } in IsRela()138 reloc = new ELFRela(); in ELFRelocation()149 delete reloc.get<ELFRela *>(); in ~ELFRelocation()164 return ELFRela::RelocType32(*rel.reloc.get<ELFRela *>()); in RelocType32()171 return ELFRela::RelocType64(*rel.reloc.get<ELFRela *>()); in RelocType64()178 return ELFRela::RelocSymbol32(*rel.reloc.get<ELFRela *>()); in RelocSymbol32()185 return ELFRela::RelocSymbol64(*rel.reloc.get<ELFRela *>()); in RelocSymbol64()192 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset32()199 return rel.reloc.get<ELFRela *>()->r_offset; in RelocOffset64()206 return rel.reloc.get<ELFRela *>()->r_addend; in RelocAddend32()[all …]