Searched defs:found (Results 1 - 2 of 2) sorted by relevance

/bionic/linker/
H A Ddlfcn.cpp85 soinfo* found = NULL; local
88 sym = dlsym_linear_lookup(symbol, &found, NULL);
95 sym = dlsym_linear_lookup(symbol, &found, si->next);
98 found = reinterpret_cast<soinfo*>(handle);
99 sym = dlsym_handle_lookup(found, symbol);
106 unsigned ret = sym->st_value + found->load_bias;
110 __bionic_format_dlerror("symbol found but not global", symbol);
121 // Determine if this address can be found in any library currently mapped.
H A Dlinker.cpp528 * dynamic linking. Some systems return the first definition found
530 * Here we return the first definition found for simplicity. */
539 * If this object was built with -Bsymbolic and symbol is not found
577 "found in %s, base = 0x%08x, load bias = 0x%08x",
605 Elf32_Sym* dlsym_linear_lookup(const char* name, soinfo** found, soinfo* start) { argument
616 *found = si;
622 TRACE_TYPE(LOOKUP, "%s s->st_value = 0x%08x, found->base = 0x%08x",
623 name, s->st_value, (*found)->base);
709 DL_ERR("library \"%s\" not found", name);
922 not found i
[all...]

Completed in 106 milliseconds