Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Denvironment.cpp159 std::string module_name = name.substr(0, name.size() - 3); in GetAllModuleFiles() local
160 std::replace(module_name.begin(), module_name.end(), '-', '_'); in GetAllModuleFiles()
161 module_file_map->insert(std::make_pair(module_name, entry_path)); in GetAllModuleFiles()
312 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id) { in GetModuleBuildId() argument
313 std::string notefile = "/sys/module/" + module_name + "/notes/.note.gnu.build-id"; in GetModuleBuildId()
Dcmd_record.cpp1065 std::string module_name = basename(&path[0]); in DumpBuildIdFeature() local
1066 if (android::base::EndsWith(module_name, ".ko")) { in DumpBuildIdFeature()
1067 module_name = module_name.substr(0, module_name.size() - 3); in DumpBuildIdFeature()
1069 if (!GetModuleBuildId(module_name, &build_id)) { in DumpBuildIdFeature()
1070 LOG(DEBUG) << "can't read build_id for module " << module_name; in DumpBuildIdFeature()
Denvironment.h61 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id);