Lines Matching defs:VmComponents
77 pub struct VmComponents { struct
78 pub memory_size: u64,
79 pub vcpu_count: usize,
80 pub vcpu_affinity: Option<VcpuAffinity>,
81 pub no_smt: bool,
82 pub hugepages: bool,
83 pub vm_image: VmImage,
84 pub android_fstab: Option<File>,
85 pub pstore: Option<Pstore>,
86 pub initrd_image: Option<File>,
87 pub extra_kernel_params: Vec<String>,
88 pub wayland_dmabuf: bool,
89 pub acpi_sdts: Vec<SDT>,
90 pub rt_cpus: Vec<usize>,
91 pub protected_vm: ProtectionType,
93 pub gdb: Option<(u32, Tube)>, // port and control tube.
94 pub dmi_path: Option<PathBuf>,
138 components: &VmComponents, in guest_memory_layout()
151 components: VmComponents, in build_vm()