Lines Matching defs:handled

965 	int handled, func;
969 handled = x86_emulate_cpuid(vm, vcpu,
974 return (handled);
987 int handled)
991 handled ? "handled" : "unhandled",
1889 int error, handled, offset;
1893 handled = HANDLED;
1934 handled = UNHANDLED;
1947 handled = UNHANDLED;
1950 return (handled);
2022 * - if the access is allowed then it is handled by emulating the
2093 int error, errcode, errcode_valid, handled, in;
2106 handled = UNHANDLED;
2118 * These VM-exits are uncommon but must be handled specially
2129 * be handled specially by re-injecting the event if the IDT
2225 handled = vmx_emulate_cr0_access(vmx, vcpu, qual);
2228 handled = vmx_emulate_cr4_access(vmx, vcpu, qual);
2231 handled = vmx_emulate_cr8_access(vmx, vcpu, qual);
2245 handled = HANDLED;
2267 handled = HANDLED;
2316 * This is special. We want to treat this as an 'handled'
2352 handled = vmx_handle_cpuid(vmx->vm, vcpu, vmxctx);
2378 * The NMI has already been handled in vmx_exit_handle_nmi().
2458 handled = vmx_handle_apic_access(vmx, vcpu, vmexit);
2467 handled = vmx_handle_apic_write(vmx, vcpu, vlapic, qual);
2470 handled = vmx_emulate_xsetbv(vmx, vcpu, vmexit);
2483 if (handled) {
2514 return (handled);
2577 int rc, handled, launched;
2617 handled = UNHANDLED;
2666 handled = HANDLED;
2685 handled = vmx_exit_process(vmx, vcpu, vmexit);
2691 vmx_exit_trace(vmx, vcpu, rip, exit_reason, handled);
2693 } while (handled);
2696 * If a VM exit has been handled then the exitcode must be BOGUS
2697 * If a VM exit is not handled then the exitcode must not be BOGUS
2699 if ((handled && vmexit->exitcode != VM_EXITCODE_BOGUS) ||
2700 (!handled && vmexit->exitcode == VM_EXITCODE_BOGUS)) {
2701 panic("Mismatch between handled (%d) and exitcode (%d)",
2702 handled, vmexit->exitcode);
2705 if (!handled)