reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
  103   static unsigned RelocType32(const ELFRelocation &rel);
  105   static unsigned RelocType64(const ELFRelocation &rel);
  107   static unsigned RelocSymbol32(const ELFRelocation &rel);
  109   static unsigned RelocSymbol64(const ELFRelocation &rel);
  111   static unsigned RelocOffset32(const ELFRelocation &rel);
  113   static unsigned RelocOffset64(const ELFRelocation &rel);
  115   static unsigned RelocAddend32(const ELFRelocation &rel);
  117   static unsigned RelocAddend64(const ELFRelocation &rel);
  151 unsigned ELFRelocation::RelocType32(const ELFRelocation &rel) {
  158 unsigned ELFRelocation::RelocType64(const ELFRelocation &rel) {
  165 unsigned ELFRelocation::RelocSymbol32(const ELFRelocation &rel) {
  172 unsigned ELFRelocation::RelocSymbol64(const ELFRelocation &rel) {
  179 unsigned ELFRelocation::RelocOffset32(const ELFRelocation &rel) {
  186 unsigned ELFRelocation::RelocOffset64(const ELFRelocation &rel) {
  193 unsigned ELFRelocation::RelocAddend32(const ELFRelocation &rel) {
  200 unsigned ELFRelocation::RelocAddend64(const ELFRelocation &rel) {
 2415   ELFRelocation rel(rel_type);
 2424   typedef unsigned (*reloc_info_fn)(const ELFRelocation &rel);
 2429     reloc_type = ELFRelocation::RelocType32;
 2430     reloc_symbol = ELFRelocation::RelocSymbol32;
 2432     reloc_type = ELFRelocation::RelocType64;
 2433     reloc_symbol = ELFRelocation::RelocSymbol64;
 2549   ELFRelocation rel(rel_hdr->sh_type);
 2552   typedef unsigned (*reloc_info_fn)(const ELFRelocation &rel);
 2557     reloc_type = ELFRelocation::RelocType32;
 2558     reloc_symbol = ELFRelocation::RelocSymbol32;
 2560     reloc_type = ELFRelocation::RelocType64;
 2561     reloc_symbol = ELFRelocation::RelocSymbol64;
 2595               ELFRelocation::RelocOffset64(rel));
 2596           uint64_t val_offset = value + ELFRelocation::RelocAddend64(rel);
 2607           value += ELFRelocation::RelocAddend32(rel);
 2622               ELFRelocation::RelocOffset32(rel));