Home
last modified time | relevance | path

Searched refs:create_vcpu (Results 1 – 25 of 35) sorted by relevance

12

/external/crosvm/hypervisor/src/whpx/
Dvcpu.rs1283 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in try_clone()
1297 let mut vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in index()
1300 vcpu = vm.create_vcpu(1).expect("failed to create vcpu"); in index()
1314 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in get_regs()
1328 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in set_regs()
1348 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in debugregs()
1366 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in sregs()
1384 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in fpu()
1403 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in xcrs()
1424 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in set_msr()
[all …]
Dvm.rs768 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuX86_64>> { in create_vcpu() method
839 fn create_vcpu() { in create_vcpu() function
847 vm.create_vcpu(0).expect("failed to create vcpu"); in create_vcpu()
/external/crosvm/hypervisor/tests/kvm/
Dx86_64.rs316 let vcpu = vm.create_vcpu(0).unwrap(); in enable_feature()
341 let vcpu = vm.create_vcpu(0).unwrap(); in debugregs()
358 let vcpu = vm.create_vcpu(0).unwrap(); in xcrs()
370 let vcpu = vm.create_vcpu(0).unwrap(); in get_msr()
385 let vcpu = vm.create_vcpu(0).unwrap(); in set_msr()
398 let vcpu = vm.create_vcpu(0).unwrap(); in set_msr_unsupported()
Dmain.rs101 fn create_vcpu() { in create_vcpu() function
105 vm.create_vcpu(0).unwrap(); in create_vcpu()
/external/crosvm/devices/tests/irqchip/kvm/
Dmod.rs32 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in create_kvm_kernel_irqchip()
46 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in mp_state()
Dx86_64.rs55 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in get_kernel_chip()
78 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in get_split_chip()
/external/linux-kselftest/tools/testing/selftests/kvm/aarch64/
Dpvm_wipe_mem.c75 static int create_vcpu(int vmfd, struct kvm_run **run) in create_vcpu() function
131 vcpufd = create_vcpu(vmfd, &run); in main()
/external/crosvm/hypervisor/src/gunyah/
Daarch64.rs67 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuAArch64>> { in create_vcpu() method
68 Ok(Box::new(GunyahVm::create_vcpu(self, id)?)) in create_vcpu()
/external/crosvm/hypervisor/tests/
Dmmio_and_pio.rs91 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_mmio_and_pio()
252 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_pio_out()
390 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_pio_in()
Dmmio_fetch_memory.rs54 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_whpx_mmio_fetch_memory()
Dreal_run_addr.rs85 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_real_run_addr()
Ddirty_log.rs93 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_dirty_log()
Dread_only_memory.rs97 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_read_only_memory()
Dremove_memory.rs91 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_remove_memory()
Dtsc_offsets.rs108 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_tsc_offsets()
/external/crosvm/hypervisor/src/haxm/
Dvcpu.rs960 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in get_regs()
971 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in get_fpu()
982 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in set_msr()
993 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in get_msr()
1004 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in set_cpuid()
1028 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in set_efer()
Dvm.rs455 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuX86_64>> { in create_vcpu() method
529 fn create_vcpu() { in create_vcpu() function
534 vm.create_vcpu(0).expect("failed to create vcpu"); in create_vcpu()
686 let vcpu = vm.create_vcpu(0).expect("failed to create vcpu"); in register_log_file()
/external/crosvm/hypervisor/src/
Driscv64.rs25 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuRiscv64>>; in create_vcpu() method
Daarch64.rs177 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuAArch64>>; in create_vcpu() method
/external/linux-kselftest/android/patches/
D0014-ANDROID-kvm-Test-that-pVM-memory-is-wiped-during-tea.patch105 +static int create_vcpu(int vmfd, struct kvm_run **run)
161 + vcpufd = create_vcpu(vmfd, &run);
/external/crosvm/hypervisor/src/kvm/
Driscv64.rs93 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuRiscv64>> { in create_vcpu() method
/external/crosvm/hypervisor/src/geniezone/
Dmod.rs179 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuAArch64>> { in create_vcpu() method
180 Ok(Box::new(GeniezoneVm::create_vcpu(self, id)?)) in create_vcpu()
638 fn create_vcpu(&self, id: usize) -> Result<GeniezoneVcpu> { in create_vcpu() method
/external/crosvm/devices/tests/irqchip/
Dwhpx.rs63 let vcpu = vm.create_vcpu(i).expect("failed to instantiate vcpu"); in get_chip()
/external/crosvm/riscv64/src/
Dlib.rs369 .create_vcpu(vcpu_id) in build_vm()
/external/crosvm/src/crosvm/sys/linux/
Dvcpu.rs144 .create_vcpu(vcpu_id) in runnable_vcpu()

12