Searched refs:vmi (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/sys/amd64/include/
H A Dvmm.h145 typedef int (*vmi_run_func_t)(void *vmi, int vcpu, register_t rip,
147 typedef void (*vmi_cleanup_func_t)(void *vmi);
148 typedef int (*vmi_get_register_t)(void *vmi, int vcpu, int num,
150 typedef int (*vmi_set_register_t)(void *vmi, int vcpu, int num,
152 typedef int (*vmi_get_desc_t)(void *vmi, int vcpu, int num,
154 typedef int (*vmi_set_desc_t)(void *vmi, int vcpu, int num,
156 typedef int (*vmi_get_cap_t)(void *vmi, int vcpu, int num, int *retval);
157 typedef int (*vmi_set_cap_t)(void *vmi, int vcpu, int num, int val);
160 typedef struct vlapic * (*vmi_vlapic_init)(void *vmi, int vcpu);
161 typedef void (*vmi_vlapic_cleanup)(void *vmi, struc
[all...]
/freebsd-12-stable/sys/dev/aac/
H A Daac_cam.c634 struct aac_vmioctl *vmi; local
648 vmi = (struct aac_vmioctl *)&fib->data[0];
649 bzero(vmi, sizeof(struct aac_vmioctl));
651 vmi->Command = VM_Ioctl;
652 vmi->ObjType = FT_DRIVE;
653 vmi->MethId = sc->scsi_method_id;
654 vmi->ObjId = 0;
655 vmi->IoctlCmd = ResetBus;
657 rbc = (struct aac_resetbus *)&vmi->IoctlBuf[0];
H A Daac.c3712 struct aac_vmioctl *vmi; local
3749 vmi = (struct aac_vmioctl *)&fib->data[0];
3750 bzero(vmi, sizeof(struct aac_vmioctl));
3752 vmi->Command = VM_Ioctl;
3753 vmi->ObjType = FT_DRIVE;
3754 vmi->MethId = sc->scsi_method_id;
3755 vmi->ObjId = 0;
3756 vmi->IoctlCmd = GetBusInfo;
/freebsd-12-stable/sys/amd64/vmm/
H A Dvmm.c184 #define VMRUN(vmi, vcpu, rip, pmap, evinfo) \
185 (ops != NULL ? (*ops->vmrun)(vmi, vcpu, rip, pmap, evinfo) : ENXIO)
186 #define VMCLEANUP(vmi) (ops != NULL ? (*ops->vmcleanup)(vmi) : NULL)
191 #define VMGETREG(vmi, vcpu, num, retval) \
192 (ops != NULL ? (*ops->vmgetreg)(vmi, vcpu, num, retval) : ENXIO)
193 #define VMSETREG(vmi, vcpu, num, val) \
194 (ops != NULL ? (*ops->vmsetreg)(vmi, vcpu, num, val) : ENXIO)
195 #define VMGETDESC(vmi, vcpu, num, desc) \
196 (ops != NULL ? (*ops->vmgetdesc)(vmi, vcp
[all...]
/freebsd-12-stable/sys/dev/aacraid/
H A Daacraid_cam.c1261 struct aac_vmioctl *vmi; local
1310 vmi = (struct aac_vmioctl *)&fib->data[0];
1311 bzero(vmi, sizeof(struct aac_vmioctl));
1313 vmi->Command = VM_Ioctl;
1314 vmi->ObjType = FT_DRIVE;
1315 vmi->MethId = sc->scsi_method_id;
1316 vmi->ObjId = 0;
1317 vmi->IoctlCmd = ResetBus;
1319 rbc = (struct aac_resetbus *)&vmi->IoctlBuf[0];
H A Daacraid.c3637 struct aac_vmioctl *vmi; local
3674 vmi = (struct aac_vmioctl *)&fib->data[0];
3675 bzero(vmi, sizeof(struct aac_vmioctl));
3677 vmi->Command = VM_Ioctl;
3678 vmi->ObjType = FT_DRIVE;
3679 vmi->MethId = sc->scsi_method_id;
3680 vmi->ObjId = 0;
3681 vmi->IoctlCmd = GetBusInfo;

Completed in 189 milliseconds