Home
last modified time | relevance | path

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

/system/connectivity/shill/bin/
Dreload_network_device53 module_name=$(basename $(readlink -f "/sys${DEVPATH}/device/driver/module"))
55 rmmod "${module_name}"
/system/extras/simpleperf/
Denvironment.cpp191 std::string module_name = name.substr(0, name.size() - 3); in GetAllModuleFiles() local
192 std::replace(module_name.begin(), module_name.end(), '-', '_'); in GetAllModuleFiles()
193 module_file_map->insert(std::make_pair(module_name, path + "/" + name)); in GetAllModuleFiles()
366 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id) { in GetModuleBuildId() argument
367 std::string notefile = "/sys/module/" + module_name + "/notes/.note.gnu.build-id"; in GetModuleBuildId()
Dcmd_record.cpp796 std::string module_name = basename(&path[0]); in DumpBuildIdFeature() local
797 if (android::base::EndsWith(module_name, ".ko")) { in DumpBuildIdFeature()
798 module_name = module_name.substr(0, module_name.size() - 3); in DumpBuildIdFeature()
800 if (!GetModuleBuildId(module_name, &build_id)) { in DumpBuildIdFeature()
801 LOG(DEBUG) << "can't read build_id for module " << module_name; in DumpBuildIdFeature()
Denvironment.h65 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id);