Home
last modified time | relevance | path

Searched refs:binary_path (Results 1 – 7 of 7) sorted by relevance

/system/libfmq/tests/
Dfmq_test.py71 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/
Dapex_classpath.cpp52 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/
Dapex_compression_tool.py41 binary_path = os.path.join(path, binary)
42 if os.path.exists(binary_path):
43 return binary_path
/system/extras/simpleperf/scripts/
Dsimpleperf_utils.py79 binary_path = os.path.join(arch_dir, binary_name)
80 if not os.path.isfile(binary_path):
81 log_fatal("can't find binary: %s" % binary_path)
82 return binary_path
100 binary_path = os.path.join(dirname, binary_name)
101 if not os.path.isfile(binary_path):
102 log_fatal("can't find binary: %s" % binary_path)
103 return binary_path
646 def _build_symbolizer_args(self, binary_path: Path) -> List[str]:
647 args = [self.symbolizer_path, '--print-address', '--inlining', '--obj=%s' % binary_path]
Dpprof_proto_generator.py453 binary_path, build_id = self.get_binary(symbol.dso_name)
454 mapping_id = self.get_mapping_id(symbol.mapping[0], binary_path, build_id)
456 function_id = self.get_function_id(symbol.symbol_name, binary_path, symbol.symbol_addr)
514 binary_path = dso_name
519 binary_path = str(elf_path)
523 self.binary_map[dso_name] = (binary_path, build_id)
524 return (binary_path, build_id)
/system/extras/simpleperf/scripts/test/
Dpprof_proto_generator_test.py188 binary_path = profile.string_table[mapping.filename]
189 if 'runtest_two_functions_arm64' in binary_path:
/system/apex/apexer/
Dapexer.py196 binary_path = os.path.join(path, binary)
197 if os.path.exists(binary_path):
198 return binary_path