Lines Matching refs:Modprobe

34 std::string Modprobe::MakeCanonical(const std::string& module_path) {  in MakeCanonical()
55 bool Modprobe::ParseDepCallback(const std::string& base_path, in ParseDepCallback()
90 bool Modprobe::ParseAliasCallback(const std::vector<std::string>& args) { in ParseAliasCallback()
111 bool Modprobe::ParseSoftdepCallback(const std::vector<std::string>& args) { in ParseSoftdepCallback()
147 bool Modprobe::ParseLoadCallback(const std::vector<std::string>& args) { in ParseLoadCallback()
160 bool Modprobe::ParseOptionsCallback(const std::vector<std::string>& args) { in ParseOptionsCallback()
197 bool Modprobe::ParseBlocklistCallback(const std::vector<std::string>& args) { in ParseBlocklistCallback()
222 void Modprobe::ParseCfg(const std::string& cfg, in ParseCfg()
241 void Modprobe::AddOption(const std::string& module_name, const std::string& option_name, in AddOption()
253 void Modprobe::ParseKernelCmdlineOptions(void) { in ParseKernelCmdlineOptions()
315 Modprobe::Modprobe(const std::vector<std::string>& base_paths, const std::string load_file) { in Modprobe() function in Modprobe
319 auto alias_callback = std::bind(&Modprobe::ParseAliasCallback, this, _1); in Modprobe()
322 auto dep_callback = std::bind(&Modprobe::ParseDepCallback, this, base_path, _1); in Modprobe()
325 auto softdep_callback = std::bind(&Modprobe::ParseSoftdepCallback, this, _1); in Modprobe()
328 auto load_callback = std::bind(&Modprobe::ParseLoadCallback, this, _1); in Modprobe()
331 auto options_callback = std::bind(&Modprobe::ParseOptionsCallback, this, _1); in Modprobe()
334 auto blocklist_callback = std::bind(&Modprobe::ParseBlocklistCallback, this, _1); in Modprobe()
342 void Modprobe::EnableBlocklist(bool enable) { in EnableBlocklist()
346 std::vector<std::string> Modprobe::GetDependencies(const std::string& module) { in GetDependencies()
354 bool Modprobe::InsmodWithDeps(const std::string& module_name, const std::string& parameters) { in InsmodWithDeps()
398 bool Modprobe::LoadWithAliases(const std::string& module_name, bool strict, in LoadWithAliases()
430 bool Modprobe::LoadListedModules(bool strict) { in LoadListedModules()
441 bool Modprobe::Remove(const std::string& module_name) { in Remove()
456 std::vector<std::string> Modprobe::ListModules(const std::string& pattern) { in ListModules()
469 bool Modprobe::GetAllDependencies(const std::string& module, in GetAllDependencies()