Home
last modified time | relevance | path

Searched refs:mod_with_deps (Results 1 – 1 of 1) sorted by relevance

/system/core/libmodprobe/
Dlibmodprobe.cpp448 std::map<std::string, std::set<std::string>> mod_with_deps; in LoadModulesParallel() local
455 mod_with_deps[module].emplace(*dep); in LoadModulesParallel()
461 if (mod_with_deps.find(MakeCanonical(it_softdep)) != mod_with_deps.end()) { in LoadModulesParallel()
462 mod_with_deps[MakeCanonical(it_mod)].emplace( in LoadModulesParallel()
469 if (mod_with_deps.find(MakeCanonical(it_softdep)) != mod_with_deps.end()) { in LoadModulesParallel()
470 mod_with_deps[MakeCanonical(it_softdep)].emplace( in LoadModulesParallel()
475 while (!mod_with_deps.empty() && count != module_loaded_.size()) { in LoadModulesParallel()
482 for (const auto& [it_mod, it_dep] : mod_with_deps) { in LoadModulesParallel()
524 mod_with_deps.erase(module_loaded); in LoadModulesParallel()
529 for (auto& [mod, deps] : mod_with_deps) { in LoadModulesParallel()