Lines Matching defs:handled

1251 	int handled;
1253 handled = x86_emulate_cpuid(vcpu->vcpu, (uint64_t *)&vmxctx->guest_rax,
1256 return (handled);
1267 int handled)
1270 handled ? "handled" : "unhandled",
2178 int error, handled, offset;
2182 handled = HANDLED;
2223 handled = UNHANDLED;
2236 handled = UNHANDLED;
2239 return (handled);
2311 * - if the access is allowed then it is handled by emulating the
2382 int error, errcode, errcode_valid, handled, in;
2398 handled = UNHANDLED;
2414 * These VM-exits are uncommon but must be handled specially
2425 * be handled specially by re-injecting the event if the IDT
2523 handled = vmx_emulate_cr0_access(vcpu, qual);
2526 handled = vmx_emulate_cr4_access(vcpu, qual);
2529 handled = vmx_emulate_cr8_access(vmx, vcpu, qual);
2544 handled = HANDLED;
2568 handled = HANDLED;
2628 * This is special. We want to treat this as an 'handled'
2667 handled = vmx_handle_cpuid(vcpu, vmxctx);
2693 * The NMI has already been handled in vmx_exit_handle_nmi().
2793 handled = vmx_handle_apic_access(vcpu, vmexit);
2804 handled = vmx_handle_apic_write(vcpu, vlapic, qual);
2808 handled = vmx_emulate_xsetbv(vmx, vcpu, vmexit);
2822 handled = HANDLED;
2840 handled = HANDLED;
2849 if (handled) {
2882 vmx, vcpuid, vmexit, handled);
2883 return (handled);
3036 int rc, handled, launched;
3078 handled = UNHANDLED;
3127 handled = HANDLED;
3168 * transition of this MSR is handled separately from those
3169 * handled by vmx_msr_guest_{enter,exit}(), which are ok to
3211 handled = vmx_exit_process(vmx, vcpu, vmexit);
3217 vmx_exit_trace(vcpu, rip, exit_reason, handled);
3219 } while (handled);
3222 * If a VM exit has been handled then the exitcode must be BOGUS
3223 * If a VM exit is not handled then the exitcode must not be BOGUS
3225 if ((handled && vmexit->exitcode != VM_EXITCODE_BOGUS) ||
3226 (!handled && vmexit->exitcode == VM_EXITCODE_BOGUS)) {
3227 panic("Mismatch between handled (%d) and exitcode (%d)",
3228 handled, vmexit->exitcode);