Lines Matching refs:handled

1114 	int handled, func;
1118 handled = x86_emulate_cpuid(vm, vcpu,
1123 return (handled);
1136 int handled)
1140 handled ? "handled" : "unhandled",
2038 int error, handled, offset;
2042 handled = HANDLED;
2083 handled = UNHANDLED;
2096 handled = UNHANDLED;
2099 return (handled);
2171 * - if the access is allowed then it is handled by emulating the
2242 int error, errcode, errcode_valid, handled, in;
2255 handled = UNHANDLED;
2268 * These VM-exits are uncommon but must be handled specially
2279 * be handled specially by re-injecting the event if the IDT
2377 handled = vmx_emulate_cr0_access(vmx, vcpu, qual);
2380 handled = vmx_emulate_cr4_access(vmx, vcpu, qual);
2383 handled = vmx_emulate_cr8_access(vmx, vcpu, qual);
2398 handled = HANDLED;
2422 handled = HANDLED;
2482 * This is special. We want to treat this as an 'handled'
2521 handled = vmx_handle_cpuid(vmx->vm, vcpu, vmxctx);
2547 * The NMI has already been handled in vmx_exit_handle_nmi().
2635 handled = vmx_handle_apic_access(vmx, vcpu, vmexit);
2646 handled = vmx_handle_apic_write(vmx, vcpu, vlapic, qual);
2650 handled = vmx_emulate_xsetbv(vmx, vcpu, vmexit);
2664 handled = HANDLED;
2686 if (handled) {
2719 vmx, vcpu, vmexit, handled);
2720 return (handled);
2850 int rc, handled, launched;
2892 handled = UNHANDLED;
2941 handled = HANDLED;
2992 handled = vmx_exit_process(vmx, vcpu, vmexit);
2998 vmx_exit_trace(vmx, vcpu, rip, exit_reason, handled);
3000 } while (handled);
3003 * If a VM exit has been handled then the exitcode must be BOGUS
3004 * If a VM exit is not handled then the exitcode must not be BOGUS
3006 if ((handled && vmexit->exitcode != VM_EXITCODE_BOGUS) ||
3007 (!handled && vmexit->exitcode == VM_EXITCODE_BOGUS)) {
3008 panic("Mismatch between handled (%d) and exitcode (%d)",
3009 handled, vmexit->exitcode);
3012 if (!handled)