Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/ObjectFile/ELF/
DELFHeader.h317 struct ELFRel struct
322 ELFRel(); argument
343 RelocType32(const ELFRel &rel) in RelocType32() argument
350 RelocType64(const ELFRel &rel) in RelocType64() argument
358 RelocSymbol32(const ELFRel &rel) in RelocSymbol32() argument
366 RelocSymbol64(const ELFRel &rel) in RelocSymbol64() argument
DObjectFileELF.cpp72 typedef llvm::PointerUnion<ELFRel*, ELFRela*> RelocUnion;
80 reloc = new ELFRel(); in ELFRelocation()
85 reloc = static_cast<ELFRel*>(NULL); in ELFRelocation()
91 if (reloc.is<ELFRel*>()) in ~ELFRelocation()
92 delete reloc.get<ELFRel*>(); in ~ELFRelocation()
100 if (reloc.is<ELFRel*>()) in Parse()
101 return reloc.get<ELFRel*>()->Parse(data, offset); in Parse()
109 if (rel.reloc.is<ELFRel*>()) in RelocType32()
110 return ELFRel::RelocType32(*rel.reloc.get<ELFRel*>()); in RelocType32()
118 if (rel.reloc.is<ELFRel*>()) in RelocType64()
[all …]
DELFHeader.cpp424 ELFRel::ELFRel() in ELFRel() function in ELFRel
426 memset(this, 0, sizeof(ELFRel)); in ELFRel()
430 ELFRel::Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset) in Parse()