Searched refs:binary_path (Results 1 – 7 of 7) sorted by relevance
/system/libfmq/tests/ |
D | fmq_test.py | 71 def bitness(binary_path: str) -> str: 72 if "64" in binary_path: 76 def short_name(binary_path: str) -> str: 77 base = "rust" if "rust" in binary_path else "" 78 return base + bitness(binary_path)
|
/system/apex/apexd/ |
D | apex_classpath.cpp | 52 std::string binary_path = in DeriveClassPath() local 69 const char* const argv[] = {binary_path.c_str(), scan_dirs_flag.c_str(), in DeriveClassPath() 75 binary_path; in DeriveClassPath()
|
/system/apex/tools/ |
D | apex_compression_tool.py | 41 binary_path = os.path.join(path, binary) 42 if os.path.exists(binary_path): 43 return binary_path
|
/system/extras/simpleperf/scripts/ |
D | pprof_proto_generator.py | 415 binary_path, build_id = self.get_binary(symbol.dso_name) 416 mapping_id = self.get_mapping_id(symbol.mapping[0], binary_path, build_id) 418 function_id = self.get_function_id(symbol.symbol_name, binary_path, symbol.symbol_addr) 455 binary_path = dso_name 460 binary_path = str(elf_path) 464 self.binary_map[dso_name] = (binary_path, build_id) 465 return (binary_path, build_id)
|
D | simpleperf_utils.py | 78 binary_path = os.path.join(arch_dir, binary_name) 79 if not os.path.isfile(binary_path): 80 log_fatal("can't find binary: %s" % binary_path) 81 return binary_path 99 binary_path = os.path.join(dirname, binary_name) 100 if not os.path.isfile(binary_path): 101 log_fatal("can't find binary: %s" % binary_path) 102 return binary_path 634 def _build_symbolizer_args(self, binary_path: Path) -> List[str]: 635 args = [self.symbolizer_path, '--print-address', '--inlining', '--obj=%s' % binary_path]
|
/system/extras/simpleperf/scripts/test/ |
D | pprof_proto_generator_test.py | 188 binary_path = profile.string_table[mapping.filename] 189 if 'runtest_two_functions_arm64' in binary_path:
|
/system/apex/apexer/ |
D | apexer.py | 197 binary_path = os.path.join(path, binary) 198 if os.path.exists(binary_path): 199 return binary_path
|