Home
last modified time | relevance | path

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

/aosp12/system/apex/tools/
H A Dapex_compression_tool.py41 binary_path = os.path.join(path, binary)
42 if os.path.exists(binary_path):
43 return binary_path
/aosp12/system/extras/simpleperf/scripts/
H A Dsimpleperf_utils.py117 binary_path = os.path.join(arch_dir, binary_name)
118 if not os.path.isfile(binary_path):
119 log_fatal("can't find binary: %s" % binary_path)
120 return binary_path
138 binary_path = os.path.join(dirname, binary_name)
139 if not os.path.isfile(binary_path):
140 log_fatal("can't find binary: %s" % binary_path)
141 return binary_path
681 def _build_symbolizer_args(self, binary_path: Path) -> List[str]:
682 args = [self.symbolizer_path, '--print-address', '--inlining', '--obj=%s' % binary_path]
H A Dpprof_proto_generator.py388 binary_path, build_id = self.get_binary(symbol.dso_name)
389 mapping_id = self.get_mapping_id(symbol.mapping[0], binary_path, build_id)
391 function_id = self.get_function_id(symbol.symbol_name, binary_path, symbol.symbol_addr)
428 binary_path = dso_name
439 binary_path = str(elf_path)
449 self.binary_map[dso_name] = (binary_path, build_id)
450 return (binary_path, build_id)
/aosp12/bootable/recovery/tests/unit/
H A Dinstall_test.cpp124 std::string binary_path = std::string(td.path) + "/update_binary"; in TEST() local
125 Paths::Get().set_temporary_update_binary(binary_path); in TEST()
129 ASSERT_EQ(binary_path, cmd[0]); in TEST()
134 ASSERT_EQ(0, stat(binary_path.c_str(), &sb)); in TEST()
141 ASSERT_EQ(binary_path, cmd[0]); in TEST()
147 ASSERT_EQ(0, stat(binary_path.c_str(), &sb)); in TEST()
/aosp12/frameworks/native/libs/binder/rust/tests/
H A Dintegration.rs234 let mut binary_path = in new_internal() localVariable
236 binary_path.pop(); in new_internal()
237 binary_path.push(RUST_SERVICE_BINARY); in new_internal()
238 let mut command = Command::new(&binary_path); in new_internal()
/aosp12/bootable/recovery/install/
H A Dinstall.cpp294 const std::string binary_path = Paths::Get().temporary_update_binary(); in SetUpNonAbUpdateCommands() local
295 unlink(binary_path.c_str()); in SetUpNonAbUpdateCommands()
297 open(binary_path.c_str(), O_CREAT | O_WRONLY | O_TRUNC | O_CLOEXEC, 0755)); in SetUpNonAbUpdateCommands()
299 PLOG(ERROR) << "Failed to create " << binary_path; in SetUpNonAbUpdateCommands()
314 binary_path, in SetUpNonAbUpdateCommands()
/aosp12/system/apex/apexer/
H A Dapexer.py186 binary_path = os.path.join(path, binary)
187 if os.path.exists(binary_path):
188 return binary_path