Home
last modified time | relevance | path

Searched refs:ELFRela (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
HDELFHeader.h375 struct ELFRela struct
381 ELFRela(); argument
402 RelocType32(const ELFRela &rela) in RelocType32() argument
409 RelocType64(const ELFRela &rela) in RelocType64() argument
417 RelocSymbol32(const ELFRela &rela) in RelocSymbol32() argument
425 RelocSymbol64(const ELFRela &rela) in RelocSymbol64() argument
HDELFHeader.cpp458 ELFRela::ELFRela() in ELFRela() function in ELFRela
460 memset(this, 0, sizeof(ELFRela)); in ELFRela()
464 ELFRela::Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset) in Parse()
HDObjectFileELF.cpp115 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 …]