HomeSort by: relevance | last modified time | path
    Searched defs:set_iopl (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/x86/x86/
sys_machdep.c 375 struct physdev_set_iopl set_iopl; local in function:x86_iopl
376 set_iopl.iopl = iopl;
377 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
bus_space.c 139 struct physdev_set_iopl set_iopl; local in function:x86_bus_space_init
140 memset(&set_iopl, 0, sizeof(set_iopl));
141 set_iopl.iopl = 1;
142 if (HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl) != 0)
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
physdev.h 233 struct physdev_set_iopl set_iopl; member in union:physdev_op::__anon36d1bd74020a
  /src/sys/arch/i386/i386/
machdep.c 498 struct physdev_set_iopl set_iopl; local in function:i386_switch_context
499 set_iopl.iopl = pcb->pcb_iopl;
500 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
  /src/sys/arch/amd64/amd64/
machdep.c 428 struct physdev_set_iopl set_iopl; local in function:x86_64_switch_context
429 set_iopl.iopl = new->pcb_iopl;
430 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);
492 struct physdev_set_iopl set_iopl; local in function:x86_64_proc0_pcb_ldt_init
493 set_iopl.iopl = pcb->pcb_iopl;
494 HYPERVISOR_physdev_op(PHYSDEVOP_set_iopl, &set_iopl);

Completed in 57 milliseconds