Home
last modified time | relevance | path

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

/system/extras/simpleperf/
Denvironment.cpp155 std::string module_name = name.substr(0, name.size() - 3); in GetAllModuleFiles() local
156 std::replace(module_name.begin(), module_name.end(), '-', '_'); in GetAllModuleFiles()
157 module_file_map->insert(std::make_pair(module_name, entry_path)); in GetAllModuleFiles()
308 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id) { in GetModuleBuildId() argument
309 std::string notefile = "/sys/module/" + module_name + "/notes/.note.gnu.build-id"; in GetModuleBuildId()
Denvironment.h61 bool GetModuleBuildId(const std::string& module_name, BuildId* build_id);
Dcmd_record.cpp984 std::string module_name = basename(&path[0]); in DumpBuildIdFeature() local
985 if (android::base::EndsWith(module_name, ".ko")) { in DumpBuildIdFeature()
986 module_name = module_name.substr(0, module_name.size() - 3); in DumpBuildIdFeature()
988 if (!GetModuleBuildId(module_name, &build_id)) { in DumpBuildIdFeature()
989 LOG(DEBUG) << "can't read build_id for module " << module_name; in DumpBuildIdFeature()