Searched refs:binary_cache_path (Results 1 – 4 of 4) sorted by relevance
/system/extras/simpleperf/scripts/ |
D | utils.py | 383 def find_real_dso_path(dso_path_in_record_file, binary_cache_path): argument 385 if binary_cache_path: 386 tmp_path = os.path.join(binary_cache_path, dso_path_in_record_file[1:]) 438 def __init__(self, ndk_path, binary_cache_path, with_function_name): argument 444 self.binary_cache_path = binary_cache_path 465 real_path = find_real_dso_path(dso_path, self.binary_cache_path) 680 def __init__(self, ndk_path, binary_cache_path): argument 682 self.binary_cache_path = binary_cache_path 687 real_path = find_real_dso_path(dso_path, self.binary_cache_path)
|
D | report_html.py | 567 def __init__(self, binary_cache_path, ndk_path, build_addr_hit_map): argument 568 self.binary_cache_path = binary_cache_path 589 if self.binary_cache_path: 590 lib.SetSymfs(self.binary_cache_path) 672 addr2line = Addr2Nearestline(self.ndk_path, self.binary_cache_path, False) 739 objdump = Objdump(self.ndk_path, self.binary_cache_path) 927 binary_cache_path = 'binary_cache' 928 if not os.path.isdir(binary_cache_path): 934 binary_cache_path = None 942 record_data = RecordData(binary_cache_path, ndk_path, build_addr_hit_map)
|
D | annotate.py | 53 def __init__(self, ndk_path, binary_cache_path, source_dirs): argument 54 self.addr2line = Addr2Nearestline(ndk_path, binary_cache_path, True)
|
D | test.py | 1129 binary_cache_path = TEST_HELPER.testdata_dir 1198 addr2line = Addr2Nearestline(None, binary_cache_path, with_function_name) 1239 binary_cache_path = TEST_HELPER.testdata_dir 1278 objdump = Objdump(None, binary_cache_path)
|