/development/vndk/tools/header-checker/tests/ |
D | gen_all.py | 36 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,
|
D | module.py | 52 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:
|
D | test.py | 63 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/ |
D | migration_report.rs | 34 output_path: PathBuf, field 49 Ok(re.migration_report(&migration, &args.output_path)?) in main()
|
D | health_report.rs | 34 output_path: PathBuf, field 52 Ok(re.health_report(&cc, &args.output_path)?) in main()
|
/development/vndk/tools/header-checker/utils/ |
D | utils.py | 127 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/ |
D | reports.rs | 247 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/ |
D | repack_super_image.py | 121 part_imgs, output_path): argument 171 output_path])
|
/development/tools/cargo_embargo/src/ |
D | main.rs | 653 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()
|