• Home
  • Raw
  • Download

Lines Matching refs:found

482                "found in %s, base = %p, load bias = %p",
748 soinfo** found,
770 *found = current_soinfo;
783 soinfo** found,
790 soinfo** found,
801 return dlsym_linear_lookup(&g_default_namespace, name, vi, found, nullptr, RTLD_DEFAULT);
809 return dlsym_handle_lookup(si->get_primary_namespace(), si, nullptr, found, symbol_name, vi);
820 soinfo** found,
854 *found = si;
859 // If not found - use dlsym_handle_lookup for caller's
869 found,
875 TRACE_TYPE(LOOKUP, "%s s->st_value = %p, found->base = %p",
876 name, reinterpret_cast<void*>(s->st_value), reinterpret_cast<void*>((*found)->base));
980 // Entry was not found.
1343 DL_ERR("library \"%s\" not found", name);
1367 // Returns true if library was found and false otherwise
1379 bool found = find_loaded_library_by_soname(ns, name, candidate);
1381 if (!found && search_linked_namespaces) {
1382 // if a library was not found - look into linked namespaces
1396 return found;
1454 // if a library was not found - look into linked namespaces
1470 // lib was not found in the namespace. Try next linked namespace.
1560 // dependency and the lib that created the LoadTask is not found in the
1654 // was found during Step 1.
1766 // the DT_NEEDED libraries could not be linked/found.
1834 // Not found: for example if symlink was deleted between dlopen and dlclose
2033 // Determine if this address can be found in any library currently mapped.
2081 soinfo* found = nullptr;
2118 sym = dlsym_linear_lookup(ns, sym_name, vi, &found, caller, handle);
2124 sym = dlsym_handle_lookup(si, &found, sym_name, vi);
2131 *symbol = reinterpret_cast<void*>(found->resolve_symbol_address(sym));
2134 "... dlsym successful: sym_name=\"%s\", sym_ver=\"%s\", found in=\"%s\", address=%p",
2135 sym_name, sym_ver, found->get_soname(), *symbol);
2139 DL_ERR("symbol \"%s\" found but not global", symbol_display_name(sym_name, sym_ver).c_str());
3101 DEBUG("%s constructors (DT_INIT) found at %p", get_realpath(), init_func_);
3106 DEBUG("%s destructors (DT_FINI) found at %p", get_realpath(), fini_func_);
3111 DEBUG("%s constructors (DT_INIT_ARRAY) found at %p", get_realpath(), init_array_);
3120 DEBUG("%s destructors (DT_FINI_ARRAY) found at %p", get_realpath(), fini_array_);
3129 DEBUG("%s constructors (DT_PREINIT_ARRAY) found at %p", get_realpath(), preinit_array_);