Home
last modified time | relevance | path

Searched refs:build_id_to_file_map_ (Results 1 – 2 of 2) sorted by relevance

/system/extras/simpleperf/
Ddso.cpp60 build_id_to_file_map_.clear(); in Reset()
75 build_id_to_file_map_[items[0]] = symfs_dir_ + OS_PATH_SEPARATOR + items[1]; in SetSymFsDir()
102 build_id_to_file_map_[build_id.ToString()] = path; in CollectBuildIdInDir()
154 if (!build_id_to_file_map_.empty()) { in FindDebugFile()
156 auto it = build_id_to_file_map_.find(build_id.ToString()); in FindDebugFile()
157 if (it != build_id_to_file_map_.end() && CheckDebugFilePath(it->second, build_id, false)) { in FindDebugFile()
Ddso.h54 std::unordered_map<std::string, std::string> build_id_to_file_map_; variable