Home
last modified time | relevance | path

Searched refs:output_file (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Virtualization/microdroid/initrd/src/
Dmain.rs102 let mut output_file = File::create(output)?; in attach_bootconfig() localVariable
108 std::io::copy(&mut initrd_file, &mut output_file)?; in attach_bootconfig()
111 std::io::copy(&mut bootconfig_file, &mut output_file)?; in attach_bootconfig()
118 output_file.write_all(&ZEROS[..padding_size])?; in attach_bootconfig()
119 output_file.write_all(&((padding_size + bootconfig_size) as u32).to_le_bytes())?; in attach_bootconfig()
120 output_file.write_all(&checksum.to_le_bytes())?; in attach_bootconfig()
121 output_file.write_all(BOOTCONFIG_MAGIC.as_bytes())?; in attach_bootconfig()
122 output_file.flush()?; in attach_bootconfig()
/packages/apps/Car/systemlibs/tools/rro/
Dgenerate-overlays.py63 def generate_overlays_file(resources, output_file): argument
73 if not output_file:
76 with open(output_file, 'wb') as f:
Dgenerate-overlayable.py60 def generate_overlayable_file(resources, target_name, policy_type, output_file): argument
74 if not output_file:
77 with open(output_file, 'wb') as f:
/packages/modules/Bluetooth/system/blueberry/utils/
Dbt_audio_utils.py283 output_file = os.path.join(file_path, output_file_name)
287 output_file=output_file,
290 return output_file
/packages/modules/Bluetooth/floss/pandora/floss/
Dcras_utils.py160 def loopback_cmd(output_file, duration=10, channels=2, rate=48000): argument
173 args += ['--loopback_file', output_file]