Home | History | Annotate | Download | only in target-i386

Lines Matching full:hax

14 #include "target-i386/hax-i386.h"
28 hDevice = CreateFile( "\\\\.\\HAX",
38 dprint("Failed to open the HAX device!\n");
57 dprint("Open HAX device failed\n");
136 int hax_capability(struct hax_state *hax, struct hax_capabilityinfo *cap)
139 HANDLE hDevice = hax->fd; //handle to hax module
144 dprint("Invalid fd for hax device!\n");
159 dprint("hax capability is too long to hold.\n");
160 dprint("Failed to get Hax capability:%d\n", err);
166 int hax_mod_version(struct hax_state *hax, struct hax_module_version *version)
169 HANDLE hDevice = hax->fd; //handle to hax module
174 dprint("Invalid fd for hax device!\n");
189 dprint("HAX module is too large.\n");
190 dprint("Failed to get Hax module version:%d\n", err);
231 int hax_host_create_vm(struct hax_state *hax, int *vmid)
237 if (hax_invalid_fd(hax->fd))
240 if (hax->vm)
243 ret = DeviceIoControl(hax->fd,
257 hax_fd hax_host_open_vm(struct hax_state *hax, int vm_id)
366 dprint("Failed to setup the hax tunnel\n");
372 dprint("Invalid hax tunnel size %x\n", info.size);