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.py76 self.build_id_list_file = 'build_id_list'
134 if os.path.exists(self.build_id_list_file):
135 os.remove(self.build_id_list_file)
140 if self.build_id_list_file not in file_set:
142 self.adb.run(['pull', self.dir_on_device + self.build_id_list_file])
143 if os.path.exists(self.build_id_list_file):
144 with open(self.build_id_list_file, 'rb') as fh:
152 remove(self.build_id_list_file)
166 with open(self.build_id_list_file, 'wb') as fh:
170 self.adb.check_run(['push', self.build_id_list_file,
[all …]
Dsimpleperf_utils.py431 build_id_list_file = self.binary_cache_dir / 'build_id_list'
432 if build_id_list_file.is_file():
/system/extras/simpleperf/
Ddso_test.cpp44 std::string build_id_list_file = std::string(tmpdir.path) + "/build_id_list"; in TEST() local
45 ASSERT_TRUE(android::base::WriteStringToFile(build_id_list, build_id_list_file)); in TEST()
50 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()