Lines Matching refs:it
750 auto it = soinfo_list.find(caller); in ElfW() local
751 CHECK (it != soinfo_list.end()); in ElfW()
752 start = ++it; in ElfW()
757 for (auto it = start, end = soinfo_list.end(); it != end; ++it) { in ElfW() local
758 soinfo* si = *it; in ElfW()
855 auto it = cache_.find(key); in get_or_open() local
856 if (it != cache_.end()) { in get_or_open()
857 *handle = it->second; in get_or_open()
877 for (const auto& it : cache_) { in ~ZipArchiveCache() local
878 CloseArchive(it.second); in ~ZipArchiveCache()
1707 auto it = std::find(local_group_roots.begin(), local_group_roots.end(), si); in find_libraries() local
1720 it == local_group_roots.end() ? "yes" : "no"); in find_libraries()
1722 if (it == local_group_roots.end()) { in find_libraries()
1957 auto it = g_dso_handle_counters.find(dso_handle); in increment_dso_handle_reference_counter() local
1958 if (it != g_dso_handle_counters.end()) { in increment_dso_handle_reference_counter()
1959 CHECK(++it->second != 0); in increment_dso_handle_reference_counter()
1979 auto it = g_dso_handle_counters.find(dso_handle); in decrement_dso_handle_reference_counter() local
1980 CHECK(it != g_dso_handle_counters.end()); in decrement_dso_handle_reference_counter()
1981 CHECK(it->second != 0); in decrement_dso_handle_reference_counter()
1983 if (--it->second == 0) { in decrement_dso_handle_reference_counter()
1993 g_dso_handle_counters.erase(it); in decrement_dso_handle_reference_counter()
2207 auto it = g_soinfo_handles_map.find(reinterpret_cast<uintptr_t>(handle)); in soinfo_from_handle() local
2208 if (it == g_soinfo_handles_map.end()) { in soinfo_from_handle()
2211 return it->second; in soinfo_from_handle()
3533 for (auto it : namespaces) { in init_default_namespaces() local
3534 if (it.second != &g_default_namespace) { in init_default_namespaces()
3535 it.second->add_soinfo(ld_android_so); in init_default_namespaces()
3537 it.second->add_soinfo(vdso); in init_default_namespaces()
3559 auto it = g_exported_namespaces.find(std::string(name)); in get_exported_namespace() local
3560 if (it == g_exported_namespaces.end()) { in get_exported_namespace()
3563 return it->second; in get_exported_namespace()