/aosp12/system/core/libmodprobe/ |
H A D | libmodprobe.cpp | 51 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 D | libmodprobe_ext.cpp | 70 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 D | libmodprobe_ext_test.cpp | 63 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 D | modprobe.h | 31 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 D | apex_update_listener_test.cc | 51 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 D | apex_update_listener.h | 16 std::string module_name; member 26 module_path, preinstalled_module_path, module_name); in AsTuple() 41 return stream << "{ moduleName: " << i.module_name
|
H A D | apex_update_listener.cc | 110 Info info{.module_name = apex_name.c_str()}; in TrySlurpInfo()
|
/aosp12/build/soong/scripts/ |
H A D | jars-to-module-info-java.sh | 25 module_name=$1 28 echo "module ${module_name} {"
|
/aosp12/frameworks/rs/tests/lldb/tests/harness/ |
H A D | util_functions.py | 41 module_name, _ = os.path.splitext(module_file) 45 module_obj = importlib.import_module(module_name)
|
H A D | decorators.py | 140 module_name = getattr(func, '__module__') 143 module_name,
|
/aosp12/hardware/interfaces/scripts/ |
H A D | list_hal_vts.py | 81 for module_name, module_info in root.items(): 88 ret[inferred_package].append(module_name)
|
/aosp12/build/bazel/examples/queryview/ |
H A D | libc.txt | 1 attr(module_name, \Alibc$, //bionic/libc:all)
|
/aosp12/system/extras/simpleperf/ |
H A D | environment.cpp | 79 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 D | environment.h | 70 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id,
|
/aosp12/system/core/trusty/coverage/ |
H A D | coverage.cpp | 59 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 D | coverage.h | 46 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 D | cc_test.bzl.template | 26 "{{module_name}}": ctx.label.name,
|
/aosp12/frameworks/base/services/ |
H A D | Android.bp | 93 // The convention is to name each service module 'services.$(module_name)'
|
/aosp12/system/tools/xsdc/ |
H A D | README.md | 38 Then run "make {xsd_config module_name} .docs-update-current-api" or "make
|
/aosp12/build/make/core/ |
H A D | product_config.mk | 466 $$(error Rule "$$(rule)" in PRODUCT_$(1)_OVERRIDE is not <module_name>:<new_value>)))
|
/aosp12/build/soong/apex/ |
H A D | apex.go | 3014 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 D | README.md | 199 <app directory>/<module_name>.<timestamp>.csv
|
/aosp12/system/apex/apexd/ |
H A D | apexd.cpp | 3663 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 D | apexd_test.cpp | 2562 const std::string& module_name, int version) { in TEST_F() argument 2566 manifest.set_name(module_name); in TEST_F()
|