HomeSort by relevance Sort by last modified time
    Searched refs:vcpu (Results 1 - 4 of 4) sorted by null

  /external/qemu/target-i386/
hax-all.c 52 /* Sync the vcpu state from hax kernel module */
87 * QEMU emulation changes vcpu state,
88 * Sync the vcpu state to HAX kernel module
116 struct hax_vcpu_state *vcpu = env->hax_vcpu; local
117 if (!vcpu)
119 return vcpu->fd;
176 struct hax_vcpu_state *vcpu = NULL; local
181 dprint("vcpu %x created failed, vm is null\n", id);
187 dprint("vcpu %x allocated already\n", id);
191 vcpu = qemu_malloc(sizeof(struct hax_vcpu_state))
238 struct hax_vcpu_state *vcpu = env->hax_vcpu; local
471 struct hax_vcpu_state *vcpu = env->hax_vcpu; local
505 struct hax_vcpu_state *vcpu = env->hax_vcpu; local
526 struct hax_vcpu_state *vcpu = env->hax_vcpu; local
629 struct hax_vcpu_state *vcpu; local
    [all...]
hax-i386.h 65 int hax_vcpu_run(struct hax_vcpu_state *vcpu);
79 int hax_host_setup_vcpu_channel(struct hax_vcpu_state *vcpu);
hax-darwin.c 140 dprint("Too big vm id %x or vcpu id %x\n", vm_id, vcpu_id);
148 sprintf(name, "/dev/hax_vm%02d/vcpu%02d", vm_id, vcpu_id);
212 dprint("Failed to create vcpu %x\n", vcpuid);
232 dprint("Failed to open the vcpu devfs\n");
236 int hax_host_setup_vcpu_channel(struct hax_vcpu_state *vcpu)
241 ret = ioctl(vcpu->fd, HAX_VCPU_IOCTL_SETUP_TUNNEL, &info);
255 vcpu->tunnel = (struct hax_tunnel *)(info.va);
256 vcpu->iobuf = (unsigned char *)(info.io_va);
260 int hax_vcpu_run(struct hax_vcpu_state* vcpu)
264 ret = ioctl(vcpu->fd, HAX_VCPU_IOCTL_RUN, NULL)
    [all...]
hax-windows.c 220 dprint("Too big vm id %x or vcpu id %x\n", vm_id, vcpu_id);
318 dprint("Failed to create vcpu %x\n", vcpuid);
346 dprint("Failed to open the vcpu devfs\n");
351 int hax_host_setup_vcpu_channel(struct hax_vcpu_state *vcpu)
353 hax_fd hDeviceVCPU = vcpu->fd;
376 vcpu->tunnel = (struct hax_tunnel *)(info.va);
377 vcpu->iobuf = (unsigned char *)(info.io_va);
381 int hax_vcpu_run(struct hax_vcpu_state* vcpu)
384 HANDLE hDeviceVCPU = vcpu->fd;

Completed in 41 milliseconds