Home
last modified time | relevance | path

Searched refs:testdata_path (Results 1 – 11 of 11) sorted by relevance

/system/extras/simpleperf/scripts/test/
Dreport_html_test.py28 TestHelper.testdata_path('perf_with_long_callchain.data')])
35 TestHelper.testdata_path('aggregatable_perf1.data'),
36 TestHelper.testdata_path('aggregatable_perf2.data')])
46 TestHelper.testdata_path('aggregatable_perf1.data'),
47 TestHelper.testdata_path('aggregatable_perf2.data')])
60 perf_data = TestHelper.testdata_path('two_process_perf.data')
73 testdata_file = TestHelper.testdata_path('perf_need_proguard_mapping.data')
74 proguard_mapping_file = TestHelper.testdata_path('proguard_mapping.txt')
105 testdata_file = TestHelper.testdata_path('runtest_two_functions_arm64_perf.data')
145 testdata_file = TestHelper.testdata_path('runtest_two_functions_arm64_perf.data')
Dreport_lib_test.py25 self.report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_symbols.data'))
63 self.report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_trace_offcpu.data'))
72 self.report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_tracepoint_event.data'))
80 self.report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_trace_offcpu.data'))
86 self.report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_trace_offcpu.data'))
107 report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_interpreter_frames.data'))
130 report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_interpreter_frames.data'))
154 report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_jit_symbol.data'))
167 self.report_lib.SetRecordFile(TestHelper.testdata_path('perf_with_tracepoint_event.data'))
183 self.report_lib.SetRecordFile(TestHelper.testdata_path(
[all …]
Dbinary_cache_builder_test.py37 origin_file = TestHelper.testdata_path(filename)
63 symfs_dir = TestHelper.testdata_path('data/symfs_without_build_id')
74 TestHelper.testdata_path('runtest_two_functions_arm64_perf.data'))
79 TestHelper.testdata_path(
85 shutil.copy(TestHelper.testdata_path(
98 TestHelper.testdata_path('runtest_two_functions_arm64_perf.data'))
Dpprof_proto_generator_test.py27 testdata_path = TestHelper.testdata_path(testdata_file)
29 self.run_cmd(['pprof_proto_generator.py', '-i', testdata_path] + options)
33 testdata_paths = [TestHelper.testdata_path(f) for f in testdata_files]
108 proguard_mapping_file = TestHelper.testdata_path('proguard_mapping.txt')
117 testdata_file = TestHelper.testdata_path('runtest_two_functions_arm64_perf.data')
Dinferno_test.py32 testdata_file = TestHelper.testdata_path('perf_need_proguard_mapping.data')
33 proguard_mapping_file = TestHelper.testdata_path('proguard_mapping.txt')
Dpurgatorio_test.py37 testdata_file = TestHelper.testdata_path('perf_need_proguard_mapping.data')
38 proguard_mapping_file = TestHelper.testdata_path('proguard_mapping.txt')
Dtools_test.py237 [TestHelper.testdata_path('SimpleperfExampleWithNative'),
238 TestHelper.testdata_path('SimpleperfExampleOfKotlin')])
262 self.assertTrue(ReadElf.is_elf_file(TestHelper.testdata_path(
275 elf_path = TestHelper.testdata_path(elf_name)
Dapp_test.py30 cls.example_path = TestHelper.testdata_path(example_name)
248 self.install_apk(TestHelper.testdata_path('DisplayBitmaps.apk'),
250 self.install_apk(TestHelper.testdata_path('DisplayBitmapsTest.apk'),
261 self.install_apk(TestHelper.testdata_path(
Dapp_profiler_test.py75 downloader.collect_native_libs_on_host(TestHelper.testdata_path(
123 shutil.copyfile(TestHelper.testdata_path('data/symfs_without_build_id/elf'), name)
Dapi_profiler_test.py33 apk_path = TestHelper.testdata_path(apk_name)
Dtest_utils.py78 def testdata_path(cls, testdata_name: str) -> str: member in TestHelper