Lines Matching refs:found

481                "found in %s, base = %p, load bias = %p",
739 soinfo** found,
761 *found = current_soinfo;
774 soinfo** found,
781 soinfo** found,
792 return dlsym_linear_lookup(&g_default_namespace, name, vi, found, nullptr, RTLD_DEFAULT);
800 return dlsym_handle_lookup(si->get_primary_namespace(), si, nullptr, found, symbol_name, vi);
811 soinfo** found,
845 *found = si;
850 // If not found - use dlsym_handle_lookup for caller's
860 found,
866 TRACE_TYPE(LOOKUP, "%s s->st_value = %p, found->base = %p",
867 name, reinterpret_cast<void*>(s->st_value), reinterpret_cast<void*>((*found)->base));
971 // Entry was not found.
1313 DL_ERR("library \"%s\" not found", name);
1337 // Returns true if library was found and false otherwise
1349 bool found = find_loaded_library_by_soname(ns, name, candidate);
1351 if (!found && search_linked_namespaces) {
1352 // if a library was not found - look into linked namespaces
1366 return found;
1444 // if a library was not found - look into linked namespaces
1728 // the DT_NEEDED libraries could not be linked/found.
1796 // Not found: for example if symlink was deleted between dlopen and dlclose
1990 // Determine if this address can be found in any library currently mapped.
2038 soinfo* found = nullptr;
2076 sym = dlsym_linear_lookup(ns, sym_name, vi, &found, caller, handle);
2082 sym = dlsym_handle_lookup(si, &found, sym_name, vi);
2089 *symbol = reinterpret_cast<void*>(found->resolve_symbol_address(sym));
2092 "... dlsym successful: sym_name=\"%s\", sym_ver=\"%s\", found in=\"%s\", address=%p",
2093 sym_name, sym_ver, found->get_soname(), *symbol);
2097 DL_ERR("symbol \"%s\" found but not global", symbol_display_name(sym_name, sym_ver).c_str());
3059 DEBUG("%s constructors (DT_INIT) found at %p", get_realpath(), init_func_);
3064 DEBUG("%s destructors (DT_FINI) found at %p", get_realpath(), fini_func_);
3069 DEBUG("%s constructors (DT_INIT_ARRAY) found at %p", get_realpath(), init_array_);
3078 DEBUG("%s destructors (DT_FINI_ARRAY) found at %p", get_realpath(), fini_array_);
3087 DEBUG("%s constructors (DT_PREINIT_ARRAY) found at %p", get_realpath(), preinit_array_);