Lines Matching refs:symbol
86 void* dlsym(void* handle, const char* symbol) {
96 if (symbol == nullptr) {
97 __bionic_format_dlerror("dlsym symbol name is null", nullptr);
104 sym = dlsym_linear_lookup(symbol, &found, nullptr);
111 sym = dlsym_linear_lookup(symbol, &found, si->next);
114 sym = dlsym_handle_lookup(reinterpret_cast<soinfo*>(handle), &found, symbol);
124 __bionic_format_dlerror("symbol found but not global", symbol);
127 __bionic_format_dlerror("undefined symbol", symbol);
147 // Determine if any symbol in the library contains the specified address.
225 // a real symbol). (See soinfo_elf_lookup().)