/external/linux-kselftest/tools/testing/selftests/kvm/lib/ |
D | kvm_util_internal.h | 37 struct vcpu { struct 38 struct vcpu *next, *prev; argument 55 struct vcpu *vcpu_head; argument
|
D | kvm_util.c | 408 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vm_vcpu_rm() local 806 struct vcpu *vcpu; in vm_vcpu_add() local 1119 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_state() local 1148 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in _vcpu_run() local 1160 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_run_complete_io() local 1192 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_set_mp_state() local 1219 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_regs_get() local 1246 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_regs_set() local 1260 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_events_get() local 1273 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_events_set() local [all …]
|
/external/crosvm/tests/ |
D | plugin_supported_cpuid.c | 23 vcpu_function vcpu; member 65 struct crosvm_vcpu* vcpu = NULL; in main() local
|
D | plugin_enable_cap.c | 126 int check_synic_access(struct crosvm_vcpu* vcpu, struct crosvm_vcpu_event *evt, in check_synic_access() 218 struct crosvm_vcpu* vcpu = NULL; in main() local
|
D | mini_plugin_template.c | 48 struct crosvm_vcpu *vcpu; member 53 struct crosvm_vcpu *vcpu = ctx->vcpu; in vcpu_thread() local
|
D | plugin_vcpu_pause.c | 52 struct crosvm_vcpu *vcpu = arg; in vcpu_thread_fn() local 210 struct crosvm_vcpu *vcpu; in main() local
|
D | plugin_irqfd.c | 76 struct crosvm_vcpu *vcpu; member 83 struct crosvm_vcpu *vcpu = ctx->vcpu; in vcpu_thread() local
|
D | plugin_adder.c | 41 struct crosvm_vcpu *vcpu = arg; in vcpu_thread() local
|
D | plugin_async_write.c | 42 struct crosvm_vcpu *vcpu = arg; in vcpu_thread() local
|
D | plugin_dirty_log.c | 42 struct crosvm_vcpu *vcpu = arg; in vcpu_thread() local
|
D | plugin_ioevent.c | 41 struct crosvm_vcpu *vcpu = arg; in vcpu_thread() local
|
D | plugin_hint.c | 43 struct crosvm_vcpu *vcpu = arg; in vcpu_thread() local
|
/external/crosvm/devices/src/irqchip/kvm/ |
D | mod.rs | 32 let vcpu: &KvmVcpu = vcpu in add_vcpu() localVariable 204 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in create_kvm_kernel_irqchip() localVariable 218 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in mp_state() localVariable
|
D | x86_64.rs | 307 let vcpu: &KvmVcpu = vcpu in add_vcpu() localVariable 469 let vcpu: &KvmVcpu = vcpu in inject_interrupts() localVariable 723 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in get_kernel_chip() localVariable 746 let vcpu = vm.create_vcpu(0).expect("failed to instantiate vcpu"); in get_split_chip() localVariable
|
/external/crosvm/kvm/tests/ |
D | real_run_adder.rs | 31 let vcpu = Vcpu::new(0, &kvm, &vm).expect("new vcpu failed"); in test_run() localVariable
|
D | dirty_log.rs | 33 let vcpu = Vcpu::new(0, &kvm, &vm).expect("new vcpu failed"); in test_run() localVariable
|
D | read_only_memory.rs | 35 let vcpu = Vcpu::new(0, &kvm, &vm).expect("new vcpu failed"); in test_run() localVariable
|
/external/crosvm/hypervisor/src/kvm/ |
D | x86_64.rs | 1469 let vcpu = vm.create_vcpu(0).unwrap(); in mp_state() localVariable 1480 let vcpu = vm.create_vcpu(0).unwrap(); in enable_feature() localVariable 1504 let vcpu = vm.create_vcpu(0).unwrap(); in debugregs() localVariable 1521 let vcpu = vm.create_vcpu(0).unwrap(); in xcrs() localVariable 1534 let vcpu = vm.create_vcpu(0).unwrap(); in get_msrs() localVariable 1556 let vcpu = vm.create_vcpu(0).unwrap(); in set_msrs() localVariable 1577 let vcpu = vm.create_vcpu(0).unwrap(); in get_hyperv_cpuid() localVariable
|
D | mod.rs | 210 let vcpu = unsafe { SafeDescriptor::from_raw_descriptor(fd) }; in create_vcpu() localVariable 647 vcpu: SafeDescriptor, field 663 let vcpu = self.vcpu.try_clone()?; in try_clone() localVariable 1379 let vcpu = vm.create_vcpu(0).unwrap(); in set_signal_mask() localVariable
|
/external/crosvm/kvm/src/ |
D | lib.rs | 943 vcpu: File, field 969 let vcpu = unsafe { File::from_raw_descriptor(vcpu_fd) }; in new() localVariable 1491 vcpu: Vcpu, field 2019 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in debugregs() localVariable 2037 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in xcrs() localVariable 2051 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in get_msrs() localVariable 2074 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in get_hyperv_cpuid() localVariable 2092 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in enable_feature() localVariable 2105 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in mp_state() localVariable 2115 let vcpu = Vcpu::new(0, &kvm, &vm).unwrap(); in set_signal_mask() localVariable
|
/external/crosvm/src/plugin/ |
D | mod.rs | 6 mod vcpu; module 446 let vcpu = Vcpu::new(cpu_id as c_ulong, kvm, vm).map_err(Error::CreateVcpu)?; in run_vcpus() localVariable 464 let vcpu = vcpu in run_vcpus() localVariable
|
/external/linux-kselftest/tools/testing/selftests/kvm/lib/x86_64/ |
D | processor.c | 785 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_set_cpuid() local 855 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_get_msr() local 889 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in _vcpu_set_msr() local 1067 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_save_state() local 1150 struct vcpu *vcpu = vcpu_find(vm, vcpuid); in vcpu_load_state() local
|
/external/crosvm/x86_64/src/ |
D | test_integration.rs | 213 let vcpu = *vm in simple_vm_test() localVariable
|
/external/linux-kselftest/tools/testing/selftests/kvm/lib/s390x/ |
D | processor.c | 274 struct vcpu *vcpu = vm->vcpu_head; in vcpu_dump() local
|
/external/crosvm/aarch64/src/ |
D | lib.rs | 269 let vcpu: Vcpu = *vm in build_vm() localVariable
|