Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dapp_profiler.py73 self.build_id_list_file = 'build_id_list'
131 if os.path.exists(self.build_id_list_file):
132 os.remove(self.build_id_list_file)
137 if self.build_id_list_file not in file_set:
139 self.adb.run(['pull', self.dir_on_device + self.build_id_list_file])
140 if os.path.exists(self.build_id_list_file):
141 with open(self.build_id_list_file, 'rb') as fh:
149 remove(self.build_id_list_file)
163 with open(self.build_id_list_file, 'wb') as fh:
167 self.adb.check_run(['push', self.build_id_list_file,
[all …]
Dsimpleperf_utils.py466 build_id_list_file = self.binary_cache_dir / 'build_id_list'
467 if build_id_list_file.is_file():
/system/extras/simpleperf/
Ddso_test.cpp43 std::string build_id_list_file = std::string(tmpdir.path) + "/build_id_list"; in TEST() local
44 ASSERT_TRUE(android::base::WriteStringToFile(build_id_list, build_id_list_file)); in TEST()
49 unlink(build_id_list_file.c_str()); in TEST()
Ddso.cpp69 std::string build_id_list_file = symfs_dir_ + OS_PATH_SEPARATOR + "build_id_list"; in SetSymFsDir() local
71 if (android::base::ReadFileToString(build_id_list_file, &build_id_list)) { in SetSymFsDir()