Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 9 of 9) sorted by relevance

/development/vndk/tools/header-checker/tests/
Dgen_all.py36 output_path = os.path.join(EXPECTED_DIR, input_rel_path)
38 print('generating', output_path, '...')
39 os.makedirs(os.path.dirname(output_path), exist_ok=True)
40 run_header_abi_dumper(input_path, output_path,
Dmodule.py52 def make_dump(self, output_path): argument
92 def make_dump(self, output_path): argument
94 self.src, output_path, cflags=self.cflags,
119 def make_dump(self, output_path): argument
140 with open(output_path, 'w') as output_file:
Dtest.py63 output_path = f.name
64 run_header_abi_dumper(input_path, output_path, cflags,
66 actual_output = _read_output_content(output_path)
/development/tools/external_crates/crate_health/src/bin/
Dmigration_report.rs34 output_path: PathBuf, field
49 Ok(re.migration_report(&migration, &args.output_path)?) in main()
Dhealth_report.rs34 output_path: PathBuf, field
52 Ok(re.health_report(&cc, &args.output_path)?) in main()
/development/vndk/tools/header-checker/utils/
Dutils.py127 def run_header_abi_dumper(input_path, output_path, cflags=tuple(), argument
132 cmd = ['header-abi-dumper', '-o', output_path, input_path]
153 _validate_dump_content(output_path)
156 def run_header_abi_linker(inputs, output_path, version_script, api, arch_str, argument
159 cmd = ['header-abi-linker', '-o', output_path, '-v', version_script,
168 _validate_dump_content(output_path)
313 def run_abi_diff(old_dump_path, new_dump_path, output_path, arch_str, lib_name, argument
317 '-o', output_path]
/development/tools/external_crates/crate_health/src/
Dreports.rs247 output_path: &impl AsRef<Path>, in health_report()
267 Ok(write(output_path, self.tt.render("crate_health", &chr)?)?) in health_report()
272 output_path: &impl AsRef<Path>, in migration_report()
280 Ok(write(output_path, self.tt.render("migration", &mr)?)?) in migration_report()
/development/gsi/repack_super_image/
Drepack_super_image.py121 part_imgs, output_path): argument
171 output_path])
/development/tools/cargo_embargo/src/
Dmain.rs653 let output_path = package_dir.join("Android.bp"); in write_build_files() localVariable
658 + read_license_header(&output_path)?.trim() in write_build_files()
661 write_format_android_bp(&output_path, &bp_contents, package_cfg.patch.as_deref())?; in write_build_files()
664 let output_path = package_dir.join("rules.mk"); in write_build_files() localVariable
669 + read_license_header(&output_path)?.trim() in write_build_files()
672 File::create(&output_path)?.write_all(mk_contents.as_bytes())?; in write_build_files()
674 apply_patch_file(&output_path, patch)?; in write_build_files()
792 fn apply_patch_file(output_path: &Path, patch_path: &Path) -> Result<()> { in apply_patch_file()
795 .arg(output_path) in apply_patch_file()