Searched refs:ELFRel (Results 1 – 3 of 3) sorted by relevance
323 struct ELFRel { struct327 ELFRel(); argument346 static unsigned RelocType32(const ELFRel &rel) { return rel.r_info & 0x0ff; } in RelocType32() argument349 static unsigned RelocType64(const ELFRel &rel) { in RelocType64() argument355 static unsigned RelocSymbol32(const ELFRel &rel) { return rel.r_info >> 8; } in RelocSymbol32() argument359 static unsigned RelocSymbol64(const ELFRel &rel) { return rel.r_info >> 32; } in RelocSymbol64() argument
416 ELFRel::ELFRel() { memset(this, 0, sizeof(ELFRel)); } in ELFRel() function in ELFRel418 bool ELFRel::Parse(const lldb_private::DataExtractor &data, in Parse()
159 reloc = new ELFRel(); in ELFRelocation()169 if (reloc.is<ELFRel *>()) in ~ELFRelocation()177 if (reloc.is<ELFRel *>()) in Parse()184 if (rel.reloc.is<ELFRel *>()) in RelocType32()185 return ELFRel::RelocType32(*rel.reloc.get<ELFRel *>()); in RelocType32()191 if (rel.reloc.is<ELFRel *>()) in RelocType64()192 return ELFRel::RelocType64(*rel.reloc.get<ELFRel *>()); in RelocType64()198 if (rel.reloc.is<ELFRel *>()) in RelocSymbol32()199 return ELFRel::RelocSymbol32(*rel.reloc.get<ELFRel *>()); in RelocSymbol32()205 if (rel.reloc.is<ELFRel *>()) in RelocSymbol64()[all …]