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

/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.h373 /// @class ELFRela
375 struct ELFRela struct in namespace:elf
381 ELFRela();
383 /// Parse an ELFRela entry from the given DataExtractor starting at position
396 /// True if the ELFRela entry was successfully read and false otherwise.
402 RelocType32(const ELFRela &rela)
409 RelocType64(const ELFRela &rela)
417 RelocSymbol32(const ELFRela &rela)
425 RelocSymbol64(const ELFRela &rela)
H A DELFHeader.cpp442 // ELFRela
444 ELFRela::ELFRela() function in class:ELFRela
446 memset(this, 0, sizeof(ELFRela));
450 ELFRela::Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset)
H A DObjectFileELF.cpp40 /// @brief Generic wrapper for ELFRel and ELFRela.
42 /// This helper class allows us to parse both ELFRel and ELFRela relocation
72 typedef llvm::PointerUnion<ELFRel*, ELFRela*> RelocUnion;
82 reloc = new ELFRela();
94 delete reloc.get<ELFRela*>();
103 return reloc.get<ELFRela*>()->Parse(data, offset);
112 return ELFRela::RelocType32(*rel.reloc.get<ELFRela*>());
121 return ELFRela::RelocType64(*rel.reloc.get<ELFRela*>());
[all...]

Completed in 84 milliseconds