Searched refs:ELFRela (Results 1 – 3 of 3) sorted by relevance
375 struct ELFRela struct381 ELFRela(); argument402 RelocType32(const ELFRela &rela) in RelocType32() argument409 RelocType64(const ELFRela &rela) in RelocType64() argument417 RelocSymbol32(const ELFRela &rela) in RelocSymbol32() argument425 RelocSymbol64(const ELFRela &rela) in RelocSymbol64() argument
458 ELFRela::ELFRela() in ELFRela() function in ELFRela460 memset(this, 0, sizeof(ELFRela)); in ELFRela()464 ELFRela::Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset) in Parse()
115 typedef llvm::PointerUnion<ELFRel*, ELFRela*> RelocUnion;125 reloc = new ELFRela(); in ELFRelocation()137 delete reloc.get<ELFRela*>(); in ~ELFRelocation()146 return reloc.get<ELFRela*>()->Parse(data, offset); in Parse()155 return ELFRela::RelocType32(*rel.reloc.get<ELFRela*>()); in RelocType32()164 return ELFRela::RelocType64(*rel.reloc.get<ELFRela*>()); in RelocType64()173 return ELFRela::RelocSymbol32(*rel.reloc.get<ELFRela*>()); in RelocSymbol32()182 return ELFRela::RelocSymbol64(*rel.reloc.get<ELFRela*>()); in RelocSymbol64()191 return rel.reloc.get<ELFRela*>()->r_offset; in RelocOffset32()200 return rel.reloc.get<ELFRela*>()->r_offset; in RelocOffset64()[all …]