Home
last modified time | relevance | path

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

/system/tools/aidl/tests/
Dgolden_test.sh101 local module_path
103 module_path=$module
105 module_path="frozen/$module"
108 local golden="$root/system/tools/aidl/tests/golden_output/$module_path/"
125 module_path="$name"
127 module_path="frozen/$name"
129 golden_file="system/tools/aidl/tests/golden_output/$module_path"
/system/linkerconfig/testdata/
Dprepare_root.sh115 module_path="${src/$ROOT/}"
118 module_path=/dev/block/vda$blockIndex
124 …ho " <apex-info moduleName=\"$name\" modulePath=\"$module_path\" preinstalledModulePath=\"$module_…
/system/core/libmodprobe/
Dlibmodprobe.cpp36 std::string Modprobe::MakeCanonical(const std::string& module_path) { in MakeCanonical() argument
37 auto start = module_path.find_last_of('/'); in MakeCanonical()
43 auto end = module_path.size(); in MakeCanonical()
44 if (android::base::EndsWith(module_path, ".ko")) { in MakeCanonical()
48 LOG(ERROR) << "malformed module name: " << module_path; in MakeCanonical()
51 std::string module_name = module_path.substr(start, end - start); in MakeCanonical()
/system/core/libmodprobe/include/modprobe/
Dmodprobe.h47 std::string MakeCanonical(const std::string& module_path);