Searched refs:output_file (Results 1 – 5 of 5) sorted by relevance
/packages/modules/Virtualization/microdroid/initrd/src/ |
D | main.rs | 102 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/ |
D | generate-overlays.py | 63 def generate_overlays_file(resources, output_file): argument 73 if not output_file: 76 with open(output_file, 'wb') as f:
|
D | generate-overlayable.py | 60 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/ |
D | bt_audio_utils.py | 283 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/ |
D | cras_utils.py | 160 def loopback_cmd(output_file, duration=10, channels=2, rate=48000): argument 173 args += ['--loopback_file', output_file]
|