Searched refs:binary_cache_path (Results 1 – 4 of 4) sorted by relevance
/system/extras/simpleperf/scripts/ |
D | utils.py | 371 def find_real_dso_path(dso_path_in_record_file, binary_cache_path): argument 375 if binary_cache_path: 376 tmp_path = os.path.join(binary_cache_path, dso_path_in_record_file[1:]) 428 def __init__(self, ndk_path, binary_cache_path, with_function_name): argument 434 self.binary_cache_path = binary_cache_path 455 real_path = find_real_dso_path(dso_path, self.binary_cache_path) 656 def __init__(self, ndk_path, binary_cache_path): argument 658 self.binary_cache_path = binary_cache_path 663 real_path = find_real_dso_path(dso_path, self.binary_cache_path)
|
D | report_html.py | 500 def __init__(self, binary_cache_path, ndk_path, build_addr_hit_map): argument 501 self.binary_cache_path = binary_cache_path 522 if self.binary_cache_path: 523 lib.SetSymfs(self.binary_cache_path) 587 addr2line = Addr2Nearestline(self.ndk_path, self.binary_cache_path, False) 654 objdump = Objdump(self.ndk_path, self.binary_cache_path) 839 binary_cache_path = 'binary_cache' 840 if not os.path.isdir(binary_cache_path): 846 binary_cache_path = None 854 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 | 978 binary_cache_path = 'testdata' 1047 addr2line = Addr2Nearestline(None, binary_cache_path, with_function_name) 1080 binary_cache_path = 'testdata' 1119 objdump = Objdump(None, binary_cache_path)
|