Lines Matching refs:ELFRelocation
44 class ELFRelocation class
52 ELFRelocation(unsigned type);
54 ~ELFRelocation();
60 RelocType32(const ELFRelocation &rel);
63 RelocType64(const ELFRelocation &rel);
66 RelocSymbol32(const ELFRelocation &rel);
69 RelocSymbol64(const ELFRelocation &rel);
77 ELFRelocation::ELFRelocation(unsigned type) in ELFRelocation() function in __anonacd6c33a0111::ELFRelocation
89 ELFRelocation::~ELFRelocation() in ~ELFRelocation()
98 ELFRelocation::Parse(const lldb_private::DataExtractor &data, lldb::offset_t *offset) in Parse()
107 ELFRelocation::RelocType32(const ELFRelocation &rel) in RelocType32()
116 ELFRelocation::RelocType64(const ELFRelocation &rel) in RelocType64()
125 ELFRelocation::RelocSymbol32(const ELFRelocation &rel) in RelocSymbol32()
134 ELFRelocation::RelocSymbol64(const ELFRelocation &rel) in RelocSymbol64()
1304 ELFRelocation rel(rel_type); in ParsePLTRelocations()
1310 typedef unsigned (*reloc_info_fn)(const ELFRelocation &rel); in ParsePLTRelocations()
1316 reloc_type = ELFRelocation::RelocType32; in ParsePLTRelocations()
1317 reloc_symbol = ELFRelocation::RelocSymbol32; in ParsePLTRelocations()
1321 reloc_type = ELFRelocation::RelocType64; in ParsePLTRelocations()
1322 reloc_symbol = ELFRelocation::RelocSymbol64; in ParsePLTRelocations()