/external/crosvm/hypervisor/src/whpx/ |
D | vcpu.rs | 1283 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 …]
|
D | vm.rs | 768 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/ |
D | x86_64.rs | 316 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()
|
D | main.rs | 101 fn create_vcpu() { in create_vcpu() function 105 vm.create_vcpu(0).unwrap(); in create_vcpu()
|
/external/crosvm/devices/tests/irqchip/kvm/ |
D | mod.rs | 32 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()
|
D | x86_64.rs | 55 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/ |
D | pvm_wipe_mem.c | 75 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/ |
D | aarch64.rs | 67 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/ |
D | mmio_and_pio.rs | 91 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()
|
D | mmio_fetch_memory.rs | 54 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_whpx_mmio_fetch_memory()
|
D | real_run_addr.rs | 85 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_real_run_addr()
|
D | dirty_log.rs | 93 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_dirty_log()
|
D | read_only_memory.rs | 97 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_read_only_memory()
|
D | remove_memory.rs | 91 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_remove_memory()
|
D | tsc_offsets.rs | 108 let mut vcpu = vm.create_vcpu(0).expect("new vcpu failed"); in test_tsc_offsets()
|
/external/crosvm/hypervisor/src/haxm/ |
D | vcpu.rs | 960 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()
|
D | vm.rs | 455 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/ |
D | riscv64.rs | 25 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuRiscv64>>; in create_vcpu() method
|
D | aarch64.rs | 177 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuAArch64>>; in create_vcpu() method
|
/external/linux-kselftest/android/patches/ |
D | 0014-ANDROID-kvm-Test-that-pVM-memory-is-wiped-during-tea.patch | 105 +static int create_vcpu(int vmfd, struct kvm_run **run) 161 + vcpufd = create_vcpu(vmfd, &run);
|
/external/crosvm/hypervisor/src/kvm/ |
D | riscv64.rs | 93 fn create_vcpu(&self, id: usize) -> Result<Box<dyn VcpuRiscv64>> { in create_vcpu() method
|
/external/crosvm/hypervisor/src/geniezone/ |
D | mod.rs | 179 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/ |
D | whpx.rs | 63 let vcpu = vm.create_vcpu(i).expect("failed to instantiate vcpu"); in get_chip()
|
/external/crosvm/riscv64/src/ |
D | lib.rs | 369 .create_vcpu(vcpu_id) in build_vm()
|
/external/crosvm/src/crosvm/sys/linux/ |
D | vcpu.rs | 144 .create_vcpu(vcpu_id) in runnable_vcpu()
|