Home | History | Annotate | Download | only in linker

Lines Matching refs:symbol

73 void* dlsym(void* handle, const char* symbol) {
80 if (symbol == NULL) {
81 __bionic_format_dlerror("dlsym symbol name is null", NULL);
88 sym = dlsym_linear_lookup(symbol, &found, NULL);
95 sym = dlsym_linear_lookup(symbol, &found, si->next);
99 sym = dlsym_handle_lookup(found, symbol);
110 __bionic_format_dlerror("symbol found but not global", symbol);
113 __bionic_format_dlerror("undefined symbol", symbol);
133 // Determine if any symbol in the library contains the specified address.
203 // a real symbol).