Lines Matching refs:temporary_directory
198 writeln!(writer, "\ttemporary_directory: {}", vm.temporary_directory.to_string_lossy()) in dump()
391 let (vm_context, cid, temporary_directory) = self.create_vm_context(requester_debug_pid)?; in create_vm_internal()
404 let device_tree_overlay = maybe_create_device_tree_overlay(config, &temporary_directory)?; in create_vm_internal()
408 Some(prepare_ramdump_file(&temporary_directory)?) in create_vm_internal()
428 let config = load_app_config(config, &debug_config, &temporary_directory) in create_vm_internal()
473 let zero_filler_path = temporary_directory.join("zero.img"); in create_vm_internal()
487 &temporary_directory, in create_vm_internal()
618 temporary_directory, in create_vm_internal()
690 temporary_directory: &Path, in maybe_create_device_tree_overlay()
735 let dt_output = temporary_directory.join(VM_DT_OVERLAY_PATH); in maybe_create_device_tree_overlay()
809 temporary_directory: &Path, in assemble_disk_image()
821 make_composite_image_filenames(temporary_directory, next_temporary_image_id); in assemble_disk_image()
899 temporary_directory: &Path, in load_app_config()
984 temporary_directory, in load_app_config()
1057 temporary_directory: &Path, in make_composite_image_filenames()
1063 composite: temporary_directory.join(format!("composite-{}.img", id)), in make_composite_image_filenames()
1064 header: temporary_directory.join(format!("composite-{}-header.img", id)), in make_composite_image_filenames()
1065 footer: temporary_directory.join(format!("composite-{}-footer.img", id)), in make_composite_image_filenames()
1394 fn prepare_ramdump_file(temporary_directory: &Path) -> binder::Result<File> { in prepare_ramdump_file()
1398 let ramdump_path = temporary_directory.join("ramdump"); in prepare_ramdump_file()