Searched refs:sym_name (Results 1 – 4 of 4) sorted by relevance
/bionic/linker/ |
D | linker_mips.cpp | 63 const char* sym_name = nullptr; in relocate() local 74 sym_name = get_string(symtab_[sym].st_name); in relocate() 77 if (!lookup_version_info(version_tracker, sym, sym_name, &vi)) { in relocate() 81 if (!soinfo_do_lookup(this, sym_name, vi, &lsi, global_group, local_group, &s)) { in relocate() 87 DL_ERR("cannot locate symbol \"%s\" referenced by \"%s\"...", sym_name, get_soname()); in relocate() 112 static_cast<size_t>(sym_addr), sym_name ? sym_name : "*SECTIONHDR*"); in relocate() 156 const char* sym_name = get_string(local_sym->st_name); in mips_relocate_got() local 165 if (!lookup_version_info(version_tracker, sym, sym_name, &vi)) { in mips_relocate_got() 169 if (!soinfo_do_lookup(this, sym_name, vi, &lsi, global_group, local_group, &s)) { in mips_relocate_got() 174 DL_ERR("%s: invalid symbol \"%s\" (PROTECTED/UNDEFINED) ", get_soname(), sym_name); in mips_relocate_got() [all …]
|
D | linker.cpp | 1805 const char* sym_name, const version_info** vi) { in lookup_version_info() argument 1814 "referenced by symbol \"%s\" at \"%s\"", sym_ver, sym_name, get_realpath()); in lookup_version_info() 1854 const char* sym_name = nullptr; in relocate() local 1866 sym_name = get_string(symtab_[sym].st_name); in relocate() 1869 if (!lookup_version_info(version_tracker, sym, sym_name, &vi)) { in relocate() 1873 if (!soinfo_do_lookup(this, sym_name, vi, &lsi, global_group, local_group, &s)) { in relocate() 1881 DL_ERR("cannot locate symbol \"%s\" referenced by \"%s\"...", sym_name, get_realpath()); in relocate() 1969 reinterpret_cast<void*>(sym_addr + addend), sym_name); in relocate() 1978 reinterpret_cast<void*>(sym_addr + addend), sym_name); in relocate() 2028 reloc, (sym_addr + addend), sym_name); in relocate() [all …]
|
D | linker.h | 346 const char* sym_name, const version_info** vi);
|
/bionic/libc/tools/ |
D | genlibgcc_compat.py | 123 for sym_name in symbol_list: 124 fres.write("extern char "+sym_name+";\n") 128 for sym_name in symbol_list: 129 fres.write(" &"+sym_name+",\n")
|