Home
last modified time | relevance | path

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

/aosp12/system/core/libmodprobe/
H A Dlibmodprobe.cpp51 std::replace(module_name.begin(), module_name.end(), '-', '_'); in MakeCanonical()
52 return module_name; in MakeCanonical()
106 const std::string& module_name = *it++; in ParseAliasCallback() local
244 auto canonical_name = MakeCanonical(module_name); in AddOption()
256 std::string module_name = ""; in ParseKernelCmdlineOptions() local
279 module_name = ""; in ParseKernelCmdlineOptions()
353 if (module_name.empty()) { in InsmodWithDeps()
358 auto dependencies = GetDependencies(module_name); in InsmodWithDeps()
374 if (module_name == module) { in InsmodWithDeps()
387 if (module_name == module) { in InsmodWithDeps()
[all …]
H A Dlibmodprobe_ext.cpp70 bool Modprobe::Rmmod(const std::string& module_name) { in Rmmod() argument
71 auto canonical_name = MakeCanonical(module_name); in Rmmod()
74 PLOG(ERROR) << "Failed to remove module '" << module_name << "'"; in Rmmod()
81 bool Modprobe::ModuleExists(const std::string& module_name) { in ModuleExists() argument
83 if (blocklist_enabled && module_blocklist_.count(module_name)) { in ModuleExists()
84 LOG(INFO) << "module " << module_name << " is blocklisted"; in ModuleExists()
87 auto deps = GetDependencies(module_name); in ModuleExists()
93 LOG(INFO) << "module " << module_name << " does not exist"; in ModuleExists()
97 LOG(INFO) << "module " << module_name << " is not a regular file"; in ModuleExists()
H A Dlibmodprobe_ext_test.cpp63 bool Modprobe::Rmmod(const std::string& module_name) { in Rmmod() argument
65 if (*it == module_name || android::base::StartsWith(*it, module_name + " ")) { in Rmmod()
73 bool Modprobe::ModuleExists(const std::string& module_name) { in ModuleExists() argument
74 auto deps = GetDependencies(module_name); in ModuleExists()
75 if (blocklist_enabled && module_blocklist_.count(module_name)) { in ModuleExists()
/aosp12/system/core/libmodprobe/include/modprobe/
H A Dmodprobe.h31 bool LoadWithAliases(const std::string& module_name, bool strict,
33 bool Remove(const std::string& module_name);
43 bool InsmodWithDeps(const std::string& module_name, const std::string& parameters);
45 bool Rmmod(const std::string& module_name);
47 bool ModuleExists(const std::string& module_name);
48 void AddOption(const std::string& module_name, const std::string& option_name,
51 bool IsBlocklisted(const std::string& module_name);
/aosp12/hardware/google/camera/common/apex_update_listener/
H A Dapex_update_listener_test.cc51 Call(InfoSet{{.module_name = "com.test.apex", in TEST()
58 InfoSet{{.module_name = "com.test.apex", in TEST()
65 {.module_name = "com.test.apex", in TEST()
96 InfoSet{{.module_name = "com.test.apex", in TEST()
H A Dapex_update_listener.h16 std::string module_name; member
26 module_path, preinstalled_module_path, module_name); in AsTuple()
41 return stream << "{ moduleName: " << i.module_name
H A Dapex_update_listener.cc110 Info info{.module_name = apex_name.c_str()}; in TrySlurpInfo()
/aosp12/build/soong/scripts/
H A Djars-to-module-info-java.sh25 module_name=$1
28 echo "module ${module_name} {"
/aosp12/frameworks/rs/tests/lldb/tests/harness/
H A Dutil_functions.py41 module_name, _ = os.path.splitext(module_file)
45 module_obj = importlib.import_module(module_name)
H A Ddecorators.py140 module_name = getattr(func, '__module__')
143 module_name,
/aosp12/hardware/interfaces/scripts/
H A Dlist_hal_vts.py81 for module_name, module_info in root.items():
88 ret[inferred_package].append(module_name)
/aosp12/build/bazel/examples/queryview/
H A Dlibc.txt1 attr(module_name, \Alibc$, //bionic/libc:all)
/aosp12/system/extras/simpleperf/
H A Denvironment.cpp79 std::string module_name = name.substr(0, name.size() - 3); in GetAllModuleFiles() local
80 std::replace(module_name.begin(), module_name.end(), '-', '_'); in GetAllModuleFiles()
81 module_file_map->insert(std::make_pair(module_name, entry_path)); in GetAllModuleFiles()
198 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id, in GetModuleBuildId() argument
200 std::string notefile = sysfs_dir + "/module/" + module_name + "/notes/.note.gnu.build-id"; in GetModuleBuildId()
H A Denvironment.h70 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id,
/aosp12/system/core/trusty/coverage/
H A Dcoverage.cpp59 CoverageRecord::CoverageRecord(string tipc_dev, struct uuid* uuid, string module_name) in CoverageRecord() argument
63 sancov_filename_(module_name + "." + to_string(getpid()) + ".sancov"), in CoverageRecord()
/aosp12/system/core/trusty/coverage/include/trusty/coverage/
H A Dcoverage.h46 CoverageRecord(std::string tipc_dev, struct uuid* uuid, std::string module_name);
/aosp12/build/pesto/experiments/prepare_bazel_test_env/data/templates/build/bazel/rules/
H A Dcc_test.bzl.template26 "{{module_name}}": ctx.label.name,
/aosp12/frameworks/base/services/
H A DAndroid.bp93 // The convention is to name each service module 'services.$(module_name)'
/aosp12/system/tools/xsdc/
H A DREADME.md38 Then run "make {xsd_config module_name} .docs-update-current-api" or "make
/aosp12/build/make/core/
H A Dproduct_config.mk466 $$(error Rule "$$(rule)" in PRODUCT_$(1)_OVERRIDE is not <module_name>:<new_value>)))
/aosp12/build/soong/apex/
H A Dapex.go3014 for module_name, module_packages := range modules_packages {
3017 With("apex_available", module_name).
3019 Because("jars that are part of the " + module_name +
/aosp12/frameworks/av/media/tests/benchmark/
H A DREADME.md199 <app directory>/<module_name>.<timestamp>.csv
/aosp12/system/apex/apexd/
H A Dapexd.cpp3663 const std::string& module_name = temp_apex->GetManifest().name(); in InstallPackage() local
3665 auto cur_mounted_data = gMountedApexes.GetLatestMountedApex(module_name); in InstallPackage()
3667 return Error() << "No active version found for package " << module_name; in InstallPackage()
H A Dapexd_test.cpp2562 const std::string& module_name, int version) { in TEST_F() argument
2566 manifest.set_name(module_name); in TEST_F()