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

  /external/qemu/target-i386/
hax-i386.h 18 #include "exec/hax.h"
40 hax_fd fd; /* the global hax device interface */
62 int hax_mod_version(struct hax_state *hax, struct hax_module_version *version);
64 struct hax_vm *hax_vm_create(struct hax_state *hax);
71 int hax_capability(struct hax_state *hax, struct hax_capabilityinfo *cap);
75 int hax_host_create_vm(struct hax_state *hax, int *vm_id);
76 hax_fd hax_host_open_vm(struct hax_state *hax, int vm_id);
84 #include "target-i386/hax-darwin.h"
88 #include "target-i386/hax-windows.h"
91 #include "target-i386/hax-interface.h
    [all...]
hax-darwin.c 14 /* HAX module interface - darwin version */
21 #include "target-i386/hax-i386.h"
24 int fd = open("/dev/HAX", O_RDWR);
28 dprint("Failed to open the hax module\n");
88 int hax_capability(struct hax_state *hax, struct hax_capabilityinfo *cap)
92 ret = ioctl(hax->fd, HAX_IOCTL_CAPABILITY, cap);
95 dprint("Failed to get HAX capability\n");
102 int hax_mod_version(struct hax_state *hax, struct hax_module_version *version)
106 ret = ioctl(hax->fd, HAX_IOCTL_VERSION, version);
109 dprint("Failed to get HAX version\n")
    [all...]