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

/bionic/tests/
H A Dlink_test.cpp96 bool found = false; local
104 if (func == exidx_func || func == exidx_func + 1) found = true;
112 ASSERT_TRUE(found);
/bionic/linker/
H A Dlinker_cfi.cpp216 bool found = false; local
222 found = true;
228 found = soinfo_find_cfi_check(new_si);
231 // Nothing found.
232 if (!found) {
H A Dlinker_config.cpp74 size_t found = line.find('#'); local
75 line = android::base::Trim(line.substr(0, found));
122 size_t found = content_.find('\n', p_); local
123 if (found != std::string::npos) {
124 *line = content_.substr(p_, found - p_);
125 p_ = found + 1;
259 std::string("section \"") + section_name + "\" not found");
264 // found the section - parse it
H A Dlinker.cpp493 "found in %s, base = %p, load bias = %p",
757 soinfo** found,
779 *found = current_soinfo;
792 soinfo** found,
799 soinfo** found,
810 return dlsym_linear_lookup(&g_default_namespace, name, vi, found, nullptr, RTLD_DEFAULT);
818 return dlsym_handle_lookup(si->get_primary_namespace(), si, nullptr, found, symbol_name, vi);
829 soinfo** found,
863 *found = si;
868 // If not found
754 dlsym_handle_lookup(android_namespace_t* ns, soinfo* root, soinfo* skip_until, soinfo** found, SymbolName& symbol_name, const version_info* vi) argument
798 dlsym_handle_lookup(soinfo* si, soinfo** found, const char* name, const version_info* vi) argument
826 dlsym_linear_lookup(android_namespace_t* ns, const char* name, const version_info* vi, soinfo** found, soinfo* caller, void* handle) argument
[all...]

Completed in 637 milliseconds