Home
last modified time | relevance | path

Searched refs:relocator (Results 1 – 1 of 1) sorted by relevance

/bionic/linker/
Dlinker_relocate.cpp97 static inline bool lookup_symbol(Relocator& relocator, uint32_t r_sym, const char* sym_name, in lookup_symbol() argument
99 if (r_sym == relocator.cache_sym_val) { in lookup_symbol()
100 *found_in = relocator.cache_si; in lookup_symbol()
101 *sym = relocator.cache_sym; in lookup_symbol()
105 if (!relocator.si->lookup_version_info(relocator.version_tracker, r_sym, sym_name, &vi)) { in lookup_symbol()
110 …const ElfW(Sym)* local_sym = soinfo_do_lookup(sym_name, vi, &local_found_in, relocator.lookup_list… in lookup_symbol()
112 relocator.cache_sym_val = r_sym; in lookup_symbol()
113 relocator.cache_si = local_found_in; in lookup_symbol()
114 relocator.cache_sym = local_sym; in lookup_symbol()
120 if (ELF_ST_BIND(relocator.si_symtab[r_sym].st_info) != STB_WEAK) { in lookup_symbol()
[all …]