Lines Matching refs:Relocator
59 class Relocator { class
61 Relocator(const VersionTracker& version_tracker, const SymbolLookupList& lookup_list) in Relocator() function in Relocator
95 static inline bool lookup_symbol(Relocator& relocator, uint32_t r_sym, const char* sym_name, in lookup_symbol()
156 static bool process_relocation_general(Relocator& relocator, const rel_t& reloc);
160 static bool process_relocation_impl(Relocator& relocator, const rel_t& reloc) { in process_relocation_impl()
513 static bool process_relocation_general(Relocator& relocator, const rel_t& reloc) { in process_relocation_general()
519 static inline bool process_relocation(Relocator& relocator, const rel_t& reloc) { in process_relocation()
527 static bool plain_relocate_impl(Relocator& relocator, rel_t* rels, size_t rel_count) { in plain_relocate_impl()
538 static bool packed_relocate_impl(Relocator& relocator, sleb128_decoder decoder) { in packed_relocate_impl()
544 static bool needs_slow_relocate_loop(const Relocator& relocator __unused) { in needs_slow_relocate_loop()
560 static bool plain_relocate(Relocator& relocator, Args ...args) { in plain_relocate()
567 static bool packed_relocate(Relocator& relocator, Args ...args) { in packed_relocate()
581 Relocator relocator(version_tracker, lookup_list); in relocate()