├── .gitignore ├── Config.mk ├── LICENSES └── ISC.txt ├── Makefile ├── README.md ├── Rules.mk ├── common ├── attoimg │ ├── Makefile │ ├── Makefile.attoimg │ ├── attoimg-private.h │ ├── attoimg.c │ ├── attoimg.h │ ├── elfstructs.h │ ├── libelf-loader.c │ ├── libelf-private.h │ ├── libelf-tools.c │ ├── libelf.h │ ├── main.c │ ├── mptables.c │ ├── sha256.c │ ├── sha256.h │ ├── util.c │ └── util.h ├── attoxen-api │ ├── ax_attovm.h │ ├── ax_attovm_stub.h │ ├── ax_config.c │ ├── ax_config.h │ ├── ax_config_fetch.c │ ├── ax_constants.h │ ├── ax_ga_types.h │ ├── ax_structures.h │ ├── ax_vars.h │ └── hv_tests.h ├── cuckoo │ ├── fingerprint.c │ └── fingerprint.h ├── filecrypt │ ├── Makefile │ ├── Makefile.filecrypt │ ├── SOURCE │ ├── filecrypt.h │ └── main.c ├── hostconfig │ ├── Makefile │ ├── Makefile.hostconfig │ ├── base64.c │ ├── base64.h │ ├── hostconfig-res.rc │ ├── json.h │ ├── osx.c │ ├── smbios.c │ ├── smbios.h │ ├── smc.c │ ├── smc.h │ ├── urlencode.c │ ├── urlencode.h │ ├── win32.c │ ├── wmi.c │ └── wmi.h ├── img-tools │ ├── img-rm.c │ ├── img-test.c │ ├── libimg.h │ ├── mt19937-64.c │ ├── swap-fsck.c │ └── swap-seal.c ├── include │ ├── Makefile │ ├── atto-agent-protocol.h │ ├── dm-features.h │ ├── echo-common.h │ ├── err.h │ ├── queue.h │ ├── uxen_def.h │ ├── uxen_desc_sys.h │ ├── uxen_ioctl_def.h │ ├── uxendisp-common.h │ ├── uxendisp-ctrl.h │ ├── uxenh264-common.h │ ├── uxenhid-common.h │ ├── whpx-shared.h │ └── xen-public │ │ ├── libelf │ │ └── libelf.h │ │ ├── uxen │ │ ├── platform_interface.h │ │ ├── uxen_desc.h │ │ ├── uxen_info.h │ │ └── uxen_types.h │ │ └── xen │ │ ├── _stdint.h │ │ ├── arch-x86 │ │ └── cpuid.h │ │ ├── attovm.h │ │ ├── domctl.h │ │ ├── elfnote.h │ │ ├── event_channel.h │ │ ├── features.h │ │ ├── grant_table.h │ │ ├── hvm │ │ ├── e820.h │ │ ├── hvm_info_table.h │ │ ├── hvm_op.h │ │ ├── ioreq.h │ │ ├── params.h │ │ └── save.h │ │ ├── introspection-features.h │ │ ├── memory.h │ │ ├── physdev.h │ │ ├── sched.h │ │ ├── sysctl.h │ │ ├── v4v.h │ │ ├── version.h │ │ └── xen.h ├── libelf │ ├── COPYING │ ├── Makefile │ ├── README │ ├── elfstructs.h │ ├── libelf-dominfo.c │ ├── libelf-loader.c │ ├── libelf-private.h │ ├── libelf-relocate.c │ ├── libelf-tools.c │ └── libelf.h ├── libvhd │ ├── Makefile │ ├── atomicio.c │ ├── atomicio.h │ ├── block-vhd.c │ ├── bswap.h │ ├── libvhd-index.c │ ├── libvhd-index.h │ ├── libvhd-journal.c │ ├── libvhd-journal.h │ ├── libvhd.c │ ├── libvhd.h │ ├── list.h │ ├── relative-path.c │ ├── relative-path.h │ ├── tapdisk-driver.h │ ├── tapdisk-interface.h │ ├── tapdisk-log.c │ ├── tapdisk-log.h │ ├── tapdisk.h │ ├── util.h │ └── vhd.h ├── libvncserver │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── Doxyfile │ ├── INSTALL │ ├── LibVNCServer.spec.in │ ├── Makefile.am │ ├── Makefile.in │ ├── Makefile.libvncserver │ ├── NEWS │ ├── README │ ├── README.md │ ├── TODO │ ├── aclocal.m4 │ ├── autogen.sh │ ├── client_examples │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── SDLvncviewer.c │ │ ├── backchannel.c │ │ ├── gtkvncviewer.c │ │ ├── ppmtest.c │ │ ├── scrap.c │ │ ├── scrap.h │ │ └── vnc2mpg.c │ ├── common │ │ ├── d3des.c │ │ ├── d3des.h │ │ ├── lzoconf.h │ │ ├── lzodefs.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── minilzo.c │ │ ├── minilzo.h │ │ ├── sha-private.h │ │ ├── sha.h │ │ ├── sha1.c │ │ ├── turbojpeg.c │ │ ├── turbojpeg.h │ │ ├── vncauth.c │ │ └── zywrletemplate.c │ ├── compat │ │ └── msvc │ │ │ ├── stdint.h │ │ │ ├── sys │ │ │ └── time.h │ │ │ └── unistd.h │ ├── compile │ ├── config.guess │ ├── config.sub │ ├── configure │ ├── configure.ac │ ├── depcomp │ ├── examples │ │ ├── 1instance.c │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── android │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ └── fbvncserver.c │ │ ├── backchannel.c │ │ ├── blooptest.c │ │ ├── camera.c │ │ ├── colourmaptest.c │ │ ├── example.c │ │ ├── filetransfer.c │ │ ├── fontsel.c │ │ ├── mac.c │ │ ├── pnmshow.c │ │ ├── pnmshow24.c │ │ ├── radon.h │ │ ├── regiontest.c │ │ ├── repeater.c │ │ ├── rotate.c │ │ ├── rotatetemplate.c │ │ ├── simple.c │ │ ├── simple15.c │ │ ├── storepasswd.c │ │ ├── vncev.c │ │ └── zippy.c │ ├── install-sh │ ├── libvncclient.pc.in │ ├── libvncclient │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── corre.c │ │ ├── cursor.c │ │ ├── hextile.c │ │ ├── listen.c │ │ ├── rfbproto.c │ │ ├── rre.c │ │ ├── sockets.c │ │ ├── tight.c │ │ ├── tls.h │ │ ├── tls_gnutls.c │ │ ├── tls_none.c │ │ ├── tls_openssl.c │ │ ├── ultra.c │ │ ├── vncviewer.c │ │ ├── zlib.c │ │ └── zrle.c │ ├── libvncserver-config.in │ ├── libvncserver.pc.in │ ├── libvncserver │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── auth.c │ │ ├── cargs.c │ │ ├── corre.c │ │ ├── cursor.c │ │ ├── cutpaste.c │ │ ├── draw.c │ │ ├── font.c │ │ ├── hextile.c │ │ ├── httpd.c │ │ ├── main.c │ │ ├── private.h │ │ ├── rfbcrypto.h │ │ ├── rfbcrypto_gnutls.c │ │ ├── rfbcrypto_included.c │ │ ├── rfbcrypto_openssl.c │ │ ├── rfbcrypto_polarssl.c │ │ ├── rfbregion.c │ │ ├── rfbserver.c │ │ ├── rfbssl.h │ │ ├── rfbssl_gnutls.c │ │ ├── rfbssl_none.c │ │ ├── rfbssl_openssl.c │ │ ├── rre.c │ │ ├── scale.c │ │ ├── scale.h │ │ ├── selbox.c │ │ ├── sockets.c │ │ ├── stats.c │ │ ├── tableinit24.c │ │ ├── tableinitcmtemplate.c │ │ ├── tableinittctemplate.c │ │ ├── tabletrans24template.c │ │ ├── tabletranstemplate.c │ │ ├── tight.c │ │ ├── tightvnc-filetransfer │ │ │ ├── filelistinfo.c │ │ │ ├── filelistinfo.h │ │ │ ├── filetransfermsg.c │ │ │ ├── filetransfermsg.h │ │ │ ├── handlefiletransferrequest.c │ │ │ ├── handlefiletransferrequest.h │ │ │ ├── rfbtightproto.h │ │ │ └── rfbtightserver.c │ │ ├── translate.c │ │ ├── ultra.c │ │ ├── websockets.c │ │ ├── zlib.c │ │ ├── zrle.c │ │ ├── zrleencodetemplate.c │ │ ├── zrleoutstream.c │ │ ├── zrleoutstream.h │ │ ├── zrlepalettehelper.c │ │ ├── zrlepalettehelper.h │ │ └── zrletypes.h │ ├── ltmain.sh │ ├── m4 │ │ ├── .gitignore │ │ ├── ax_prefix_config_h.m4 │ │ ├── ax_type_socklen_t.m4 │ │ ├── libgcrypt.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── missing │ ├── rfb │ │ ├── default8x16.h │ │ ├── keysym.h │ │ ├── rfb.h │ │ ├── rfbclient.h │ │ ├── rfbconfig.h.cmake │ │ ├── rfbint.h.cmake │ │ ├── rfbproto.h │ │ └── rfbregion.h │ ├── rfbconfig.h.in │ ├── test │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── blooptest.c │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── cargstest.c │ │ ├── copyrecttest.c │ │ ├── cursortest.c │ │ ├── encodingstest.c │ │ ├── tjbench.c │ │ ├── tjunittest.c │ │ ├── tjutil.c │ │ └── tjutil.h │ ├── utils │ │ ├── bdf2c.pl │ │ ├── consolefont2c.pl │ │ └── git2cl.pl │ └── webclients │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── index.vnc │ │ ├── java-applet │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── VncViewer.jar │ │ ├── javaviewer.pseudo_proxy.patch │ │ └── ssl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── SignedUltraViewerSSL.jar │ │ │ ├── SignedVncViewer.jar │ │ │ ├── UltraViewerSSL.jar │ │ │ ├── VncViewer.jar │ │ │ ├── index.vnc │ │ │ ├── onetimekey │ │ │ ├── proxy.vnc │ │ │ ├── ss_vncviewer │ │ │ ├── tightvnc-1.3dev7_javasrc-vncviewer-cursor-colors+no-tab-traversal.patch │ │ │ ├── tightvnc-1.3dev7_javasrc-vncviewer-ssl.patch │ │ │ ├── ultra.vnc │ │ │ ├── ultraproxy.vnc │ │ │ ├── ultrasigned.vnc │ │ │ └── ultravnc-102-JavaViewer-ssl-etc.patch │ │ └── novnc │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── favicon.ico │ │ ├── images │ │ ├── alt.png │ │ ├── clipboard.png │ │ ├── connect.png │ │ ├── ctrl.png │ │ ├── ctrlaltdel.png │ │ ├── disconnect.png │ │ ├── drag.png │ │ ├── esc.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── keyboard.png │ │ ├── mouse_left.png │ │ ├── mouse_middle.png │ │ ├── mouse_none.png │ │ ├── mouse_right.png │ │ ├── power.png │ │ ├── screen_320x460.png │ │ ├── screen_57x57.png │ │ ├── screen_700x700.png │ │ ├── settings.png │ │ ├── showextrakeys.png │ │ └── tab.png │ │ ├── include │ │ ├── Orbitron700.ttf │ │ ├── Orbitron700.woff │ │ ├── base.css │ │ ├── base64.js │ │ ├── black.css │ │ ├── blue.css │ │ ├── chrome-app │ │ │ └── tcp-client.js │ │ ├── des.js │ │ ├── display.js │ │ ├── input.js │ │ ├── jsunzip.js │ │ ├── keyboard.js │ │ ├── keysym.js │ │ ├── keysymdef.js │ │ ├── logo.js │ │ ├── playback.js │ │ ├── rfb.js │ │ ├── ui.js │ │ ├── util.js │ │ ├── web-socket-js │ │ │ ├── README.txt │ │ │ ├── WebSocketMain.swf │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ │ ├── websock.js │ │ └── webutil.js │ │ ├── vnc.html │ │ └── vnc_auto.html ├── lz4 │ ├── lz4.c │ ├── lz4.h │ ├── lz4hc.c │ └── lz4hc.h ├── pvnested-api │ ├── pvnested-constants.h │ └── pvnested-structures.h ├── rbtree │ ├── rbhist.h │ ├── rbtree.c │ └── rbtree.h ├── seabios │ ├── .config │ ├── .gitignore │ ├── COPYING │ ├── COPYING.LESSER │ ├── GNUmakefile │ ├── Makefile │ ├── README │ ├── TODO │ ├── src │ │ ├── Kconfig │ │ ├── acpi-dsdt.dsl │ │ ├── acpi-dsdt.hex │ │ ├── acpi.c │ │ ├── acpi.h │ │ ├── ahci.c │ │ ├── ahci.h │ │ ├── apm.c │ │ ├── asm-offsets.c │ │ ├── ata.c │ │ ├── ata.h │ │ ├── biostables.c │ │ ├── biosvar.h │ │ ├── block.c │ │ ├── blockcmd.c │ │ ├── blockcmd.h │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── boot.c │ │ ├── boot.h │ │ ├── bootsplash.c │ │ ├── bregs.h │ │ ├── cdrom.c │ │ ├── clock.c │ │ ├── cmos.h │ │ ├── code16gcc.s │ │ ├── config.h │ │ ├── coreboot.c │ │ ├── disk.c │ │ ├── disk.h │ │ ├── entryfuncs.S │ │ ├── farptr.h │ │ ├── floppy.c │ │ ├── font.c │ │ ├── gen-defs.h │ │ ├── ioport.h │ │ ├── jpeg.c │ │ ├── jpeg.h │ │ ├── kbd.c │ │ ├── lzmadecode.c │ │ ├── lzmadecode.h │ │ ├── memmap.c │ │ ├── memmap.h │ │ ├── misc.c │ │ ├── mouse.c │ │ ├── mptable.c │ │ ├── mptable.h │ │ ├── mtrr.c │ │ ├── optionroms.c │ │ ├── optionroms.h │ │ ├── output.c │ │ ├── paravirt.c │ │ ├── paravirt.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_ids.h │ │ ├── pci_regs.h │ │ ├── pcibios.c │ │ ├── pciinit.c │ │ ├── pic.c │ │ ├── pic.h │ │ ├── pirtable.c │ │ ├── pmm.c │ │ ├── pnpbios.c │ │ ├── post.c │ │ ├── ps2port.c │ │ ├── ps2port.h │ │ ├── ramdisk.c │ │ ├── resume.c │ │ ├── romlayout.S │ │ ├── serial.c │ │ ├── shadow.c │ │ ├── smbios.c │ │ ├── smbios.h │ │ ├── smm.c │ │ ├── smp.c │ │ ├── ssdt-pcihp.dsl │ │ ├── ssdt-pcihp.hex │ │ ├── ssdt-proc.dsl │ │ ├── ssdt-proc.hex │ │ ├── stacks.c │ │ ├── system.c │ │ ├── types.h │ │ ├── usb-ehci.c │ │ ├── usb-ehci.h │ │ ├── usb-hid.c │ │ ├── usb-hid.h │ │ ├── usb-hub.c │ │ ├── usb-hub.h │ │ ├── usb-msc.c │ │ ├── usb-msc.h │ │ ├── usb-ohci.c │ │ ├── usb-ohci.h │ │ ├── usb-uhci.c │ │ ├── usb-uhci.h │ │ ├── usb.c │ │ ├── usb.h │ │ ├── util.c │ │ ├── util.h │ │ ├── vbe.h │ │ ├── vgahooks.c │ │ ├── virtio-blk.c │ │ ├── virtio-blk.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-ring.c │ │ ├── virtio-ring.h │ │ ├── virtio-scsi.c │ │ ├── virtio-scsi.h │ │ ├── xen.c │ │ └── xen.h │ ├── tools │ │ ├── acpi_extract.py │ │ ├── acpi_extract_preprocess.py │ │ ├── buildrom.py │ │ ├── buildversion.sh │ │ ├── checkrom.py │ │ ├── checkstack.py │ │ ├── checksum.py │ │ ├── encodeint.py │ │ ├── gen-offsets.sh │ │ ├── kconfig │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── POTFILES.in │ │ │ ├── check.sh │ │ │ ├── conf.c │ │ │ ├── confdata.c │ │ │ ├── expr.c │ │ │ ├── expr.h │ │ │ ├── gconf.c │ │ │ ├── gconf.glade │ │ │ ├── images.c │ │ │ ├── kconfig_load.c │ │ │ ├── kxgettext.c │ │ │ ├── lex.zconf.c_shipped │ │ │ ├── lkc.h │ │ │ ├── lkc_proto.h │ │ │ ├── lxdialog │ │ │ │ ├── .gitignore │ │ │ │ ├── BIG.FAT.WARNING │ │ │ │ ├── check-lxdialog.sh │ │ │ │ ├── checklist.c │ │ │ │ ├── dialog.h │ │ │ │ ├── inputbox.c │ │ │ │ ├── menubox.c │ │ │ │ ├── textbox.c │ │ │ │ ├── util.c │ │ │ │ └── yesno.c │ │ │ ├── mconf.c │ │ │ ├── menu.c │ │ │ ├── nconf.c │ │ │ ├── nconf.gui.c │ │ │ ├── nconf.h │ │ │ ├── qconf.cc │ │ │ ├── qconf.h │ │ │ ├── symbol.c │ │ │ ├── util.c │ │ │ ├── zconf.gperf │ │ │ ├── zconf.hash.c_shipped │ │ │ ├── zconf.l │ │ │ ├── zconf.tab.c_shipped │ │ │ └── zconf.y │ │ ├── layoutrom.py │ │ ├── readserial.py │ │ ├── test-gcc.sh │ │ ├── transdump.py │ │ └── vgafixup.py │ └── vgasrc │ │ ├── Kconfig │ │ ├── bochsvga.c │ │ ├── bochsvga.h │ │ ├── clext.c │ │ ├── clext.h │ │ ├── geodevga.c │ │ ├── geodevga.h │ │ ├── stdvga.c │ │ ├── stdvga.h │ │ ├── stdvgaio.c │ │ ├── stdvgamodes.c │ │ ├── uxenvga.c │ │ ├── uxenvga.h │ │ ├── vbe.c │ │ ├── vgabios.c │ │ ├── vgabios.h │ │ ├── vgaentry.S │ │ ├── vgafb.c │ │ ├── vgafonts.c │ │ ├── vgahw.h │ │ └── vgalayout.lds.S ├── uxenconsole │ ├── Makefile │ ├── Makefile.uxenconsole │ ├── console-rpc.h │ ├── disp.c │ ├── dump.c │ ├── hid.c │ ├── osx-keymap.h │ ├── uxenconsole-osx.m │ ├── uxenconsole-res.rc │ ├── uxenconsole-windows.c │ ├── uxenconsole.manifest │ ├── uxenconsolelib.c │ └── uxenconsolelib.h ├── uxenctl │ ├── Makefile │ ├── Makefile.uxenctl │ ├── uxenctl-res.rc │ ├── uxenctl.c │ ├── uxenctllib-args.c │ ├── uxenctllib-args.h │ ├── uxenctllib-osx.c │ ├── uxenctllib-windows.c │ ├── uxenctllib.c │ └── uxenctllib.h ├── uxenh264 │ ├── uxenh264lib.cpp │ ├── uxenh264lib.h │ ├── uxenh264libinternal.h │ ├── uxenh264pipeline.cpp │ ├── uxenh264pipeline.h │ └── uxenh264utils.h ├── v4v │ └── v4vtest │ │ ├── Makefile │ │ ├── Makefile.v4vtest │ │ ├── v4vtest.c │ │ └── v4vtestrr.c ├── vhd-util │ ├── vhd-util-check.c │ ├── vhd-util-coalesce.c │ ├── vhd-util-create.c │ ├── vhd-util-fill.c │ ├── vhd-util-modify.c │ ├── vhd-util-query.c │ ├── vhd-util-read.c │ ├── vhd-util-repair.c │ ├── vhd-util-resize.c │ ├── vhd-util-revert.c │ ├── vhd-util-scan.c │ ├── vhd-util-set-field.c │ ├── vhd-util-snapshot.c │ ├── vhd-util.c │ └── vhd-util.h ├── xen-tools │ ├── .gitignore │ ├── Config.mk │ ├── Makefile │ ├── Rules.mk │ ├── blktap │ │ ├── Makefile │ │ ├── README │ │ ├── drivers │ │ │ ├── Makefile │ │ │ ├── aes.c │ │ │ ├── aes.h │ │ │ ├── blk.h │ │ │ ├── blk_linux.c │ │ │ ├── blktapctrl.c │ │ │ ├── blktapctrl.h │ │ │ ├── blktapctrl_linux.c │ │ │ ├── block-aio.c │ │ │ ├── block-qcow.c │ │ │ ├── block-qcow2.c │ │ │ ├── block-ram.c │ │ │ ├── block-sync.c │ │ │ ├── block-vmdk.c │ │ │ ├── bswap.h │ │ │ ├── check_gcrypt │ │ │ ├── img2qcow.c │ │ │ ├── qcow-create.c │ │ │ ├── qcow2raw.c │ │ │ ├── tapaio.c │ │ │ ├── tapaio.h │ │ │ ├── tapdisk.c │ │ │ └── tapdisk.h │ │ └── lib │ │ │ ├── Makefile │ │ │ ├── blkif.c │ │ │ ├── blktaplib.h │ │ │ ├── list.h │ │ │ ├── xenbus.c │ │ │ ├── xs_api.c │ │ │ └── xs_api.h │ ├── blktap2 │ │ ├── Makefile │ │ ├── README │ │ ├── control │ │ │ ├── Makefile │ │ │ ├── tap-ctl-allocate.c │ │ │ ├── tap-ctl-attach.c │ │ │ ├── tap-ctl-check.c │ │ │ ├── tap-ctl-close.c │ │ │ ├── tap-ctl-create.c │ │ │ ├── tap-ctl-destroy.c │ │ │ ├── tap-ctl-detach.c │ │ │ ├── tap-ctl-free.c │ │ │ ├── tap-ctl-ipc.c │ │ │ ├── tap-ctl-list.c │ │ │ ├── tap-ctl-major.c │ │ │ ├── tap-ctl-open.c │ │ │ ├── tap-ctl-pause.c │ │ │ ├── tap-ctl-spawn.c │ │ │ ├── tap-ctl-unpause.c │ │ │ ├── tap-ctl.c │ │ │ └── tap-ctl.h │ │ ├── drivers │ │ │ ├── Makefile │ │ │ ├── aes.c │ │ │ ├── aes.h │ │ │ ├── atomicio.c │ │ │ ├── blk.h │ │ │ ├── blk_linux.c │ │ │ ├── blk_netbsd.c │ │ │ ├── block-aio.c │ │ │ ├── block-cache.c │ │ │ ├── block-log.c │ │ │ ├── block-qcow.c │ │ │ ├── block-ram.c │ │ │ ├── block-remus.c │ │ │ ├── block-vhd.c │ │ │ ├── bswap.h │ │ │ ├── check_gcrypt │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── hashtable_itr.c │ │ │ ├── hashtable_itr.h │ │ │ ├── hashtable_private.h │ │ │ ├── hashtable_utility.c │ │ │ ├── hashtable_utility.h │ │ │ ├── img2qcow.c │ │ │ ├── io-optimize.c │ │ │ ├── io-optimize.h │ │ │ ├── libaio-compat.h │ │ │ ├── lock.c │ │ │ ├── lock.h │ │ │ ├── log.h │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── profile.h │ │ │ ├── qcow-create.c │ │ │ ├── qcow.h │ │ │ ├── qcow2raw.c │ │ │ ├── scheduler.c │ │ │ ├── scheduler.h │ │ │ ├── tapdisk-client.c │ │ │ ├── tapdisk-control.c │ │ │ ├── tapdisk-control.h │ │ │ ├── tapdisk-diff.c │ │ │ ├── tapdisk-disktype.c │ │ │ ├── tapdisk-disktype.h │ │ │ ├── tapdisk-driver.c │ │ │ ├── tapdisk-driver.h │ │ │ ├── tapdisk-filter.c │ │ │ ├── tapdisk-filter.h │ │ │ ├── tapdisk-image.c │ │ │ ├── tapdisk-image.h │ │ │ ├── tapdisk-interface.c │ │ │ ├── tapdisk-interface.h │ │ │ ├── tapdisk-log.c │ │ │ ├── tapdisk-log.h │ │ │ ├── tapdisk-queue.c │ │ │ ├── tapdisk-queue.h │ │ │ ├── tapdisk-ring.c │ │ │ ├── tapdisk-ring.h │ │ │ ├── tapdisk-server.c │ │ │ ├── tapdisk-server.h │ │ │ ├── tapdisk-stream.c │ │ │ ├── tapdisk-utils.c │ │ │ ├── tapdisk-utils.h │ │ │ ├── tapdisk-vbd.c │ │ │ ├── tapdisk-vbd.h │ │ │ ├── tapdisk.h │ │ │ ├── tapdisk2.c │ │ │ ├── td.c │ │ │ └── xmsnap │ │ ├── include │ │ │ ├── Makefile │ │ │ ├── atomicio.h │ │ │ ├── blktap2.h │ │ │ ├── blktaplib.h │ │ │ ├── libvhd-journal.h │ │ │ ├── libvhd.h │ │ │ ├── list.h │ │ │ ├── lvm-util.h │ │ │ ├── relative-path.h │ │ │ ├── tapdisk-message.h │ │ │ ├── vhd-util.h │ │ │ ├── vhd-uuid.h │ │ │ └── vhd.h │ │ ├── lvm │ │ │ ├── Makefile │ │ │ └── lvm-util.c │ │ └── vhd │ │ │ ├── Makefile │ │ │ ├── lib │ │ │ ├── Makefile │ │ │ ├── atomicio.c │ │ │ ├── libvhd-journal.c │ │ │ ├── libvhd.c │ │ │ ├── relative-path.c │ │ │ ├── vhd-util-check.c │ │ │ ├── vhd-util-coalesce.c │ │ │ ├── vhd-util-create.c │ │ │ ├── vhd-util-fill.c │ │ │ ├── vhd-util-modify.c │ │ │ ├── vhd-util-query.c │ │ │ ├── vhd-util-read.c │ │ │ ├── vhd-util-repair.c │ │ │ ├── vhd-util-resize.c │ │ │ ├── vhd-util-revert.c │ │ │ ├── vhd-util-scan.c │ │ │ ├── vhd-util-set-field.c │ │ │ ├── vhd-util-snapshot.c │ │ │ └── vhd-util-uuid.c │ │ │ ├── vhd-update.c │ │ │ └── vhd-util.c │ ├── console │ │ ├── Makefile │ │ ├── client │ │ │ └── main.c │ │ ├── daemon │ │ │ ├── io.c │ │ │ ├── io.h │ │ │ ├── main.c │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── testsuite │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── console-dom0.c │ │ │ ├── console-domU.c │ │ │ └── procpipe.c │ ├── cross-install │ ├── debugger │ │ ├── gdbsx │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── Rules.mk │ │ │ ├── gx │ │ │ │ ├── Makefile │ │ │ │ ├── gx.h │ │ │ │ ├── gx_comm.c │ │ │ │ ├── gx_local.c │ │ │ │ ├── gx_main.c │ │ │ │ ├── gx_utils.c │ │ │ │ └── xg_dummy.c │ │ │ └── xg │ │ │ │ ├── Makefile │ │ │ │ ├── xg_main.c │ │ │ │ └── xg_public.h │ │ ├── kdd │ │ │ ├── Makefile │ │ │ ├── kdbg_fld.h │ │ │ ├── kdd-savefile.c │ │ │ ├── kdd-savefile.h │ │ │ ├── kdd-xen.c │ │ │ ├── kdd.c │ │ │ ├── kdd.h │ │ │ ├── memmem.c │ │ │ ├── pe.h │ │ │ ├── winsyms.c │ │ │ └── winsyms.h │ │ └── xenitp │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cpu-ia64-opc.c │ │ │ ├── dis-asm.h │ │ │ ├── ia64-asmtab.c │ │ │ ├── ia64-asmtab.h │ │ │ ├── ia64-dis.c │ │ │ ├── ia64-gen.c │ │ │ ├── ia64-opc-a.c │ │ │ ├── ia64-opc-b.c │ │ │ ├── ia64-opc-d.c │ │ │ ├── ia64-opc-f.c │ │ │ ├── ia64-opc-i.c │ │ │ ├── ia64-opc-m.c │ │ │ ├── ia64-opc-x.c │ │ │ ├── ia64-opc.c │ │ │ ├── ia64-opc.h │ │ │ ├── ia64.h │ │ │ └── xenitp.c │ ├── examples │ │ ├── Makefile │ │ ├── README │ │ ├── README.incompatibilities │ │ ├── cpupool │ │ ├── vnc │ │ │ ├── Xservers │ │ │ └── Xvnc-xen │ │ ├── xeninfo.pl │ │ ├── xl.conf │ │ ├── xlexample.hvm │ │ └── xlexample.pvlinux │ ├── firmware │ │ ├── GNUmakefile │ │ ├── Makefile │ │ ├── Rules.mk │ │ ├── etherboot │ │ │ ├── Config │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── patches │ │ │ │ ├── boot_prompt_option.patch │ │ │ │ ├── gpxe-git-0edf2405b457 │ │ │ │ ├── gpxe-git-a803ef3dfeac │ │ │ │ └── series │ │ ├── hvmloader │ │ │ ├── 32bitbios_support.c │ │ │ ├── GNUmakefile │ │ │ ├── Makefile │ │ │ ├── Rules.mk │ │ │ ├── acpi │ │ │ │ ├── GNUmakefile │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── acpi2_0.h │ │ │ │ ├── build.c │ │ │ │ ├── dsdt.asl │ │ │ │ ├── mk_dsdt.c │ │ │ │ ├── ssdt_pm.asl │ │ │ │ ├── ssdt_s3.asl │ │ │ │ ├── ssdt_s4.asl │ │ │ │ ├── ssdt_tpm.asl │ │ │ │ └── static_tables.c │ │ │ ├── apic_regs.h │ │ │ ├── cacheattr.c │ │ │ ├── config-seabios.h │ │ │ ├── config.h │ │ │ ├── e820.c │ │ │ ├── e820.h │ │ │ ├── hvmloader.c │ │ │ ├── hypercall.h │ │ │ ├── mkhex │ │ │ ├── modules.c │ │ │ ├── modules.h │ │ │ ├── mp_tables.c │ │ │ ├── option_rom.h │ │ │ ├── pci.c │ │ │ ├── pci_regs.h │ │ │ ├── pir.c │ │ │ ├── pir_types.h │ │ │ ├── rombios.c │ │ │ ├── seabios.c │ │ │ ├── smbios.c │ │ │ ├── smbios_types.h │ │ │ ├── smp.c │ │ │ ├── tests.c │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── xenbus-stub.c │ │ │ └── xenbus.c │ │ ├── rombios │ │ │ ├── 32bit │ │ │ │ ├── 32bitbios.c │ │ │ │ ├── Makefile │ │ │ │ ├── mkhex │ │ │ │ ├── pmm.c │ │ │ │ ├── rombios_compat.h │ │ │ │ ├── tcgbios │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── tcgbios.c │ │ │ │ │ ├── tcgbios.h │ │ │ │ │ ├── tpm_drivers.c │ │ │ │ │ └── tpm_drivers.h │ │ │ │ ├── util.c │ │ │ │ └── util.h │ │ │ ├── 32bitgateway.c │ │ │ ├── 32bitprotos.h │ │ │ ├── Makefile │ │ │ ├── apmbios.S │ │ │ ├── biossums.c │ │ │ ├── config.h │ │ │ ├── e820.h │ │ │ ├── makesym.perl │ │ │ ├── rombios.c │ │ │ ├── rombios.h │ │ │ └── tcgbios.c │ │ └── vgabios │ │ │ ├── BUGS │ │ │ ├── COPYING │ │ │ ├── ChangeLog │ │ │ ├── Makefile │ │ │ ├── Notes │ │ │ ├── README │ │ │ ├── TODO │ │ │ ├── biossums.c │ │ │ ├── clext.c │ │ │ ├── dataseghack │ │ │ ├── vbe.c │ │ │ ├── vbe.h │ │ │ ├── vbe_display_api.txt │ │ │ ├── vbetables-gen.c │ │ │ ├── vgabios.c │ │ │ ├── vgabios.h │ │ │ ├── vgafonts.h │ │ │ └── vgatables.h │ ├── hotplug │ │ ├── Linux │ │ │ ├── Makefile │ │ │ ├── blktap │ │ │ ├── block │ │ │ ├── block-common.sh │ │ │ ├── block-enbd │ │ │ ├── block-nbd │ │ │ ├── external-device-migrate │ │ │ ├── init.d │ │ │ │ ├── sysconfig.xencommons │ │ │ │ ├── sysconfig.xendomains │ │ │ │ ├── xen-watchdog │ │ │ │ ├── xencommons │ │ │ │ ├── xend │ │ │ │ └── xendomains │ │ │ ├── locking.sh │ │ │ ├── logging.sh │ │ │ ├── network-bridge │ │ │ ├── network-nat │ │ │ ├── network-route │ │ │ ├── vif-bridge │ │ │ ├── vif-common.sh │ │ │ ├── vif-nat │ │ │ ├── vif-post.d │ │ │ │ └── 00-vif-local.hook │ │ │ ├── vif-route │ │ │ ├── vif-setup │ │ │ ├── vif2 │ │ │ ├── vscsi │ │ │ ├── vtpm │ │ │ ├── vtpm-common.sh │ │ │ ├── vtpm-delete │ │ │ ├── vtpm-hotplug-common.sh │ │ │ ├── vtpm-impl │ │ │ ├── vtpm-migration.sh │ │ │ ├── xen-backend.agent │ │ │ ├── xen-backend.rules │ │ │ ├── xen-hotplug-cleanup │ │ │ ├── xen-hotplug-common.sh │ │ │ ├── xen-network-common.sh │ │ │ ├── xen-script-common.sh │ │ │ └── xend.rules │ │ ├── Makefile │ │ ├── NetBSD │ │ │ ├── Makefile │ │ │ ├── block │ │ │ ├── rc.d │ │ │ │ ├── xen-watchdog │ │ │ │ ├── xencommons │ │ │ │ ├── xend │ │ │ │ └── xendomains │ │ │ ├── vif-bridge │ │ │ └── vif-ip │ │ └── common │ │ │ └── Makefile │ ├── include │ │ ├── Makefile │ │ ├── xen-foreign │ │ │ ├── Makefile │ │ │ ├── mkchecker.py │ │ │ ├── mkheader.py │ │ │ ├── reference.size │ │ │ └── structs.py │ │ └── xen-sys │ │ │ ├── Linux │ │ │ ├── evtchn.h │ │ │ ├── gntalloc.h │ │ │ ├── gntdev.h │ │ │ └── privcmd.h │ │ │ ├── MiniOS │ │ │ └── privcmd.h │ │ │ ├── NetBSD │ │ │ ├── evtchn.h │ │ │ └── privcmd.h │ │ │ └── SunOS │ │ │ ├── evtchn.h │ │ │ ├── privcmd.h │ │ │ └── xenbus.h │ ├── libaio │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile │ │ ├── TODO │ │ ├── harness │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── attic │ │ │ │ ├── 0.t │ │ │ │ └── 1.t │ │ │ ├── cases │ │ │ │ ├── 10.t │ │ │ │ ├── 11.t │ │ │ │ ├── 12.t │ │ │ │ ├── 13.t │ │ │ │ ├── 14.t │ │ │ │ ├── 2.t │ │ │ │ ├── 3.t │ │ │ │ ├── 4.t │ │ │ │ ├── 5.t │ │ │ │ ├── 6.t │ │ │ │ ├── 7.t │ │ │ │ ├── 8.t │ │ │ │ ├── aio_setup.h │ │ │ │ └── common-7-8.h │ │ │ ├── main.c │ │ │ └── runtests.sh │ │ ├── libaio.spec │ │ ├── man │ │ │ ├── aio.3 │ │ │ ├── aio_cancel.3 │ │ │ ├── aio_cancel64.3 │ │ │ ├── aio_error.3 │ │ │ ├── aio_error64.3 │ │ │ ├── aio_fsync.3 │ │ │ ├── aio_fsync64.3 │ │ │ ├── aio_init.3 │ │ │ ├── aio_read.3 │ │ │ ├── aio_read64.3 │ │ │ ├── aio_return.3 │ │ │ ├── aio_return64.3 │ │ │ ├── aio_suspend.3 │ │ │ ├── aio_suspend64.3 │ │ │ ├── aio_write.3 │ │ │ ├── aio_write64.3 │ │ │ ├── io.3 │ │ │ ├── io_cancel.1 │ │ │ ├── io_cancel.3 │ │ │ ├── io_destroy.1 │ │ │ ├── io_fsync.3 │ │ │ ├── io_getevents.1 │ │ │ ├── io_getevents.3 │ │ │ ├── io_prep_fsync.3 │ │ │ ├── io_prep_pread.3 │ │ │ ├── io_prep_pwrite.3 │ │ │ ├── io_queue_init.3 │ │ │ ├── io_queue_release.3 │ │ │ ├── io_queue_run.3 │ │ │ ├── io_queue_wait.3 │ │ │ ├── io_set_callback.3 │ │ │ ├── io_setup.1 │ │ │ ├── io_submit.1 │ │ │ ├── io_submit.3 │ │ │ ├── lio_listio.3 │ │ │ └── lio_listio64.3 │ │ └── src │ │ │ ├── Makefile │ │ │ ├── compat-0_1.c │ │ │ ├── io_cancel.c │ │ │ ├── io_destroy.c │ │ │ ├── io_getevents.c │ │ │ ├── io_queue_init.c │ │ │ ├── io_queue_release.c │ │ │ ├── io_queue_run.c │ │ │ ├── io_queue_wait.c │ │ │ ├── io_setup.c │ │ │ ├── io_submit.c │ │ │ ├── libaio.h │ │ │ ├── libaio.map │ │ │ ├── raw_syscall.c │ │ │ ├── syscall-alpha.h │ │ │ ├── syscall-i386.h │ │ │ ├── syscall-ia64.h │ │ │ ├── syscall-ppc.h │ │ │ ├── syscall-s390.h │ │ │ ├── syscall-x86_64.h │ │ │ ├── syscall.h │ │ │ └── vsys_def.h │ ├── libfsimage │ │ ├── Makefile │ │ ├── Rules.mk │ │ ├── check-libext2fs │ │ ├── common │ │ │ ├── Makefile │ │ │ ├── fsimage.c │ │ │ ├── fsimage.h │ │ │ ├── fsimage_grub.c │ │ │ ├── fsimage_grub.h │ │ │ ├── fsimage_plugin.c │ │ │ ├── fsimage_plugin.h │ │ │ ├── fsimage_priv.h │ │ │ ├── mapfile-GNU │ │ │ └── mapfile-SunOS │ │ ├── ext2fs-lib │ │ │ ├── Makefile │ │ │ └── ext2fs-lib.c │ │ ├── ext2fs │ │ │ ├── Makefile │ │ │ └── fsys_ext2fs.c │ │ ├── fat │ │ │ ├── Makefile │ │ │ ├── fat.h │ │ │ └── fsys_fat.c │ │ ├── iso9660 │ │ │ ├── Makefile │ │ │ ├── fsys_iso9660.c │ │ │ └── iso9660.h │ │ ├── reiserfs │ │ │ ├── Makefile │ │ │ └── fsys_reiserfs.c │ │ ├── ufs │ │ │ ├── Makefile │ │ │ ├── fsys_ufs.c │ │ │ └── ufs.h │ │ ├── xfs │ │ │ ├── Makefile │ │ │ ├── fsys_xfs.c │ │ │ └── xfs.h │ │ └── zfs │ │ │ ├── Makefile │ │ │ ├── filesys.h │ │ │ ├── fsi_zfs.c │ │ │ ├── fsi_zfs.h │ │ │ ├── fsys_zfs.c │ │ │ ├── fsys_zfs.h │ │ │ ├── mb_info.h │ │ │ ├── shared.h │ │ │ ├── zfs-include │ │ │ ├── dmu.h │ │ │ ├── dmu_objset.h │ │ │ ├── dnode.h │ │ │ ├── dsl_dataset.h │ │ │ ├── dsl_dir.h │ │ │ ├── sa_impl.h │ │ │ ├── spa.h │ │ │ ├── uberblock_impl.h │ │ │ ├── vdev_impl.h │ │ │ ├── zap_impl.h │ │ │ ├── zap_leaf.h │ │ │ ├── zfs.h │ │ │ ├── zfs_acl.h │ │ │ ├── zfs_znode.h │ │ │ ├── zil.h │ │ │ ├── zio.h │ │ │ └── zio_checksum.h │ │ │ ├── zfs_fletcher.c │ │ │ ├── zfs_lzjb.c │ │ │ └── zfs_sha256.c │ ├── libvchan │ │ ├── Makefile │ │ ├── init.c │ │ ├── io.c │ │ ├── libxenvchan.h │ │ ├── node-select.c │ │ └── node.c │ ├── libxc │ │ ├── COPYING │ │ ├── Makefile │ │ ├── Makefile.libxc │ │ ├── xc_arinc653.c │ │ ├── xc_attovm.c │ │ ├── xc_attovm.h │ │ ├── xc_attovm_private.h │ │ ├── xc_bitops.h │ │ ├── xc_core.c │ │ ├── xc_core.h │ │ ├── xc_core_ia64.c │ │ ├── xc_core_ia64.h │ │ ├── xc_core_x86.c │ │ ├── xc_core_x86.h │ │ ├── xc_cpu_hotplug.c │ │ ├── xc_cpufeature.h │ │ ├── xc_cpuid_x86.c │ │ ├── xc_cpupool.c │ │ ├── xc_csched.c │ │ ├── xc_csched2.c │ │ ├── xc_dom.h │ │ ├── xc_dom_binloader.c │ │ ├── xc_dom_boot.c │ │ ├── xc_dom_bzimageloader.c │ │ ├── xc_dom_compat_linux.c │ │ ├── xc_dom_core.c │ │ ├── xc_dom_elfloader.c │ │ ├── xc_dom_ia64.c │ │ ├── xc_dom_x86.c │ │ ├── xc_domain.c │ │ ├── xc_domain_restore.c │ │ ├── xc_domain_save.c │ │ ├── xc_efi.h │ │ ├── xc_elf.h │ │ ├── xc_evtchn.c │ │ ├── xc_flask.c │ │ ├── xc_foreign_memory.c │ │ ├── xc_gnttab.c │ │ ├── xc_hcall_buf.c │ │ ├── xc_hvm_build.c │ │ ├── xc_linux.c │ │ ├── xc_linux_osdep.c │ │ ├── xc_mem_access.c │ │ ├── xc_mem_event.c │ │ ├── xc_mem_paging.c │ │ ├── xc_memshr.c │ │ ├── xc_minios.c │ │ ├── xc_misc.c │ │ ├── xc_netbsd.c │ │ ├── xc_offline_page.c │ │ ├── xc_pagetab.c │ │ ├── xc_physdev.c │ │ ├── xc_pm.c │ │ ├── xc_private.c │ │ ├── xc_private.h │ │ ├── xc_resume.c │ │ ├── xc_sedf.c │ │ ├── xc_solaris.c │ │ ├── xc_suspend.c │ │ ├── xc_tbuf.c │ │ ├── xc_tmem.c │ │ ├── xc_uxen.c │ │ ├── xenctrl.h │ │ ├── xenctrl_osdep_ENOSYS.c │ │ ├── xenctrlosdep.h │ │ ├── xenguest.h │ │ ├── xentoollog.h │ │ ├── xg_private.c │ │ ├── xg_private.h │ │ ├── xg_save_restore.h │ │ ├── xtl_core.c │ │ └── xtl_logger_stdio.c │ ├── libxen │ │ ├── COPYING │ │ ├── Makefile │ │ ├── Makefile.dist │ │ ├── README │ │ ├── include │ │ │ ├── xen │ │ │ │ └── api │ │ │ │ │ ├── xen_all.h │ │ │ │ │ ├── xen_common.h │ │ │ │ │ ├── xen_console.h │ │ │ │ │ ├── xen_console_decl.h │ │ │ │ │ ├── xen_console_protocol.h │ │ │ │ │ ├── xen_cpu_pool.h │ │ │ │ │ ├── xen_cpu_pool_decl.h │ │ │ │ │ ├── xen_crashdump.h │ │ │ │ │ ├── xen_crashdump_decl.h │ │ │ │ │ ├── xen_event.h │ │ │ │ │ ├── xen_event_decl.h │ │ │ │ │ ├── xen_event_operation.h │ │ │ │ │ ├── xen_host.h │ │ │ │ │ ├── xen_host_cpu.h │ │ │ │ │ ├── xen_host_cpu_decl.h │ │ │ │ │ ├── xen_host_decl.h │ │ │ │ │ ├── xen_host_metrics.h │ │ │ │ │ ├── xen_host_metrics_decl.h │ │ │ │ │ ├── xen_int_float_map.h │ │ │ │ │ ├── xen_int_int_map.h │ │ │ │ │ ├── xen_int_string_set_map.h │ │ │ │ │ ├── xen_network.h │ │ │ │ │ ├── xen_network_decl.h │ │ │ │ │ ├── xen_on_crash_behaviour.h │ │ │ │ │ ├── xen_on_normal_exit.h │ │ │ │ │ ├── xen_pbd.h │ │ │ │ │ ├── xen_pbd_decl.h │ │ │ │ │ ├── xen_pif.h │ │ │ │ │ ├── xen_pif_decl.h │ │ │ │ │ ├── xen_pif_metrics.h │ │ │ │ │ ├── xen_pif_metrics_decl.h │ │ │ │ │ ├── xen_sr.h │ │ │ │ │ ├── xen_sr_decl.h │ │ │ │ │ ├── xen_string_set.h │ │ │ │ │ ├── xen_string_string_map.h │ │ │ │ │ ├── xen_user.h │ │ │ │ │ ├── xen_user_decl.h │ │ │ │ │ ├── xen_vbd.h │ │ │ │ │ ├── xen_vbd_decl.h │ │ │ │ │ ├── xen_vbd_metrics.h │ │ │ │ │ ├── xen_vbd_metrics_decl.h │ │ │ │ │ ├── xen_vbd_mode.h │ │ │ │ │ ├── xen_vbd_type.h │ │ │ │ │ ├── xen_vdi.h │ │ │ │ │ ├── xen_vdi_decl.h │ │ │ │ │ ├── xen_vdi_type.h │ │ │ │ │ ├── xen_vif.h │ │ │ │ │ ├── xen_vif_decl.h │ │ │ │ │ ├── xen_vif_metrics.h │ │ │ │ │ ├── xen_vif_metrics_decl.h │ │ │ │ │ ├── xen_vm.h │ │ │ │ │ ├── xen_vm_decl.h │ │ │ │ │ ├── xen_vm_guest_metrics.h │ │ │ │ │ ├── xen_vm_guest_metrics_decl.h │ │ │ │ │ ├── xen_vm_metrics.h │ │ │ │ │ ├── xen_vm_metrics_decl.h │ │ │ │ │ ├── xen_vm_power_state.h │ │ │ │ │ ├── xen_vtpm.h │ │ │ │ │ ├── xen_vtpm_decl.h │ │ │ │ │ ├── xen_xspolicy.h │ │ │ │ │ └── xen_xspolicy_decl.h │ │ │ ├── xen_console_protocol_internal.h │ │ │ ├── xen_event_operation_internal.h │ │ │ ├── xen_internal.h │ │ │ ├── xen_on_crash_behaviour_internal.h │ │ │ ├── xen_on_normal_exit_internal.h │ │ │ ├── xen_vbd_mode_internal.h │ │ │ ├── xen_vbd_type_internal.h │ │ │ ├── xen_vdi_type_internal.h │ │ │ └── xen_vm_power_state_internal.h │ │ ├── src │ │ │ ├── xen_common.c │ │ │ ├── xen_console.c │ │ │ ├── xen_console_protocol.c │ │ │ ├── xen_cpu_pool.c │ │ │ ├── xen_crashdump.c │ │ │ ├── xen_event.c │ │ │ ├── xen_event_operation.c │ │ │ ├── xen_host.c │ │ │ ├── xen_host_cpu.c │ │ │ ├── xen_host_metrics.c │ │ │ ├── xen_int_float_map.c │ │ │ ├── xen_int_int_map.c │ │ │ ├── xen_int_string_set_map.c │ │ │ ├── xen_network.c │ │ │ ├── xen_on_crash_behaviour.c │ │ │ ├── xen_on_normal_exit.c │ │ │ ├── xen_pbd.c │ │ │ ├── xen_pif.c │ │ │ ├── xen_pif_metrics.c │ │ │ ├── xen_sr.c │ │ │ ├── xen_string_set.c │ │ │ ├── xen_string_set.h │ │ │ ├── xen_string_string_map.c │ │ │ ├── xen_user.c │ │ │ ├── xen_vbd.c │ │ │ ├── xen_vbd_metrics.c │ │ │ ├── xen_vbd_mode.c │ │ │ ├── xen_vbd_type.c │ │ │ ├── xen_vdi.c │ │ │ ├── xen_vdi_type.c │ │ │ ├── xen_vif.c │ │ │ ├── xen_vif_metrics.c │ │ │ ├── xen_vm.c │ │ │ ├── xen_vm_guest_metrics.c │ │ │ ├── xen_vm_metrics.c │ │ │ ├── xen_vm_power_state.c │ │ │ ├── xen_vtpm.c │ │ │ └── xen_xspolicy.c │ │ └── test │ │ │ ├── test_bindings.c │ │ │ └── test_event_handling.c │ ├── libxl │ │ ├── CODING_STYLE │ │ ├── Makefile │ │ ├── bash-completion │ │ ├── check-xl-disk-parse │ │ ├── flexarray.c │ │ ├── flexarray.h │ │ ├── gentest.py │ │ ├── gentypes.py │ │ ├── idl.txt │ │ ├── libxl.c │ │ ├── libxl.h │ │ ├── libxl_blktap2.c │ │ ├── libxl_bootloader.c │ │ ├── libxl_cpuid.c │ │ ├── libxl_create.c │ │ ├── libxl_device.c │ │ ├── libxl_dm.c │ │ ├── libxl_dom.c │ │ ├── libxl_exec.c │ │ ├── libxl_flask.c │ │ ├── libxl_internal.c │ │ ├── libxl_internal.h │ │ ├── libxl_json.c │ │ ├── libxl_json.h │ │ ├── libxl_memory.txt │ │ ├── libxl_noblktap2.c │ │ ├── libxl_nocpuid.c │ │ ├── libxl_osdeps.h │ │ ├── libxl_paths.c │ │ ├── libxl_pci.c │ │ ├── libxl_qmp.c │ │ ├── libxl_types.idl │ │ ├── libxl_types_internal.idl │ │ ├── libxl_utils.c │ │ ├── libxl_utils.h │ │ ├── libxl_uuid.c │ │ ├── libxl_uuid.h │ │ ├── libxl_xshelp.c │ │ ├── libxltypes.py │ │ ├── libxlu_cfg.c │ │ ├── libxlu_cfg_i.h │ │ ├── libxlu_cfg_l.c │ │ ├── libxlu_cfg_l.h │ │ ├── libxlu_cfg_l.l │ │ ├── libxlu_cfg_y.c │ │ ├── libxlu_cfg_y.h │ │ ├── libxlu_cfg_y.y │ │ ├── libxlu_disk.c │ │ ├── libxlu_disk_i.h │ │ ├── libxlu_disk_l.c │ │ ├── libxlu_disk_l.h │ │ ├── libxlu_disk_l.l │ │ ├── libxlu_internal.h │ │ ├── libxlutil.h │ │ ├── osdeps.c │ │ ├── xl.c │ │ ├── xl.h │ │ ├── xl_cmdimpl.c │ │ └── xl_cmdtable.c │ ├── memshr │ │ ├── Makefile │ │ ├── bidir-daemon.c │ │ ├── bidir-daemon.h │ │ ├── bidir-hash.c │ │ ├── bidir-hash.h │ │ ├── bidir-namedefs.h │ │ ├── interface.c │ │ ├── memshr-priv.h │ │ ├── memshr.h │ │ ├── shm.c │ │ └── shm.h │ ├── misc │ │ ├── Makefile │ │ ├── gtracestat.c │ │ ├── gtraceview.c │ │ ├── lomount │ │ │ ├── Makefile │ │ │ └── lomount.c │ │ ├── miniterm │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── miniterm.c │ │ ├── mkdeb │ │ ├── nsplitd │ │ │ ├── Makefile │ │ │ └── nsplitd.c │ │ ├── sbdf2devicepath │ │ ├── sxp-pretty │ │ ├── xen-bugtool │ │ ├── xen-detect.c │ │ ├── xen-hptool.c │ │ ├── xen-hvmcrash.c │ │ ├── xen-hvmctx.c │ │ ├── xen-python-path │ │ ├── xen-ringwatch │ │ ├── xen-tmem-list-parse.c │ │ ├── xencons │ │ ├── xend │ │ ├── xenlockprof.c │ │ ├── xenperf.c │ │ ├── xenpm.c │ │ ├── xensymoops │ │ ├── xenwatchdogd.c │ │ ├── xm │ │ └── xsview │ ├── ocaml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.rules │ │ ├── common.make │ │ ├── libs │ │ │ ├── Makefile │ │ │ ├── eventchn │ │ │ │ ├── META.in │ │ │ │ ├── Makefile │ │ │ │ ├── xeneventchn.ml │ │ │ │ ├── xeneventchn.mli │ │ │ │ └── xeneventchn_stubs.c │ │ │ ├── mmap │ │ │ │ ├── META.in │ │ │ │ ├── Makefile │ │ │ │ ├── mmap_stubs.h │ │ │ │ ├── xenmmap.ml │ │ │ │ ├── xenmmap.mli │ │ │ │ └── xenmmap_stubs.c │ │ │ ├── xb │ │ │ │ ├── META.in │ │ │ │ ├── Makefile │ │ │ │ ├── op.ml │ │ │ │ ├── packet.ml │ │ │ │ ├── partial.ml │ │ │ │ ├── xb.ml │ │ │ │ ├── xb.mli │ │ │ │ ├── xenbus_stubs.c │ │ │ │ ├── xs_ring.ml │ │ │ │ └── xs_ring_stubs.c │ │ │ ├── xc │ │ │ │ ├── META.in │ │ │ │ ├── Makefile │ │ │ │ ├── xenctrl.ml │ │ │ │ ├── xenctrl.mli │ │ │ │ └── xenctrl_stubs.c │ │ │ ├── xl │ │ │ │ ├── META.in │ │ │ │ ├── Makefile │ │ │ │ ├── genwrap.py │ │ │ │ ├── xenlight.ml.in │ │ │ │ ├── xenlight.mli.in │ │ │ │ └── xenlight_stubs.c │ │ │ └── xs │ │ │ │ ├── META.in │ │ │ │ ├── Makefile │ │ │ │ ├── queueop.ml │ │ │ │ ├── xs.ml │ │ │ │ ├── xs.mli │ │ │ │ ├── xsraw.ml │ │ │ │ ├── xsraw.mli │ │ │ │ ├── xst.ml │ │ │ │ └── xst.mli │ │ └── xenstored │ │ │ ├── Makefile │ │ │ ├── config.ml │ │ │ ├── connection.ml │ │ │ ├── connections.ml │ │ │ ├── define.ml │ │ │ ├── disk.ml │ │ │ ├── domain.ml │ │ │ ├── domains.ml │ │ │ ├── event.ml │ │ │ ├── logging.ml │ │ │ ├── parse_arg.ml │ │ │ ├── perms.ml │ │ │ ├── process.ml │ │ │ ├── quota.ml │ │ │ ├── stdext.ml │ │ │ ├── store.ml │ │ │ ├── symbol.ml │ │ │ ├── symbol.mli │ │ │ ├── transaction.ml │ │ │ ├── trie.ml │ │ │ ├── trie.mli │ │ │ ├── utils.ml │ │ │ ├── xenstored.conf │ │ │ └── xenstored.ml │ ├── pygrub │ │ ├── Makefile │ │ ├── README │ │ ├── examples │ │ │ └── fedora-16-with-xen.grub2 │ │ ├── setup.py │ │ └── src │ │ │ ├── ExtLinuxConf.py │ │ │ ├── GrubConf.py │ │ │ ├── LiloConf.py │ │ │ ├── __init__.py │ │ │ ├── fsimage │ │ │ └── fsimage.c │ │ │ └── pygrub │ ├── remus │ │ ├── Makefile │ │ ├── README │ │ └── remus │ ├── sv │ │ ├── Makefile │ │ ├── images │ │ │ ├── destroy.png │ │ │ ├── finish.png │ │ │ ├── next.png │ │ │ ├── pause.png │ │ │ ├── previous.png │ │ │ ├── reboot.png │ │ │ ├── shutdown.png │ │ │ ├── small-destroy.png │ │ │ ├── small-pause.png │ │ │ ├── small-unpause.png │ │ │ ├── unpause.png │ │ │ └── xen.png │ │ ├── inc │ │ │ ├── script.js │ │ │ └── style.css │ │ └── index.psp │ ├── tests │ │ ├── mce-test │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── cases │ │ │ │ ├── srao_llc │ │ │ │ │ ├── dom0 │ │ │ │ │ │ └── cases.sh │ │ │ │ │ ├── guest │ │ │ │ │ │ └── cases.sh │ │ │ │ │ └── xen │ │ │ │ │ │ └── cases.sh │ │ │ │ ├── srao_mem │ │ │ │ │ ├── dom0 │ │ │ │ │ │ └── cases.sh │ │ │ │ │ ├── guest │ │ │ │ │ │ └── cases.sh │ │ │ │ │ └── xen │ │ │ │ │ │ └── cases.sh │ │ │ │ └── ucna_llc │ │ │ │ │ ├── dom0 │ │ │ │ │ └── cases.sh │ │ │ │ │ ├── guest │ │ │ │ │ └── cases.sh │ │ │ │ │ └── xen │ │ │ │ │ └── cases.sh │ │ │ ├── config │ │ │ │ └── setup.conf │ │ │ ├── lib │ │ │ │ └── xen-mceinj-tool.sh │ │ │ └── tools │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── xen-mceinj.c │ │ ├── regression │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── scripts │ │ │ │ ├── build_python.sh │ │ │ │ ├── check_python_syntax.sh │ │ │ │ └── download_python.sh │ │ ├── run_tests.sh │ │ ├── utests │ │ │ ├── run_all_tests.py │ │ │ ├── ut_util │ │ │ │ └── ut_fileuri.py │ │ │ └── ut_xend │ │ │ │ ├── ut_XendConfig.py │ │ │ │ └── ut_image.py │ │ ├── x86_emulator │ │ │ ├── Makefile │ │ │ ├── blowfish.c │ │ │ ├── blowfish.mk │ │ │ ├── test_x86_emulator.c │ │ │ └── x86_emulate.c │ │ └── xen-access │ │ │ ├── Makefile │ │ │ └── xen-access.c │ ├── vtpm │ │ ├── Makefile │ │ ├── README │ │ ├── Rules.mk │ │ ├── tpm_emulator.patch │ │ ├── vtpm-0.5.1.patch │ │ └── vtpm.patch │ ├── vtpm_manager │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── Rules.mk │ │ ├── crypto │ │ │ ├── Makefile │ │ │ ├── crypto.c │ │ │ ├── crypto.h │ │ │ ├── hash.c │ │ │ ├── rsa.c │ │ │ ├── sym_crypto.c │ │ │ └── sym_crypto.h │ │ ├── manager │ │ │ ├── Makefile │ │ │ ├── dmictl.c │ │ │ ├── migration.c │ │ │ ├── securestorage.c │ │ │ ├── tpmpassthrough.c │ │ │ ├── vtpm_ipc.c │ │ │ ├── vtpm_ipc.h │ │ │ ├── vtpm_lock.c │ │ │ ├── vtpm_lock.h │ │ │ ├── vtpm_manager.c │ │ │ ├── vtpm_manager.h │ │ │ ├── vtpm_manager_handler.c │ │ │ ├── vtpmd.c │ │ │ ├── vtpmpriv.h │ │ │ ├── vtsp.c │ │ │ └── vtsp.h │ │ ├── migration │ │ │ ├── Makefile │ │ │ ├── vtpm_manager_if.c │ │ │ ├── vtpm_migrator.h │ │ │ ├── vtpm_migrator_if.c │ │ │ ├── vtpm_migratorc.c │ │ │ ├── vtpm_migratord.c │ │ │ └── vtpm_migratord_handler.c │ │ ├── tcs │ │ │ ├── Makefile │ │ │ ├── contextmgr.c │ │ │ ├── contextmgr.h │ │ │ ├── tcs.c │ │ │ ├── tcs.h │ │ │ ├── tpmddl.h │ │ │ └── transmit.c │ │ └── util │ │ │ ├── Makefile │ │ │ ├── bsg.c │ │ │ ├── bsg.h │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── hashtable.c │ │ │ ├── hashtable.h │ │ │ ├── hashtable_itr.c │ │ │ ├── hashtable_itr.h │ │ │ ├── hashtable_private.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ └── tcg.h │ ├── xcutils │ │ ├── Makefile │ │ ├── lsevtchn.c │ │ ├── readnotes.c │ │ ├── xc_restore.c │ │ └── xc_save.c │ ├── xenbackendd │ │ ├── Makefile │ │ └── xenbackendd.c │ ├── xenballoon │ │ ├── xenballoon-monitor │ │ ├── xenballoon.conf │ │ ├── xenballoond │ │ ├── xenballoond.README │ │ └── xenballoond.init │ ├── xenmon │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── setmask.c │ │ ├── xenbaked.c │ │ ├── xenbaked.h │ │ └── xenmon.py │ ├── xenpaging │ │ ├── Makefile │ │ ├── file_ops.c │ │ ├── file_ops.h │ │ ├── pagein.c │ │ ├── policy.h │ │ ├── policy_default.c │ │ ├── xenpaging.c │ │ └── xenpaging.h │ ├── xenpmd │ │ ├── Makefile │ │ └── xenpmd.c │ ├── xenstat │ │ ├── Makefile │ │ ├── libxenstat │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── bindings │ │ │ │ └── swig │ │ │ │ │ ├── perl │ │ │ │ │ └── .empty │ │ │ │ │ ├── python │ │ │ │ │ └── .empty │ │ │ │ │ └── xenstat.i │ │ │ └── src │ │ │ │ ├── xenstat.c │ │ │ │ ├── xenstat.h │ │ │ │ ├── xenstat_linux.c │ │ │ │ ├── xenstat_netbsd.c │ │ │ │ ├── xenstat_priv.h │ │ │ │ └── xenstat_solaris.c │ │ └── xentop │ │ │ ├── Makefile │ │ │ ├── TODO │ │ │ ├── xentop.1 │ │ │ └── xentop.c │ ├── xenstore │ │ ├── .gdbinit │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README │ │ ├── TODO │ │ ├── hashtable.c │ │ ├── hashtable.h │ │ ├── hashtable_private.h │ │ ├── list.h │ │ ├── talloc.c │ │ ├── talloc.h │ │ ├── talloc_guide.txt │ │ ├── tdb.c │ │ ├── tdb.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── xenstore_client.c │ │ ├── xenstore_control.c │ │ ├── xenstored_core.c │ │ ├── xenstored_core.h │ │ ├── xenstored_domain.c │ │ ├── xenstored_domain.h │ │ ├── xenstored_linux.c │ │ ├── xenstored_netbsd.c │ │ ├── xenstored_probes.d │ │ ├── xenstored_solaris.c │ │ ├── xenstored_transaction.c │ │ ├── xenstored_transaction.h │ │ ├── xenstored_watch.c │ │ ├── xenstored_watch.h │ │ ├── xs.c │ │ ├── xs.h │ │ ├── xs_lib.c │ │ ├── xs_lib.h │ │ └── xs_tdb_dump.c │ └── xentrace │ │ ├── Makefile │ │ ├── formats │ │ ├── setsize.c │ │ ├── xenctx.c │ │ ├── xentrace.8 │ │ ├── xentrace.c │ │ ├── xentrace_format │ │ └── xentrace_format.1 └── yajl │ ├── Makefile.yajl │ └── yajl │ ├── .gitignore │ ├── BUILDING │ ├── BUILDING.win32 │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── README │ ├── TODO │ ├── YAJLDoc.cmake │ ├── configure │ ├── example │ ├── CMakeLists.txt │ ├── README.md │ ├── parse_config.c │ └── sample.config │ ├── perf │ ├── CMakeLists.txt │ ├── documents.c │ ├── documents.h │ └── perftest.c │ ├── reformatter │ ├── CMakeLists.txt │ └── json_reformat.c │ ├── src │ ├── CMakeLists.txt │ ├── YAJL.dxy │ ├── api │ │ ├── yajl_common.h │ │ ├── yajl_gen.h │ │ ├── yajl_parse.h │ │ ├── yajl_tree.h │ │ └── yajl_version.h.cmake │ ├── yajl │ ├── yajl.c │ ├── yajl.pc.cmake │ ├── yajl_alloc.c │ ├── yajl_alloc.h │ ├── yajl_buf.c │ ├── yajl_buf.h │ ├── yajl_bytestack.h │ ├── yajl_encode.c │ ├── yajl_encode.h │ ├── yajl_gen.c │ ├── yajl_lex.c │ ├── yajl_lex.h │ ├── yajl_parser.c │ ├── yajl_parser.h │ ├── yajl_tree.c │ └── yajl_version.c │ ├── test │ ├── CMakeLists.txt │ ├── cases │ │ ├── ac_difficult_json_c_test_case_with_comments.json │ │ ├── ac_difficult_json_c_test_case_with_comments.json.gold │ │ ├── ac_simple_with_comments.json │ │ ├── ac_simple_with_comments.json.gold │ │ ├── ag_false_then_garbage.json │ │ ├── ag_false_then_garbage.json.gold │ │ ├── ag_null_then_garbage.json │ │ ├── ag_null_then_garbage.json.gold │ │ ├── ag_true_then_garbage.json │ │ ├── ag_true_then_garbage.json.gold │ │ ├── am_eof.json │ │ ├── am_eof.json.gold │ │ ├── am_integers.json │ │ ├── am_integers.json.gold │ │ ├── am_multiple.json │ │ ├── am_multiple.json.gold │ │ ├── am_stuff.json │ │ ├── am_stuff.json.gold │ │ ├── ap_array_open.json │ │ ├── ap_array_open.json.gold │ │ ├── ap_eof_str.json │ │ ├── ap_eof_str.json.gold │ │ ├── ap_map_open.json │ │ ├── ap_map_open.json.gold │ │ ├── ap_partial_ok.json │ │ ├── ap_partial_ok.json.gold │ │ ├── array.json │ │ ├── array.json.gold │ │ ├── array_close.json │ │ ├── array_close.json.gold │ │ ├── bignums.json │ │ ├── bignums.json.gold │ │ ├── bogus_char.json │ │ ├── bogus_char.json.gold │ │ ├── codepoints_from_unicode_org.json │ │ ├── codepoints_from_unicode_org.json.gold │ │ ├── deep_arrays.json │ │ ├── deep_arrays.json.gold │ │ ├── difficult_json_c_test_case.json │ │ ├── difficult_json_c_test_case.json.gold │ │ ├── doubles.json │ │ ├── doubles.json.gold │ │ ├── doubles_in_array.json │ │ ├── doubles_in_array.json.gold │ │ ├── empty_array.json │ │ ├── empty_array.json.gold │ │ ├── empty_string.json │ │ ├── empty_string.json.gold │ │ ├── escaped_bulgarian.json │ │ ├── escaped_bulgarian.json.gold │ │ ├── escaped_foobar.json │ │ ├── escaped_foobar.json.gold │ │ ├── false.json │ │ ├── false.json.gold │ │ ├── fg_false_then_garbage.json │ │ ├── fg_false_then_garbage.json.gold │ │ ├── fg_issue_7.json │ │ ├── fg_issue_7.json.gold │ │ ├── fg_null_then_garbage.json │ │ ├── fg_null_then_garbage.json.gold │ │ ├── fg_true_then_garbage.json │ │ ├── fg_true_then_garbage.json.gold │ │ ├── four_byte_utf8.json │ │ ├── four_byte_utf8.json.gold │ │ ├── high_overflow.json │ │ ├── high_overflow.json.gold │ │ ├── integers.json │ │ ├── integers.json.gold │ │ ├── invalid_utf8.json │ │ ├── invalid_utf8.json.gold │ │ ├── isolated_surrogate_marker.json │ │ ├── isolated_surrogate_marker.json.gold │ │ ├── leading_zero_in_number.json │ │ ├── leading_zero_in_number.json.gold │ │ ├── lonely_minus_sign.json │ │ ├── lonely_minus_sign.json.gold │ │ ├── lonely_number.json │ │ ├── lonely_number.json.gold │ │ ├── low_overflow.json │ │ ├── low_overflow.json.gold │ │ ├── map_close.json │ │ ├── map_close.json.gold │ │ ├── missing_integer_after_decimal_point.json │ │ ├── missing_integer_after_decimal_point.json.gold │ │ ├── missing_integer_after_exponent.json │ │ ├── missing_integer_after_exponent.json.gold │ │ ├── multiple.json │ │ ├── multiple.json.gold │ │ ├── non_utf8_char_in_string.json │ │ ├── non_utf8_char_in_string.json.gold │ │ ├── np_partial_bad.json │ │ ├── np_partial_bad.json.gold │ │ ├── null.json │ │ ├── null.json.gold │ │ ├── nulls_and_bools.json │ │ ├── nulls_and_bools.json.gold │ │ ├── simple.json │ │ ├── simple.json.gold │ │ ├── simple_with_comments.json │ │ ├── simple_with_comments.json.gold │ │ ├── string_invalid_escape.json │ │ ├── string_invalid_escape.json.gold │ │ ├── string_invalid_hex_char.json │ │ ├── string_invalid_hex_char.json.gold │ │ ├── string_with_escapes.json │ │ ├── string_with_escapes.json.gold │ │ ├── string_with_invalid_newline.json │ │ ├── string_with_invalid_newline.json.gold │ │ ├── three_byte_utf8.json │ │ ├── three_byte_utf8.json.gold │ │ ├── true.json │ │ ├── true.json.gold │ │ ├── unescaped_bulgarian.json │ │ ├── unescaped_bulgarian.json.gold │ │ ├── zerobyte.json │ │ └── zerobyte.json.gold │ ├── run_tests.sh │ └── yajl_test.c │ └── verify │ ├── CMakeLists.txt │ └── json_verify.c ├── dm ├── BrEvent.h ├── Makefile ├── Makefile.dm ├── Makefile.libimg ├── aio.c ├── aio.h ├── async-op.c ├── async-op.h ├── atto-agent.c ├── atto-agent.h ├── atto-vm.c ├── atto-vm.h ├── base64.c ├── base64.h ├── bh.c ├── bh.h ├── bitops.h ├── block-def.h ├── block-int.h ├── block-raw-posix.c ├── block-raw-win32.c ├── block-swap.c ├── block-swap │ ├── dubtree.c │ ├── dubtree.h │ ├── dubtree_constants.h │ ├── dubtree_io.h │ ├── dubtree_sys.h │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtable_noise.h │ ├── lrucache.h │ ├── simpletree.c │ ├── simpletree.h │ └── swapfmt.h ├── block-vhd.c ├── block.c ├── block.h ├── cdrom.h ├── char.c ├── char.h ├── clipboard-protocol.c ├── clipboard-protocol.h ├── clipboard.c ├── clipboard.h ├── clock.c ├── clock.h ├── compiler.h ├── conffile.c ├── conffile.h ├── config.h ├── console-dr.c ├── console-dr.h ├── console-osx.m ├── console-remote.c ├── console-vnc.c ├── console-win32.c ├── console.c ├── console.h ├── control.c ├── control.h ├── cpu.h ├── cuckoo-uxen.c ├── cuckoo-uxen.h ├── cuckoo.c ├── cuckoo.h ├── debug.c ├── debug.h ├── default.h ├── defensive.h ├── dev.c ├── dev.h ├── dict-rpc.c ├── dict-rpc.h ├── dict.c ├── dict.h ├── dm.c ├── dm.h ├── dma.h ├── dmpdev-rpc.c ├── dmpdev.h ├── edid.c ├── edid.h ├── file.h ├── filebuf.c ├── filebuf.h ├── firmware.c ├── firmware.h ├── guest-agent-proto.h ├── guest-agent.c ├── guest-agent.h ├── hbmon.c ├── hbmon.h ├── hw.h ├── hw │ ├── applesmc.c │ ├── dmpdev-prot.h │ ├── dmpdev.c │ ├── pci-ram.c │ ├── pci-ram.h │ ├── pci.h │ ├── piix4acpi.c │ ├── pv_vblank.c │ ├── pv_vblank.h │ ├── resampler.c │ ├── resampler.h │ ├── uxaud_hw.h │ ├── uxdisp_hw.h │ ├── uxen_audio.c │ ├── uxen_audio.h │ ├── uxen_audio_ctrl.h │ ├── uxen_debug.c │ ├── uxen_display.c │ ├── uxen_display.h │ ├── uxen_fb.c │ ├── uxen_fb.h │ ├── uxen_hid.c │ ├── uxen_hid.h │ ├── uxen_net.c │ ├── uxen_null.c │ ├── uxen_platform.c │ ├── uxen_platform.h │ ├── uxen_scsi.c │ ├── uxen_scsi.h │ ├── uxen_scsi_osx.c │ ├── uxen_scsi_osx.h │ ├── uxen_stor.c │ ├── uxen_v4v.h │ ├── uxen_v4v_osx.c │ ├── uxen_v4v_osx.h │ ├── uxen_v4v_win32.c │ ├── uxen_v4v_win32.h │ ├── vga.c │ ├── vga.h │ ├── vga_template.h │ ├── wasapi.c │ ├── wasapi.h │ ├── xenpc.c │ ├── xenpc.h │ ├── xenrtc.c │ └── xenrtc.h ├── input.c ├── input.h ├── introspection-win7.c ├── introspection.c ├── introspection.h ├── introspection_info.h ├── ioh-osx.c ├── ioh-win32.c ├── ioh.c ├── ioh.h ├── iomem.c ├── iomem.h ├── ioport.c ├── ioport.h ├── ioreq.c ├── ioreq.h ├── iovec.c ├── iovec.h ├── ipc.c ├── ipc.h ├── irq.h ├── lib.c ├── lib.h ├── libnickel.h ├── malloc-wrappers.c ├── mapcache-lru.c ├── mapcache.h ├── memory-virt.c ├── memory-virt.h ├── memory.c ├── memory.h ├── monitor-cmds.h ├── monitor.c ├── monitor.h ├── mr.c ├── mr.h ├── net.h ├── nickel │ ├── access-control.c │ ├── access-control.h │ ├── buff.c │ ├── buff.h │ ├── constants.h │ ├── dhcp.c │ ├── dhcp.h │ ├── dns │ │ ├── dns-fake.c │ │ ├── dns-fake.h │ │ ├── dns.c │ │ └── dns.h │ ├── http-parser │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── LICENSE-MIT │ │ ├── Makefile │ │ ├── README.md │ │ ├── bench.c │ │ ├── contrib │ │ │ ├── parsertrace.c │ │ │ └── url_parser.c │ │ ├── http_parser.c │ │ ├── http_parser.gyp │ │ ├── http_parser.h │ │ └── test.c │ ├── http │ │ ├── auth-basic.c │ │ ├── auth-basic.h │ │ ├── auth-sspi.c │ │ ├── auth-sspi.h │ │ ├── auth.c │ │ ├── auth.h │ │ ├── cert-osx.c │ │ ├── cert-win32.c │ │ ├── cert.h │ │ ├── main.c │ │ ├── ntlm.c │ │ ├── ntlm.h │ │ ├── parser.c │ │ ├── parser.h │ │ ├── proxy.c │ │ ├── proxy.h │ │ ├── strings.h │ │ ├── tls.c │ │ └── tls.h │ ├── lava.c │ ├── lava.h │ ├── log.c │ ├── log.h │ ├── nickel.c │ ├── nickel.h │ ├── proto.h │ ├── rpc.c │ ├── rpc.h │ ├── service.c │ ├── service.h │ ├── socket.c │ ├── socket.h │ ├── stats.h │ ├── tcp-service.c │ ├── tcpip.c │ ├── tcpip.h │ └── udp-service.c ├── ns-echo.c ├── ns-forward.c ├── ns-logging.c ├── ns-webdav.c ├── ns.c ├── ns.h ├── opts.h ├── os.h ├── osx-app-delegate.h ├── osx-app-delegate.m ├── osx-keymap.h ├── osx-logging.c ├── osx-main.m ├── osx-vm-view.h ├── osx-vm-view.m ├── osx.c ├── osx.h ├── priv-heap.c ├── priv-heap.h ├── qemu │ ├── .gitignore │ ├── .gitmodules- │ ├── CODING_STYLE │ ├── COPYING │ ├── COPYING.LIB │ ├── Changelog │ ├── HACKING │ ├── LICENSE │ ├── MAINTAINERS │ ├── Makefile │ ├── Makefile.dis │ ├── Makefile.hw │ ├── Makefile.objs │ ├── Makefile.target │ ├── Makefile.user │ ├── QMP │ │ ├── README │ │ ├── qmp-events.txt │ │ ├── qmp-shell │ │ ├── qmp-spec.txt │ │ └── qmp.py │ ├── README │ ├── TODO │ ├── VERSION │ ├── a.out.h │ ├── acl.c │ ├── acl.h │ ├── aes.c │ ├── aes.h │ ├── aio.c │ ├── alpha-dis.c │ ├── alpha.ld │ ├── arch_init.c │ ├── arch_init.h │ ├── arm-dis.c │ ├── arm-semi.c │ ├── arm.ld │ ├── async.c │ ├── audio │ │ ├── alsaaudio.c │ │ ├── audio.c │ │ ├── audio.h │ │ ├── audio_int.h │ │ ├── audio_pt_int.c │ │ ├── audio_pt_int.h │ │ ├── audio_template.h │ │ ├── audio_win_int.c │ │ ├── audio_win_int.h │ │ ├── coreaudio.c │ │ ├── dsound_template.h │ │ ├── dsoundaudio.c │ │ ├── esdaudio.c │ │ ├── fmodaudio.c │ │ ├── mixeng.c │ │ ├── mixeng.h │ │ ├── mixeng_template.h │ │ ├── noaudio.c │ │ ├── ossaudio.c │ │ ├── paaudio.c │ │ ├── rate_template.h │ │ ├── sdlaudio.c │ │ ├── spiceaudio.c │ │ ├── wavaudio.c │ │ ├── wavcapture.c │ │ └── winwaveaudio.c │ ├── balloon.c │ ├── balloon.h │ ├── bitmap.c │ ├── bitmap.h │ ├── bitops.c │ ├── bitops.h │ ├── block-migration.c │ ├── block-migration.h │ ├── block.c │ ├── block.h │ ├── block │ │ ├── blkdebug.c │ │ ├── blkverify.c │ │ ├── bochs.c │ │ ├── cloop.c │ │ ├── cow.c │ │ ├── curl.c │ │ ├── dmg.c │ │ ├── iscsi.c │ │ ├── nbd.c │ │ ├── parallels.c │ │ ├── qcow.c │ │ ├── qcow2-cache.c │ │ ├── qcow2-cluster.c │ │ ├── qcow2-refcount.c │ │ ├── qcow2-snapshot.c │ │ ├── qcow2.c │ │ ├── qcow2.h │ │ ├── qed-check.c │ │ ├── qed-cluster.c │ │ ├── qed-gencb.c │ │ ├── qed-l2-cache.c │ │ ├── qed-table.c │ │ ├── qed.c │ │ ├── qed.h │ │ ├── raw-posix-aio.h │ │ ├── raw-posix.c │ │ ├── raw-win32.c │ │ ├── raw.c │ │ ├── rbd.c │ │ ├── sheepdog.c │ │ ├── vdi.c │ │ ├── vmdk.c │ │ ├── vpc.c │ │ └── vvfat.c │ ├── block_int.h │ ├── blockdev.c │ ├── blockdev.h │ ├── bsd-user │ │ ├── bsd-mman.h │ │ ├── bsdload.c │ │ ├── elfload.c │ │ ├── errno_defs.h │ │ ├── freebsd │ │ │ ├── strace.list │ │ │ └── syscall_nr.h │ │ ├── i386 │ │ │ ├── syscall.h │ │ │ └── target_signal.h │ │ ├── main.c │ │ ├── mmap.c │ │ ├── netbsd │ │ │ ├── strace.list │ │ │ └── syscall_nr.h │ │ ├── openbsd │ │ │ ├── strace.list │ │ │ └── syscall_nr.h │ │ ├── qemu-types.h │ │ ├── qemu.h │ │ ├── signal.c │ │ ├── sparc │ │ │ ├── syscall.h │ │ │ └── target_signal.h │ │ ├── sparc64 │ │ │ ├── syscall.h │ │ │ └── target_signal.h │ │ ├── strace.c │ │ ├── syscall.c │ │ ├── syscall_defs.h │ │ ├── uaccess.c │ │ └── x86_64 │ │ │ ├── syscall.h │ │ │ └── target_signal.h │ ├── bswap.h │ ├── bt-host.c │ ├── bt-host.h │ ├── bt-vhci.c │ ├── buffered_file.c │ ├── buffered_file.h │ ├── cache-utils.c │ ├── cache-utils.h │ ├── check-qdict.c │ ├── check-qfloat.c │ ├── check-qint.c │ ├── check-qjson.c │ ├── check-qlist.c │ ├── check-qstring.c │ ├── cmd.c │ ├── cmd.h │ ├── compatfd.c │ ├── compatfd.h │ ├── compiler.h │ ├── config.h │ ├── configure │ ├── console.c │ ├── console.h │ ├── coroutine-gthread.c │ ├── coroutine-ucontext.c │ ├── coroutine-win32.c │ ├── cpu-all.h │ ├── cpu-common.h │ ├── cpu-defs.h │ ├── cpu-exec.c │ ├── cpus.c │ ├── cpus.h │ ├── cris-dis.c │ ├── cursor.c │ ├── cursor_hidden.xpm │ ├── cursor_left_ptr.xpm │ ├── cutils.c │ ├── darwin-user │ │ ├── commpage.c │ │ ├── ioctls.h │ │ ├── ioctls_types.h │ │ ├── machload.c │ │ ├── main.c │ │ ├── mmap.c │ │ ├── qemu.h │ │ ├── signal.c │ │ ├── syscall.c │ │ └── syscalls.h │ ├── def-helper.h │ ├── default-configs │ │ ├── alpha-linux-user.mak │ │ ├── alpha-softmmu.mak │ │ ├── arm-linux-user.mak │ │ ├── arm-softmmu.mak │ │ ├── armeb-linux-user.mak │ │ ├── cris-linux-user.mak │ │ ├── cris-softmmu.mak │ │ ├── i386-bsd-user.mak │ │ ├── i386-darwin-user.mak │ │ ├── i386-linux-user.mak │ │ ├── i386-softmmu.mak │ │ ├── lm32-softmmu.mak │ │ ├── m68k-linux-user.mak │ │ ├── m68k-softmmu.mak │ │ ├── microblaze-linux-user.mak │ │ ├── microblaze-softmmu.mak │ │ ├── microblazeel-linux-user.mak │ │ ├── microblazeel-softmmu.mak │ │ ├── mips-linux-user.mak │ │ ├── mips-softmmu.mak │ │ ├── mips64-softmmu.mak │ │ ├── mips64el-softmmu.mak │ │ ├── mipsel-linux-user.mak │ │ ├── mipsel-softmmu.mak │ │ ├── pci.mak │ │ ├── ppc-darwin-user.mak │ │ ├── ppc-linux-user.mak │ │ ├── ppc-softmmu.mak │ │ ├── ppc64-linux-user.mak │ │ ├── ppc64-softmmu.mak │ │ ├── ppc64abi32-linux-user.mak │ │ ├── ppcemb-softmmu.mak │ │ ├── s390x-linux-user.mak │ │ ├── s390x-softmmu.mak │ │ ├── sh4-linux-user.mak │ │ ├── sh4-softmmu.mak │ │ ├── sh4eb-linux-user.mak │ │ ├── sh4eb-softmmu.mak │ │ ├── sparc-bsd-user.mak │ │ ├── sparc-linux-user.mak │ │ ├── sparc-softmmu.mak │ │ ├── sparc32plus-linux-user.mak │ │ ├── sparc64-bsd-user.mak │ │ ├── sparc64-linux-user.mak │ │ ├── sparc64-softmmu.mak │ │ ├── unicore32-linux-user.mak │ │ ├── x86_64-bsd-user.mak │ │ ├── x86_64-linux-user.mak │ │ ├── x86_64-softmmu.mak │ │ ├── xtensa-softmmu.mak │ │ └── xtensaeb-softmmu.mak │ ├── device_tree.c │ ├── device_tree.h │ ├── dis-asm.h │ ├── disas.c │ ├── disas.h │ ├── dma-helpers.c │ ├── dma.h │ ├── docs │ │ ├── blkverify.txt │ │ ├── bootindex.txt │ │ ├── ccid.txt │ │ ├── ich9-ehci-uhci.cfg │ │ ├── libcacard.txt │ │ ├── memory.txt │ │ ├── migration.txt │ │ ├── qapi-code-gen.txt │ │ ├── qdev-device-use.txt │ │ ├── specs │ │ │ ├── acpi_pci_hotplug.txt │ │ │ ├── ivshmem_device_spec.txt │ │ │ ├── qcow2.txt │ │ │ └── qed_spec.txt │ │ ├── tracing.txt │ │ └── usb2.txt │ ├── dyngen-exec.h │ ├── elf.h │ ├── envlist.c │ ├── envlist.h │ ├── error.c │ ├── error.h │ ├── error_int.h │ ├── event_notifier.c │ ├── event_notifier.h │ ├── exec-all.h │ ├── exec-memory.h │ ├── exec.c │ ├── fpu │ │ ├── softfloat-macros.h │ │ ├── softfloat-specialize.h │ │ ├── softfloat.c │ │ └── softfloat.h │ ├── fsdev │ │ ├── file-op-9p.h │ │ ├── qemu-fsdev-dummy.c │ │ ├── qemu-fsdev.c │ │ └── qemu-fsdev.h │ ├── gdb-xml │ │ ├── arm-core.xml │ │ ├── arm-neon.xml │ │ ├── arm-vfp.xml │ │ ├── arm-vfp3.xml │ │ ├── cf-core.xml │ │ ├── cf-fp.xml │ │ ├── power-altivec.xml │ │ ├── power-core.xml │ │ ├── power-fpu.xml │ │ ├── power-spe.xml │ │ └── power64-core.xml │ ├── gdbstub.c │ ├── gdbstub.h │ ├── gen-icount.h │ ├── hmp-commands.hx │ ├── hmp.c │ ├── hmp.h │ ├── host-utils.c │ ├── host-utils.h │ ├── hppa-dis.c │ ├── hppa.ld │ ├── hw │ │ ├── 9p.h │ │ ├── 9pfs │ │ │ ├── codir.c │ │ │ ├── cofile.c │ │ │ ├── cofs.c │ │ │ ├── coxattr.c │ │ │ ├── virtio-9p-coth.c │ │ │ ├── virtio-9p-coth.h │ │ │ ├── virtio-9p-device.c │ │ │ ├── virtio-9p-handle.c │ │ │ ├── virtio-9p-local.c │ │ │ ├── virtio-9p-posix-acl.c │ │ │ ├── virtio-9p-synth.c │ │ │ ├── virtio-9p-synth.h │ │ │ ├── virtio-9p-xattr-user.c │ │ │ ├── virtio-9p-xattr.c │ │ │ ├── virtio-9p-xattr.h │ │ │ ├── virtio-9p.c │ │ │ └── virtio-9p.h │ │ ├── a9mpcore.c │ │ ├── ac97.c │ │ ├── acpi.c │ │ ├── acpi.h │ │ ├── acpi_piix4.c │ │ ├── adb.c │ │ ├── adb.h │ │ ├── adlib.c │ │ ├── ads7846.c │ │ ├── alpha_dp264.c │ │ ├── alpha_pci.c │ │ ├── alpha_sys.h │ │ ├── alpha_typhoon.c │ │ ├── an5206.c │ │ ├── apb_pci.c │ │ ├── apb_pci.h │ │ ├── apic.c │ │ ├── apic.h │ │ ├── apm.c │ │ ├── apm.h │ │ ├── applesmc.c │ │ ├── arm-misc.h │ │ ├── arm11mpcore.c │ │ ├── arm_boot.c │ │ ├── arm_gic.c │ │ ├── arm_pic.c │ │ ├── arm_sysctl.c │ │ ├── arm_timer.c │ │ ├── armv7m.c │ │ ├── armv7m_nvic.c │ │ ├── audiodev.h │ │ ├── axis_dev88.c │ │ ├── baum.c │ │ ├── baum.h │ │ ├── bitbang_i2c.c │ │ ├── bitbang_i2c.h │ │ ├── blizzard.c │ │ ├── blizzard_template.h │ │ ├── boards.h │ │ ├── bonito.c │ │ ├── bt-hci-csr.c │ │ ├── bt-hci.c │ │ ├── bt-hid.c │ │ ├── bt-l2cap.c │ │ ├── bt-sdp.c │ │ ├── bt.c │ │ ├── bt.h │ │ ├── cbus.c │ │ ├── ccid-card-emulated.c │ │ ├── ccid-card-passthru.c │ │ ├── ccid.h │ │ ├── cdrom.c │ │ ├── cirrus_vga.c │ │ ├── cirrus_vga_rop.h │ │ ├── cirrus_vga_rop2.h │ │ ├── collie.c │ │ ├── cris-boot.c │ │ ├── cris-boot.h │ │ ├── cris_pic_cpu.c │ │ ├── cs4231.c │ │ ├── cs4231a.c │ │ ├── cuda.c │ │ ├── debugcon.c │ │ ├── dec_pci.c │ │ ├── dec_pci.h │ │ ├── device-hotplug.c │ │ ├── devices.h │ │ ├── dma.c │ │ ├── dp8393x.c │ │ ├── ds1225y.c │ │ ├── ds1338.c │ │ ├── dummy_m68k.c │ │ ├── e1000.c │ │ ├── e1000_babysitter.c │ │ ├── e1000_babysitter.h │ │ ├── e1000_hw.h │ │ ├── ecc.c │ │ ├── eccmemctl.c │ │ ├── eepro100.c │ │ ├── eeprom93xx.c │ │ ├── eeprom93xx.h │ │ ├── elf_ops.h │ │ ├── empty_slot.c │ │ ├── empty_slot.h │ │ ├── es1370.c │ │ ├── escc.c │ │ ├── escc.h │ │ ├── esp.c │ │ ├── esp.h │ │ ├── etraxfs.h │ │ ├── etraxfs_dma.c │ │ ├── etraxfs_dma.h │ │ ├── etraxfs_eth.c │ │ ├── etraxfs_pic.c │ │ ├── etraxfs_ser.c │ │ ├── etraxfs_timer.c │ │ ├── fdc.c │ │ ├── fdc.h │ │ ├── firmware_abi.h │ │ ├── flash.h │ │ ├── fmopl.c │ │ ├── fmopl.h │ │ ├── framebuffer.c │ │ ├── framebuffer.h │ │ ├── fw_cfg.c │ │ ├── fw_cfg.h │ │ ├── g364fb.c │ │ ├── grackle_pci.c │ │ ├── grlib.h │ │ ├── grlib_apbuart.c │ │ ├── grlib_gptimer.c │ │ ├── grlib_irqmp.c │ │ ├── gt64xxx.c │ │ ├── gumstix.c │ │ ├── gus.c │ │ ├── gusemu.h │ │ ├── gusemu_hal.c │ │ ├── gusemu_mixer.c │ │ ├── gustate.h │ │ ├── hda-audio.c │ │ ├── heathrow_pic.c │ │ ├── hid.c │ │ ├── hid.h │ │ ├── hpet.c │ │ ├── hpet_emul.h │ │ ├── hw.h │ │ ├── i2c.c │ │ ├── i2c.h │ │ ├── i8254.c │ │ ├── i8259.c │ │ ├── ide.h │ │ ├── ide │ │ │ ├── ahci.c │ │ │ ├── ahci.h │ │ │ ├── atapi.c │ │ │ ├── cmd646.c │ │ │ ├── core.c │ │ │ ├── ich.c │ │ │ ├── internal.h │ │ │ ├── isa.c │ │ │ ├── macio.c │ │ │ ├── microdrive.c │ │ │ ├── mmio.c │ │ │ ├── pci.c │ │ │ ├── pci.h │ │ │ ├── piix.c │ │ │ ├── qdev.c │ │ │ └── via.c │ │ ├── integratorcp.c │ │ ├── intel-hda-defs.h │ │ ├── intel-hda.c │ │ ├── intel-hda.h │ │ ├── ioapic.c │ │ ├── ioapic.h │ │ ├── ioh3420.c │ │ ├── ioh3420.h │ │ ├── irq.c │ │ ├── irq.h │ │ ├── isa-bus.c │ │ ├── isa.h │ │ ├── isa_mmio.c │ │ ├── ivshmem.c │ │ ├── jazz_led.c │ │ ├── kvmclock.c │ │ ├── kvmclock.h │ │ ├── lan9118.c │ │ ├── lance.c │ │ ├── leon3.c │ │ ├── lm32.h │ │ ├── lm32_boards.c │ │ ├── lm32_hwsetup.h │ │ ├── lm32_juart.c │ │ ├── lm32_juart.h │ │ ├── lm32_pic.c │ │ ├── lm32_pic.h │ │ ├── lm32_sys.c │ │ ├── lm32_timer.c │ │ ├── lm32_uart.c │ │ ├── lm4549.c │ │ ├── lm4549.h │ │ ├── lm832x.c │ │ ├── loader.c │ │ ├── loader.h │ │ ├── lsi53c895a.c │ │ ├── m48t59.c │ │ ├── mac_dbdma.c │ │ ├── mac_dbdma.h │ │ ├── mac_nvram.c │ │ ├── macio.c │ │ ├── mainstone.c │ │ ├── marvell_88w8618_audio.c │ │ ├── max111x.c │ │ ├── max7310.c │ │ ├── mc146818rtc.c │ │ ├── mc146818rtc.h │ │ ├── mcf.h │ │ ├── mcf5206.c │ │ ├── mcf5208.c │ │ ├── mcf_fec.c │ │ ├── mcf_intc.c │ │ ├── mcf_uart.c │ │ ├── microblaze_pic_cpu.c │ │ ├── microblaze_pic_cpu.h │ │ ├── milkymist-ac97.c │ │ ├── milkymist-hpdmc.c │ │ ├── milkymist-hw.h │ │ ├── milkymist-memcard.c │ │ ├── milkymist-minimac2.c │ │ ├── milkymist-pfpu.c │ │ ├── milkymist-softusb.c │ │ ├── milkymist-sysctl.c │ │ ├── milkymist-tmu2.c │ │ ├── milkymist-uart.c │ │ ├── milkymist-vgafb.c │ │ ├── milkymist-vgafb_template.h │ │ ├── milkymist.c │ │ ├── mips-bios.h │ │ ├── mips.h │ │ ├── mips_addr.c │ │ ├── mips_cpudevs.h │ │ ├── mips_fulong2e.c │ │ ├── mips_int.c │ │ ├── mips_jazz.c │ │ ├── mips_malta.c │ │ ├── mips_mipssim.c │ │ ├── mips_r4k.c │ │ ├── mips_timer.c │ │ ├── mipsnet.c │ │ ├── mpc8544_guts.c │ │ ├── mpcore.c │ │ ├── msi.c │ │ ├── msi.h │ │ ├── msix.c │ │ ├── msix.h │ │ ├── msmouse.c │ │ ├── msmouse.h │ │ ├── mst_fpga.c │ │ ├── multiboot.c │ │ ├── multiboot.h │ │ ├── musicpal.c │ │ ├── nand.c │ │ ├── ne2000-isa.c │ │ ├── ne2000.c │ │ ├── ne2000.h │ │ ├── nseries.c │ │ ├── nvram.h │ │ ├── omap.h │ │ ├── omap1.c │ │ ├── omap2.c │ │ ├── omap_clk.c │ │ ├── omap_dma.c │ │ ├── omap_dss.c │ │ ├── omap_gpio.c │ │ ├── omap_gpmc.c │ │ ├── omap_gptimer.c │ │ ├── omap_i2c.c │ │ ├── omap_intc.c │ │ ├── omap_l4.c │ │ ├── omap_lcd_template.h │ │ ├── omap_lcdc.c │ │ ├── omap_mmc.c │ │ ├── omap_sdrc.c │ │ ├── omap_spi.c │ │ ├── omap_sx1.c │ │ ├── omap_synctimer.c │ │ ├── omap_tap.c │ │ ├── omap_uart.c │ │ ├── onenand.c │ │ ├── opencores_eth.c │ │ ├── openpic.c │ │ ├── openpic.h │ │ ├── palm.c │ │ ├── parallel.c │ │ ├── pc.c │ │ ├── pc.h │ │ ├── pc_piix.c │ │ ├── pci-hotplug.c │ │ ├── pci-stub.c │ │ ├── pci.c │ │ ├── pci.h │ │ ├── pci_bridge.c │ │ ├── pci_bridge.h │ │ ├── pci_host.c │ │ ├── pci_host.h │ │ ├── pci_ids.h │ │ ├── pci_internals.h │ │ ├── pci_regs.h │ │ ├── pcie.c │ │ ├── pcie.h │ │ ├── pcie_aer.c │ │ ├── pcie_aer.h │ │ ├── pcie_host.c │ │ ├── pcie_host.h │ │ ├── pcie_port.c │ │ ├── pcie_port.h │ │ ├── pcie_regs.h │ │ ├── pckbd.c │ │ ├── pcmcia.h │ │ ├── pcnet-pci.c │ │ ├── pcnet.c │ │ ├── pcnet.h │ │ ├── pcspk.c │ │ ├── petalogix_ml605_mmu.c │ │ ├── petalogix_s3adsp1800_mmu.c │ │ ├── pflash_cfi01.c │ │ ├── pflash_cfi02.c │ │ ├── piix4.c │ │ ├── piix_pci.c │ │ ├── pixel_ops.h │ │ ├── pl011.c │ │ ├── pl022.c │ │ ├── pl031.c │ │ ├── pl041.c │ │ ├── pl041.h │ │ ├── pl041.hx │ │ ├── pl050.c │ │ ├── pl061.c │ │ ├── pl080.c │ │ ├── pl110.c │ │ ├── pl110_template.h │ │ ├── pl181.c │ │ ├── pl190.c │ │ ├── pm_smbus.c │ │ ├── pm_smbus.h │ │ ├── ppc-viosrp.h │ │ ├── ppc.c │ │ ├── ppc.h │ │ ├── ppc405.h │ │ ├── ppc405_boards.c │ │ ├── ppc405_uc.c │ │ ├── ppc440.c │ │ ├── ppc440.h │ │ ├── ppc440_bamboo.c │ │ ├── ppc4xx.h │ │ ├── ppc4xx_devs.c │ │ ├── ppc4xx_pci.c │ │ ├── ppc_booke.c │ │ ├── ppc_mac.h │ │ ├── ppc_newworld.c │ │ ├── ppc_oldworld.c │ │ ├── ppc_prep.c │ │ ├── ppce500_mpc8544ds.c │ │ ├── ppce500_pci.c │ │ ├── ppce500_spin.c │ │ ├── prep_pci.c │ │ ├── prep_pci.h │ │ ├── primecell.h │ │ ├── ps2.c │ │ ├── ps2.h │ │ ├── ptimer.c │ │ ├── pxa.h │ │ ├── pxa2xx.c │ │ ├── pxa2xx_dma.c │ │ ├── pxa2xx_gpio.c │ │ ├── pxa2xx_keypad.c │ │ ├── pxa2xx_lcd.c │ │ ├── pxa2xx_mmci.c │ │ ├── pxa2xx_pcmcia.c │ │ ├── pxa2xx_pic.c │ │ ├── pxa2xx_template.h │ │ ├── pxa2xx_timer.c │ │ ├── qdev-addr.c │ │ ├── qdev-addr.h │ │ ├── qdev-properties.c │ │ ├── qdev.c │ │ ├── qdev.h │ │ ├── qxl-logger.c │ │ ├── qxl-render.c │ │ ├── qxl.c │ │ ├── qxl.h │ │ ├── r2d.c │ │ ├── rc4030.c │ │ ├── realview.c │ │ ├── realview_gic.c │ │ ├── rtl8139.c │ │ ├── s390-virtio-bus.c │ │ ├── s390-virtio-bus.h │ │ ├── s390-virtio.c │ │ ├── sb16.c │ │ ├── sbi.c │ │ ├── scsi-bus.c │ │ ├── scsi-defs.h │ │ ├── scsi-disk.c │ │ ├── scsi-generic.c │ │ ├── scsi.h │ │ ├── sd.c │ │ ├── sd.h │ │ ├── serial.c │ │ ├── sga.c │ │ ├── sh.h │ │ ├── sh7750.c │ │ ├── sh7750_regnames.c │ │ ├── sh7750_regnames.h │ │ ├── sh7750_regs.h │ │ ├── sh_intc.c │ │ ├── sh_intc.h │ │ ├── sh_pci.c │ │ ├── sh_serial.c │ │ ├── sh_timer.c │ │ ├── sharpsl.h │ │ ├── shix.c │ │ ├── slavio_intctl.c │ │ ├── slavio_misc.c │ │ ├── slavio_timer.c │ │ ├── sm501.c │ │ ├── sm501_template.h │ │ ├── smbios.c │ │ ├── smbios.h │ │ ├── smbus.c │ │ ├── smbus.h │ │ ├── smbus_eeprom.c │ │ ├── smc91c111.c │ │ ├── soc_dma.c │ │ ├── soc_dma.h │ │ ├── spapr.c │ │ ├── spapr.h │ │ ├── spapr_hcall.c │ │ ├── spapr_llan.c │ │ ├── spapr_pci.c │ │ ├── spapr_pci.h │ │ ├── spapr_rtas.c │ │ ├── spapr_vio.c │ │ ├── spapr_vio.h │ │ ├── spapr_vscsi.c │ │ ├── spapr_vty.c │ │ ├── sparc32_dma.c │ │ ├── sparc32_dma.h │ │ ├── spitz.c │ │ ├── srp.h │ │ ├── ssd0303.c │ │ ├── ssd0323.c │ │ ├── ssi-sd.c │ │ ├── ssi.c │ │ ├── ssi.h │ │ ├── stellaris.c │ │ ├── stellaris_enet.c │ │ ├── stellaris_input.c │ │ ├── strongarm.c │ │ ├── strongarm.h │ │ ├── sun4c_intctl.c │ │ ├── sun4m.c │ │ ├── sun4m.h │ │ ├── sun4m_iommu.c │ │ ├── sun4u.c │ │ ├── syborg.c │ │ ├── syborg.h │ │ ├── syborg_fb.c │ │ ├── syborg_interrupt.c │ │ ├── syborg_keyboard.c │ │ ├── syborg_pointer.c │ │ ├── syborg_rtc.c │ │ ├── syborg_serial.c │ │ ├── syborg_timer.c │ │ ├── syborg_virtio.c │ │ ├── sysbus.c │ │ ├── sysbus.h │ │ ├── tc58128.c │ │ ├── tc6393xb.c │ │ ├── tc6393xb_template.h │ │ ├── tcx.c │ │ ├── tmp105.c │ │ ├── tosa.c │ │ ├── tsc2005.c │ │ ├── tsc210x.c │ │ ├── tusb6010.c │ │ ├── twl92230.c │ │ ├── unin_pci.c │ │ ├── usb-bt.c │ │ ├── usb-bus.c │ │ ├── usb-ccid.c │ │ ├── usb-desc.c │ │ ├── usb-desc.h │ │ ├── usb-ehci.c │ │ ├── usb-hid.c │ │ ├── usb-hub.c │ │ ├── usb-libhw.c │ │ ├── usb-msd.c │ │ ├── usb-musb.c │ │ ├── usb-net.c │ │ ├── usb-ohci.c │ │ ├── usb-ohci.h │ │ ├── usb-serial.c │ │ ├── usb-uhci.c │ │ ├── usb-uhci.h │ │ ├── usb-wacom.c │ │ ├── usb.c │ │ ├── usb.h │ │ ├── versatile_pci.c │ │ ├── versatilepb.c │ │ ├── vexpress.c │ │ ├── vga-isa-mm.c │ │ ├── vga-isa.c │ │ ├── vga-pci.c │ │ ├── vga.c │ │ ├── vga_int.h │ │ ├── vga_template.h │ │ ├── vhost.c │ │ ├── vhost.h │ │ ├── vhost_net.c │ │ ├── vhost_net.h │ │ ├── virtex_ml507.c │ │ ├── virtio-balloon.c │ │ ├── virtio-balloon.h │ │ ├── virtio-blk.c │ │ ├── virtio-blk.h │ │ ├── virtio-console.c │ │ ├── virtio-net.c │ │ ├── virtio-net.h │ │ ├── virtio-pci.c │ │ ├── virtio-pci.h │ │ ├── virtio-serial-bus.c │ │ ├── virtio-serial.h │ │ ├── virtio.c │ │ ├── virtio.h │ │ ├── vmmouse.c │ │ ├── vmport.c │ │ ├── vmware_vga.c │ │ ├── vmware_vga.h │ │ ├── vt82c686.c │ │ ├── vt82c686.h │ │ ├── watchdog.c │ │ ├── watchdog.h │ │ ├── wdt_i6300esb.c │ │ ├── wdt_ib700.c │ │ ├── wm8750.c │ │ ├── xen.h │ │ ├── xen_backend.c │ │ ├── xen_backend.h │ │ ├── xen_blkif.h │ │ ├── xen_common.h │ │ ├── xen_console.c │ │ ├── xen_devconfig.c │ │ ├── xen_disk.c │ │ ├── xen_domainbuild.c │ │ ├── xen_domainbuild.h │ │ ├── xen_machine_pv.c │ │ ├── xen_nic.c │ │ ├── xen_platform.c │ │ ├── xenfb.c │ │ ├── xics.c │ │ ├── xics.h │ │ ├── xilinx.h │ │ ├── xilinx_axidma.c │ │ ├── xilinx_axidma.h │ │ ├── xilinx_axienet.c │ │ ├── xilinx_ethlite.c │ │ ├── xilinx_intc.c │ │ ├── xilinx_timer.c │ │ ├── xilinx_uartlite.c │ │ ├── xio3130_downstream.c │ │ ├── xio3130_downstream.h │ │ ├── xio3130_upstream.c │ │ ├── xio3130_upstream.h │ │ ├── xtensa_bootparam.h │ │ ├── xtensa_lx60.c │ │ ├── xtensa_pic.c │ │ ├── xtensa_sim.c │ │ ├── z2.c │ │ └── zaurus.c │ ├── i386-dis.c │ ├── i386.ld │ ├── ia64-dis.c │ ├── ia64.ld │ ├── input.c │ ├── int128.h │ ├── iohandler.c │ ├── ioport-user.c │ ├── ioport.c │ ├── ioport.h │ ├── iorange.h │ ├── iov.c │ ├── iov.h │ ├── json-lexer.c │ ├── json-lexer.h │ ├── json-parser.c │ ├── json-parser.h │ ├── json-streamer.c │ ├── json-streamer.h │ ├── kvm-all.c │ ├── kvm-stub.c │ ├── kvm.h │ ├── libcacard │ │ ├── Makefile │ │ ├── cac.c │ │ ├── cac.h │ │ ├── card_7816.c │ │ ├── card_7816.h │ │ ├── card_7816t.h │ │ ├── event.c │ │ ├── eventt.h │ │ ├── libcacard.pc.in │ │ ├── link_test.c │ │ ├── vcard.c │ │ ├── vcard.h │ │ ├── vcard_emul.h │ │ ├── vcard_emul_nss.c │ │ ├── vcard_emul_type.c │ │ ├── vcard_emul_type.h │ │ ├── vcardt.h │ │ ├── vevent.h │ │ ├── vreader.c │ │ ├── vreader.h │ │ ├── vreadert.h │ │ ├── vscard_common.h │ │ └── vscclient.c │ ├── libfdt_env.h │ ├── linux-aio.c │ ├── linux-headers │ │ ├── COPYING │ │ ├── README │ │ ├── asm-powerpc │ │ │ ├── kvm.h │ │ │ └── kvm_para.h │ │ ├── asm-s390 │ │ │ ├── kvm.h │ │ │ └── kvm_para.h │ │ ├── asm-x86 │ │ │ ├── hyperv.h │ │ │ ├── kvm.h │ │ │ └── kvm_para.h │ │ └── linux │ │ │ ├── kvm.h │ │ │ ├── kvm_para.h │ │ │ ├── vhost.h │ │ │ ├── virtio_config.h │ │ │ └── virtio_ring.h │ ├── linux-user │ │ ├── alpha │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── arm │ │ │ ├── nwfpe │ │ │ │ ├── double_cpdo.c │ │ │ │ ├── extended_cpdo.c │ │ │ │ ├── fpa11.c │ │ │ │ ├── fpa11.h │ │ │ │ ├── fpa11.inl │ │ │ │ ├── fpa11_cpdo.c │ │ │ │ ├── fpa11_cpdt.c │ │ │ │ ├── fpa11_cprt.c │ │ │ │ ├── fpopcode.c │ │ │ │ ├── fpopcode.h │ │ │ │ ├── fpsr.h │ │ │ │ └── single_cpdo.c │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── cpu-uname.c │ │ ├── cpu-uname.h │ │ ├── cris │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── elfload.c │ │ ├── errno_defs.h │ │ ├── flat.h │ │ ├── flatload.c │ │ ├── i386 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── ioctls.h │ │ ├── linux_loop.h │ │ ├── linuxload.c │ │ ├── m68k-sim.c │ │ ├── m68k │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── main.c │ │ ├── microblaze │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── mips │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── mips64 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── mipsn32 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── mmap.c │ │ ├── ppc │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── qemu-types.h │ │ ├── qemu.h │ │ ├── s390x │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── sh4 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── signal.c │ │ ├── socket.h │ │ ├── sparc │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── sparc64 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── strace.c │ │ ├── strace.list │ │ ├── syscall.c │ │ ├── syscall_defs.h │ │ ├── syscall_types.h │ │ ├── target_flat.h │ │ ├── uaccess.c │ │ ├── unicore32 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ │ ├── vm86.c │ │ └── x86_64 │ │ │ ├── syscall.h │ │ │ ├── syscall_nr.h │ │ │ ├── target_signal.h │ │ │ └── termbits.h │ ├── m68k-dis.c │ ├── m68k-semi.c │ ├── m68k.ld │ ├── main-loop.c │ ├── main-loop.h │ ├── memory.c │ ├── memory.h │ ├── microblaze-dis.c │ ├── migration-exec.c │ ├── migration-fd.c │ ├── migration-tcp.c │ ├── migration-unix.c │ ├── migration.c │ ├── migration.h │ ├── mips-dis.c │ ├── mips.ld │ ├── module.c │ ├── module.h │ ├── monitor.c │ ├── monitor.h │ ├── nbd.c │ ├── nbd.h │ ├── net.c │ ├── net.h │ ├── net │ │ ├── checksum.c │ │ ├── checksum.h │ │ ├── dump.c │ │ ├── dump.h │ │ ├── nickel.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── slirp.c │ │ ├── slirp.h │ │ ├── socket.c │ │ ├── socket.h │ │ ├── tap-aix.c │ │ ├── tap-bsd.c │ │ ├── tap-haiku.c │ │ ├── tap-linux.c │ │ ├── tap-linux.h │ │ ├── tap-solaris.c │ │ ├── tap-win32.c │ │ ├── tap.c │ │ ├── tap.h │ │ ├── util.c │ │ ├── util.h │ │ ├── vde.c │ │ └── vde.h │ ├── notify.c │ ├── notify.h │ ├── os-posix.c │ ├── os-win32.c │ ├── osdep.c │ ├── osdep.h │ ├── oslib-posix.c │ ├── oslib-win32.c │ ├── path.c │ ├── pc-bios │ │ ├── Makefile │ │ ├── README │ │ ├── bamboo.dtb │ │ ├── bamboo.dts │ │ ├── bios.bin │ │ ├── keymaps │ │ │ ├── ar │ │ │ ├── bepo │ │ │ ├── common │ │ │ ├── da │ │ │ ├── de │ │ │ ├── de-ch │ │ │ ├── en-gb │ │ │ ├── en-us │ │ │ ├── es │ │ │ ├── et │ │ │ ├── fi │ │ │ ├── fo │ │ │ ├── fr │ │ │ ├── fr-be │ │ │ ├── fr-ca │ │ │ ├── fr-ch │ │ │ ├── hr │ │ │ ├── hu │ │ │ ├── is │ │ │ ├── it │ │ │ ├── ja │ │ │ ├── lt │ │ │ ├── lv │ │ │ ├── mk │ │ │ ├── modifiers │ │ │ ├── nl │ │ │ ├── nl-be │ │ │ ├── no │ │ │ ├── pl │ │ │ ├── pt │ │ │ ├── pt-br │ │ │ ├── ru │ │ │ ├── sl │ │ │ ├── sv │ │ │ ├── th │ │ │ └── tr │ │ ├── linuxboot.bin │ │ ├── mpc8544ds.dtb │ │ ├── mpc8544ds.dts │ │ ├── multiboot.bin │ │ ├── ohw.diff │ │ ├── openbios-ppc │ │ ├── openbios-sparc32 │ │ ├── openbios-sparc64 │ │ ├── optionrom │ │ │ ├── Makefile │ │ │ ├── linuxboot.S │ │ │ ├── multiboot.S │ │ │ └── optionrom.h │ │ ├── palcode-clipper │ │ ├── petalogix-ml605.dtb │ │ ├── petalogix-s3adsp1800.dtb │ │ ├── ppc_rom.bin │ │ ├── pxe-e1000.rom │ │ ├── pxe-eepro100.rom │ │ ├── pxe-ne2k_pci.rom │ │ ├── pxe-pcnet.rom │ │ ├── pxe-rtl8139.rom │ │ ├── pxe-virtio.rom │ │ ├── s390-zipl.rom │ │ ├── sgabios.bin │ │ ├── slof.bin │ │ ├── spapr-rtas.bin │ │ ├── spapr-rtas │ │ │ ├── Makefile │ │ │ └── spapr-rtas.S │ │ ├── vgabios-cirrus.bin │ │ ├── vgabios-qxl.bin │ │ ├── vgabios-stdvga.bin │ │ ├── vgabios-vmware.bin │ │ └── vgabios.bin │ ├── pci-ids.txt │ ├── pflib.c │ ├── pflib.h │ ├── poison.h │ ├── posix-aio-compat.c │ ├── ppc-dis.c │ ├── ppc.ld │ ├── ppc64.ld │ ├── qapi-schema-guest.json │ ├── qapi-schema-test.json │ ├── qapi-schema.json │ ├── qapi │ │ ├── qapi-dealloc-visitor.c │ │ ├── qapi-dealloc-visitor.h │ │ ├── qapi-types-core.h │ │ ├── qapi-visit-core.c │ │ ├── qapi-visit-core.h │ │ ├── qmp-core.h │ │ ├── qmp-dispatch.c │ │ ├── qmp-input-visitor.c │ │ ├── qmp-input-visitor.h │ │ ├── qmp-output-visitor.c │ │ ├── qmp-output-visitor.h │ │ └── qmp-registry.c │ ├── qbool.c │ ├── qbool.h │ ├── qdict-test-data.txt │ ├── qdict.c │ ├── qdict.h │ ├── qemu-aio.h │ ├── qemu-barrier.h │ ├── qemu-char.c │ ├── qemu-char.h │ ├── qemu-common.h │ ├── qemu-config.c │ ├── qemu-config.h │ ├── qemu-coroutine-int.h │ ├── qemu-coroutine-lock.c │ ├── qemu-coroutine.c │ ├── qemu-coroutine.h │ ├── qemu-doc.texi │ ├── qemu-error.c │ ├── qemu-error.h │ ├── qemu-ga.c │ ├── qemu-img-cmds.hx │ ├── qemu-img.c │ ├── qemu-img.texi │ ├── qemu-io.c │ ├── qemu-lock.h │ ├── qemu-log.h │ ├── qemu-nbd.c │ ├── qemu-nbd.texi │ ├── qemu-objects.h │ ├── qemu-option.c │ ├── qemu-option.h │ ├── qemu-options.h │ ├── qemu-options.hx │ ├── qemu-os-posix.h │ ├── qemu-os-win32.h │ ├── qemu-progress.c │ ├── qemu-queue.h │ ├── qemu-sockets.c │ ├── qemu-tech.texi │ ├── qemu-thread-posix.c │ ├── qemu-thread-posix.h │ ├── qemu-thread-win32.c │ ├── qemu-thread-win32.h │ ├── qemu-thread.h │ ├── qemu-timer-common.c │ ├── qemu-timer.c │ ├── qemu-timer.h │ ├── qemu-tls.h │ ├── qemu-tool.c │ ├── qemu-x509.h │ ├── qemu-xattr.h │ ├── qemu.sasl │ ├── qemu_socket.h │ ├── qerror.c │ ├── qerror.h │ ├── qfloat.c │ ├── qfloat.h │ ├── qga │ │ ├── guest-agent-command-state.c │ │ ├── guest-agent-commands.c │ │ └── guest-agent-core.h │ ├── qint.c │ ├── qint.h │ ├── qjson.c │ ├── qjson.h │ ├── qlist.c │ ├── qlist.h │ ├── qmp-commands.hx │ ├── qmp.c │ ├── qobject.h │ ├── qstring.c │ ├── qstring.h │ ├── range.h │ ├── readline.c │ ├── readline.h │ ├── rules.mak │ ├── s390-dis.c │ ├── s390.ld │ ├── savevm.c │ ├── scripts │ │ ├── analyse-9p-simpletrace.py │ │ ├── checkpatch.pl │ │ ├── create_config │ │ ├── feature_to_c.sh │ │ ├── get_maintainer.pl │ │ ├── hxtool │ │ ├── kvm │ │ │ ├── kvm_stat │ │ │ └── vmxcap │ │ ├── make_device_config.sh │ │ ├── ordereddict.py │ │ ├── qapi-commands.py │ │ ├── qapi-types.py │ │ ├── qapi-visit.py │ │ ├── qapi.py │ │ ├── qemu-binfmt-conf.sh │ │ ├── refresh-pxe-roms.sh │ │ ├── signrom.sh │ │ ├── simpletrace.py │ │ ├── texi2pod.pl │ │ ├── tracetool │ │ └── update-linux-headers.sh │ ├── sh4-dis.c │ ├── slirp │ │ ├── COPYRIGHT │ │ ├── arp_table.c │ │ ├── bootp.c │ │ ├── bootp.h │ │ ├── cksum.c │ │ ├── debug.h │ │ ├── if.c │ │ ├── if.h │ │ ├── ip.h │ │ ├── ip_icmp.c │ │ ├── ip_icmp.h │ │ ├── ip_input.c │ │ ├── ip_output.c │ │ ├── libslirp.h │ │ ├── main.h │ │ ├── mbuf.c │ │ ├── mbuf.h │ │ ├── misc.c │ │ ├── misc.h │ │ ├── sbuf.c │ │ ├── sbuf.h │ │ ├── slirp.c │ │ ├── slirp.h │ │ ├── slirp_config.h │ │ ├── socket.c │ │ ├── socket.h │ │ ├── tcp.h │ │ ├── tcp_input.c │ │ ├── tcp_output.c │ │ ├── tcp_subr.c │ │ ├── tcp_timer.c │ │ ├── tcp_timer.h │ │ ├── tcp_var.h │ │ ├── tcpip.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── udp.c │ │ └── udp.h │ ├── softmmu-semi.h │ ├── softmmu_defs.h │ ├── softmmu_exec.h │ ├── softmmu_header.h │ ├── softmmu_template.h │ ├── sparc-dis.c │ ├── sparc.ld │ ├── sparc64.ld │ ├── spice-qemu-char.c │ ├── sysconfigs │ │ └── target │ │ │ └── target-x86_64.conf │ ├── sysemu.h │ ├── target-alpha │ │ ├── STATUS │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-arm │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── iwmmxt_helper.c │ │ ├── machine.c │ │ ├── neon_helper.c │ │ ├── op_addsub.h │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-cris │ │ ├── cpu.h │ │ ├── crisv10-decode.h │ │ ├── crisv32-decode.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── mmu.c │ │ ├── mmu.h │ │ ├── op_helper.c │ │ ├── opcode-cris.h │ │ ├── translate.c │ │ └── translate_v10.c │ ├── target-i386 │ │ ├── TODO │ │ ├── cpu.h │ │ ├── cpuid.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── helper_template.h │ │ ├── kvm.c │ │ ├── machine.c │ │ ├── op_helper.c │ │ ├── ops_sse.h │ │ ├── ops_sse_header.h │ │ ├── svm.h │ │ └── translate.c │ ├── target-lm32 │ │ ├── README │ │ ├── TODO │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-m68k │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helpers.h │ │ ├── m68k-qreg.h │ │ ├── machine.c │ │ ├── op_helper.c │ │ ├── qregs.def │ │ └── translate.c │ ├── target-microblaze │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── microblaze-decode.h │ │ ├── mmu.c │ │ ├── mmu.h │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-mips │ │ ├── TODO │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── mips-defs.h │ │ ├── op_helper.c │ │ ├── translate.c │ │ └── translate_init.c │ ├── target-ppc │ │ ├── STATUS │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── helper_regs.h │ │ ├── kvm.c │ │ ├── kvm_ppc.c │ │ ├── kvm_ppc.h │ │ ├── machine.c │ │ ├── mfrom_table.c │ │ ├── mfrom_table_gen.c │ │ ├── op_helper.c │ │ ├── translate.c │ │ └── translate_init.c │ ├── target-s390x │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helpers.h │ │ ├── kvm.c │ │ ├── machine.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-sh4 │ │ ├── README.sh4 │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── machine.c │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-sparc │ │ ├── TODO │ │ ├── cc_helper.c │ │ ├── cpu.h │ │ ├── cpu_init.c │ │ ├── fop_helper.c │ │ ├── helper.c │ │ ├── helper.h │ │ ├── int32_helper.c │ │ ├── int64_helper.c │ │ ├── ldst_helper.c │ │ ├── machine.c │ │ ├── mmu_helper.c │ │ ├── op_helper.c │ │ ├── translate.c │ │ ├── vis_helper.c │ │ └── win_helper.c │ ├── target-unicore32 │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helper.h │ │ ├── op_helper.c │ │ └── translate.c │ ├── target-xtensa │ │ ├── core-dc232b.c │ │ ├── core-dc232b │ │ │ ├── core-isa.h │ │ │ └── gdb-config.c │ │ ├── core-fsf.c │ │ ├── core-fsf │ │ │ └── core-isa.h │ │ ├── cpu.h │ │ ├── helper.c │ │ ├── helpers.h │ │ ├── machine.c │ │ ├── op_helper.c │ │ ├── overlay_tool.h │ │ └── translate.c │ ├── targphys.h │ ├── tcg-runtime.c │ ├── tcg │ │ ├── LICENSE │ │ ├── README │ │ ├── TODO │ │ ├── arm │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── hppa │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── i386 │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── ia64 │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── mips │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── optimize.c │ │ ├── ppc │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── ppc64 │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── s390 │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── sparc │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ │ ├── tcg-op.h │ │ ├── tcg-opc.h │ │ ├── tcg-runtime.h │ │ ├── tcg.c │ │ ├── tcg.h │ │ └── tci │ │ │ ├── README │ │ │ ├── tcg-target.c │ │ │ └── tcg-target.h │ ├── tci-dis.c │ ├── tci.c │ ├── test-coroutine.c │ ├── test-qmp-commands.c │ ├── test-visitor.c │ ├── tests │ │ ├── Makefile │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── crt.s │ │ │ ├── hello-alpha.c │ │ │ ├── test-cond.c │ │ │ └── test-ovf.c │ │ ├── cris │ │ │ ├── .gdbinit │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── check_abs.c │ │ │ ├── check_addc.c │ │ │ ├── check_addcm.c │ │ │ ├── check_addi.s │ │ │ ├── check_addiv32.s │ │ │ ├── check_addm.s │ │ │ ├── check_addo.c │ │ │ ├── check_addoq.c │ │ │ ├── check_addq.s │ │ │ ├── check_addr.s │ │ │ ├── check_addxc.s │ │ │ ├── check_addxm.s │ │ │ ├── check_addxr.s │ │ │ ├── check_andc.s │ │ │ ├── check_andm.s │ │ │ ├── check_andq.s │ │ │ ├── check_andr.s │ │ │ ├── check_asr.s │ │ │ ├── check_ba.s │ │ │ ├── check_bas.s │ │ │ ├── check_bcc.s │ │ │ ├── check_bound.c │ │ │ ├── check_boundc.s │ │ │ ├── check_boundr.s │ │ │ ├── check_btst.s │ │ │ ├── check_clearfv32.s │ │ │ ├── check_clrjmp1.s │ │ │ ├── check_cmp-2.s │ │ │ ├── check_cmpc.s │ │ │ ├── check_cmpm.s │ │ │ ├── check_cmpq.s │ │ │ ├── check_cmpr.s │ │ │ ├── check_cmpxc.s │ │ │ ├── check_cmpxm.s │ │ │ ├── check_dstep.s │ │ │ ├── check_ftag.c │ │ │ ├── check_gcctorture_pr28634-1.c │ │ │ ├── check_gcctorture_pr28634.c │ │ │ ├── check_glibc_kernelversion.c │ │ │ ├── check_hello.c │ │ │ ├── check_int64.c │ │ │ ├── check_jsr.s │ │ │ ├── check_lapc.s │ │ │ ├── check_lsl.s │ │ │ ├── check_lsr.s │ │ │ ├── check_lz.c │ │ │ ├── check_mapbrk.c │ │ │ ├── check_mcp.s │ │ │ ├── check_mmap1.c │ │ │ ├── check_mmap2.c │ │ │ ├── check_mmap3.c │ │ │ ├── check_movdelsr1.s │ │ │ ├── check_movecr.s │ │ │ ├── check_movei.s │ │ │ ├── check_movemr.s │ │ │ ├── check_movemrv32.s │ │ │ ├── check_moveq.c │ │ │ ├── check_mover.s │ │ │ ├── check_moverm.s │ │ │ ├── check_movmp.s │ │ │ ├── check_movpmv32.s │ │ │ ├── check_movpr.s │ │ │ ├── check_movprv32.s │ │ │ ├── check_movscr.s │ │ │ ├── check_movsm.s │ │ │ ├── check_movsr.s │ │ │ ├── check_movucr.s │ │ │ ├── check_movum.s │ │ │ ├── check_movur.s │ │ │ ├── check_mulv32.s │ │ │ ├── check_mulx.s │ │ │ ├── check_neg.s │ │ │ ├── check_not.s │ │ │ ├── check_openpf1.c │ │ │ ├── check_openpf2.c │ │ │ ├── check_openpf3.c │ │ │ ├── check_openpf4.c │ │ │ ├── check_openpf5.c │ │ │ ├── check_orc.s │ │ │ ├── check_orm.s │ │ │ ├── check_orq.s │ │ │ ├── check_orr.s │ │ │ ├── check_ret.s │ │ │ ├── check_scc.s │ │ │ ├── check_settls1.c │ │ │ ├── check_sigalrm.c │ │ │ ├── check_stat1.c │ │ │ ├── check_stat2.c │ │ │ ├── check_stat3.c │ │ │ ├── check_stat4.c │ │ │ ├── check_subc.s │ │ │ ├── check_subm.s │ │ │ ├── check_subq.s │ │ │ ├── check_subr.s │ │ │ ├── check_swap.c │ │ │ ├── check_time1.c │ │ │ ├── check_time2.c │ │ │ ├── check_xarith.s │ │ │ ├── crisutils.h │ │ │ ├── crt.s │ │ │ ├── sys.c │ │ │ ├── sys.h │ │ │ └── testutils.inc │ │ ├── hello-arm.c │ │ ├── hello-i386.c │ │ ├── hello-mips.c │ │ ├── linux-test.c │ │ ├── lm32 │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_add.S │ │ │ ├── test_addi.S │ │ │ ├── test_and.S │ │ │ ├── test_andhi.S │ │ │ ├── test_andi.S │ │ │ ├── test_b.S │ │ │ ├── test_be.S │ │ │ ├── test_bg.S │ │ │ ├── test_bge.S │ │ │ ├── test_bgeu.S │ │ │ ├── test_bgu.S │ │ │ ├── test_bi.S │ │ │ ├── test_bne.S │ │ │ ├── test_break.S │ │ │ ├── test_bret.S │ │ │ ├── test_call.S │ │ │ ├── test_calli.S │ │ │ ├── test_cmpe.S │ │ │ ├── test_cmpei.S │ │ │ ├── test_cmpg.S │ │ │ ├── test_cmpge.S │ │ │ ├── test_cmpgei.S │ │ │ ├── test_cmpgeu.S │ │ │ ├── test_cmpgeui.S │ │ │ ├── test_cmpgi.S │ │ │ ├── test_cmpgu.S │ │ │ ├── test_cmpgui.S │ │ │ ├── test_cmpne.S │ │ │ ├── test_cmpnei.S │ │ │ ├── test_divu.S │ │ │ ├── test_eret.S │ │ │ ├── test_lb.S │ │ │ ├── test_lbu.S │ │ │ ├── test_lh.S │ │ │ ├── test_lhu.S │ │ │ ├── test_lw.S │ │ │ ├── test_modu.S │ │ │ ├── test_mul.S │ │ │ ├── test_muli.S │ │ │ ├── test_nor.S │ │ │ ├── test_nori.S │ │ │ ├── test_or.S │ │ │ ├── test_orhi.S │ │ │ ├── test_ori.S │ │ │ ├── test_ret.S │ │ │ ├── test_sb.S │ │ │ ├── test_scall.S │ │ │ ├── test_sextb.S │ │ │ ├── test_sexth.S │ │ │ ├── test_sh.S │ │ │ ├── test_sl.S │ │ │ ├── test_sli.S │ │ │ ├── test_sr.S │ │ │ ├── test_sri.S │ │ │ ├── test_sru.S │ │ │ ├── test_srui.S │ │ │ ├── test_sub.S │ │ │ ├── test_sw.S │ │ │ ├── test_xnor.S │ │ │ ├── test_xnori.S │ │ │ ├── test_xor.S │ │ │ └── test_xori.S │ │ ├── pi_10.com │ │ ├── qruncom.c │ │ ├── runcom.c │ │ ├── sha1.c │ │ ├── test-arm-iwmmxt.s │ │ ├── test-i386-code16.S │ │ ├── test-i386-muldiv.h │ │ ├── test-i386-shift.h │ │ ├── test-i386-ssse3.c │ │ ├── test-i386-vm86.S │ │ ├── test-i386.c │ │ ├── test-i386.h │ │ ├── test-mmap.c │ │ ├── test_path.c │ │ ├── testthread.c │ │ └── xtensa │ │ │ ├── Makefile │ │ │ ├── crt.S │ │ │ ├── linker.ld │ │ │ ├── macros.inc │ │ │ ├── test_b.S │ │ │ ├── test_bi.S │ │ │ ├── test_boolean.S │ │ │ ├── test_bz.S │ │ │ ├── test_clamps.S │ │ │ ├── test_fail.S │ │ │ ├── test_interrupt.S │ │ │ ├── test_loop.S │ │ │ ├── test_mac16.S │ │ │ ├── test_max.S │ │ │ ├── test_min.S │ │ │ ├── test_mmu.S │ │ │ ├── test_mul16.S │ │ │ ├── test_mul32.S │ │ │ ├── test_nsa.S │ │ │ ├── test_pipeline.S │ │ │ ├── test_quo.S │ │ │ ├── test_rem.S │ │ │ ├── test_rst0.S │ │ │ ├── test_sar.S │ │ │ ├── test_sext.S │ │ │ ├── test_shift.S │ │ │ ├── test_timer.S │ │ │ ├── test_windowed.S │ │ │ └── vectors.S │ ├── thunk.c │ ├── thunk.h │ ├── trace-events │ ├── trace │ │ ├── control.c │ │ ├── control.h │ │ ├── default.c │ │ ├── simple.c │ │ ├── simple.h │ │ ├── stderr.c │ │ └── stderr.h │ ├── translate-all.c │ ├── uboot_image.h │ ├── ui │ │ ├── cocoa.m │ │ ├── curses.c │ │ ├── curses_keys.h │ │ ├── d3des.c │ │ ├── d3des.h │ │ ├── keymaps.c │ │ ├── keymaps.h │ │ ├── qemu-spice.h │ │ ├── sdl.c │ │ ├── sdl_keysym.h │ │ ├── sdl_zoom.c │ │ ├── sdl_zoom.h │ │ ├── sdl_zoom_template.h │ │ ├── spice-core.c │ │ ├── spice-display.c │ │ ├── spice-display.h │ │ ├── spice-input.c │ │ ├── vnc-auth-sasl.c │ │ ├── vnc-auth-sasl.h │ │ ├── vnc-auth-vencrypt.c │ │ ├── vnc-auth-vencrypt.h │ │ ├── vnc-enc-hextile-template.h │ │ ├── vnc-enc-hextile.c │ │ ├── vnc-enc-tight.c │ │ ├── vnc-enc-tight.h │ │ ├── vnc-enc-zlib.c │ │ ├── vnc-enc-zrle-template.c │ │ ├── vnc-enc-zrle.c │ │ ├── vnc-enc-zrle.h │ │ ├── vnc-enc-zywrle-template.c │ │ ├── vnc-enc-zywrle.h │ │ ├── vnc-jobs-async.c │ │ ├── vnc-jobs-sync.c │ │ ├── vnc-jobs.h │ │ ├── vnc-palette.c │ │ ├── vnc-palette.h │ │ ├── vnc-tls.c │ │ ├── vnc-tls.h │ │ ├── vnc.c │ │ ├── vnc.h │ │ ├── vnc_keysym.h │ │ ├── x_keymap.c │ │ └── x_keymap.h │ ├── usb-bsd.c │ ├── usb-linux.c │ ├── usb-redir.c │ ├── usb-stub.c │ ├── user-exec.c │ ├── version.rc │ ├── vgafont.h │ ├── vl.c │ ├── x86_64.ld │ ├── xen-all.c │ ├── xen-mapcache.c │ ├── xen-mapcache.h │ ├── xen-stub.c │ └── xtensa-semi.c ├── qemu_bswap.h ├── qemu_glue.c ├── qemu_glue.h ├── qemu_qdev-prop.h ├── qemu_queue.h ├── qemu_savevm.h ├── queue.h ├── queue2.h ├── rbtree.c ├── rbtree.h ├── scsi.h ├── sg.h ├── shared-folders.c ├── shared-folders.h ├── sockets.h ├── sysbus.c ├── sysbus.h ├── thread-event.h ├── timer.c ├── timer.h ├── tmp_glue.h ├── typedef.h ├── uuidgen.c ├── uuidgen.h ├── uxen.c ├── uxen.h ├── uxendm-res.rc ├── uxenh264.c ├── uxenh264.h ├── vbox-drivers │ ├── generic-server.h │ ├── heap.h │ ├── hgcm-simple.c │ ├── internal │ │ └── dir.h │ ├── rt │ │ ├── RTDir-generic.c │ │ ├── RTErrConvertFromWin32.c │ │ ├── dir-win.c │ │ ├── dir.c │ │ ├── fileio-win.c │ │ ├── fileio.c │ │ ├── fs-win.c │ │ ├── fs.c │ │ ├── other.c │ │ ├── path-win.c │ │ ├── rt.h │ │ └── rtPathWin32MoveRenameUcs.h │ ├── server.c │ ├── shared-clipboard │ │ ├── VBoxClipboard-win.c │ │ ├── VBoxClipboard.h │ │ ├── clipboard-interface.h │ │ ├── clipboardformats.c │ │ ├── notify.h │ │ ├── policy.c │ │ ├── rpc.c │ │ ├── server.c │ │ ├── service.c │ │ └── uxen_bmp_convert.c │ └── shared-folders │ │ ├── filecrypt_helper.c │ │ ├── filecrypt_helper.h │ │ ├── mappings-opts.c │ │ ├── mappings-opts.h │ │ ├── mappings.c │ │ ├── mappings.h │ │ ├── quota.c │ │ ├── quota.h │ │ ├── redir.c │ │ ├── redir.h │ │ ├── sf-server.c │ │ ├── sf-service.c │ │ ├── shfl.h │ │ ├── shflhandle.c │ │ ├── shflhandle.h │ │ ├── util.c │ │ ├── util.h │ │ ├── vbsf.c │ │ └── vbsf.h ├── vbox-includes │ ├── include │ │ ├── VBox │ │ │ ├── VBoxGuest.h │ │ │ ├── VBoxGuest2.h │ │ │ ├── VBoxGuestLib.h │ │ │ ├── VMMDev.h │ │ │ ├── VMMDev2.h │ │ │ ├── cdefs.h │ │ │ ├── err.h │ │ │ ├── hgcmsvc.h │ │ │ ├── log.h │ │ │ ├── ostypes.h │ │ │ ├── param.h │ │ │ ├── shflsvc.h │ │ │ ├── types.h │ │ │ └── version.h │ │ └── iprt │ │ │ ├── alloc.h │ │ │ ├── alloca.h │ │ │ ├── assert.h │ │ │ ├── cdefs.h │ │ │ ├── ctype.h │ │ │ ├── dir.h │ │ │ ├── err.h │ │ │ ├── file.h │ │ │ ├── fs.h │ │ │ ├── initterm.h │ │ │ ├── log.h │ │ │ ├── mem.h │ │ │ ├── param.h │ │ │ ├── path.h │ │ │ ├── stdarg.h │ │ │ ├── stdint.h │ │ │ ├── string.h │ │ │ ├── time.h │ │ │ └── types.h │ └── src │ │ └── VBox │ │ └── Runtime │ │ └── include │ │ └── internal │ │ ├── file.h │ │ ├── fs.h │ │ ├── iprt.h │ │ └── path.h ├── version.c ├── version.h ├── vm-save.c ├── vm-save.h ├── vm-savefile-simple.c ├── vm-savefile-simple.h ├── vm-savefile.h ├── vm.c ├── vm.h ├── vmstate.h ├── vnc-keymap.h ├── vram.c ├── vram.h ├── webdav.c ├── webdav.h ├── whpx │ ├── WinHvEmulation.h │ ├── WinHvGlue.h │ ├── WinHvPlatform.h │ ├── WinHvPlatformDefs.h │ ├── apic.h │ ├── atto.c │ ├── core.c │ ├── core.h │ ├── cpu.h │ ├── cpu_glue.h │ ├── emulate.c │ ├── emulate.h │ ├── hpet.c │ ├── hpet.h │ ├── hpet_emul.h │ ├── i8254.c │ ├── i8259.c │ ├── ioapic.c │ ├── ioapic.h │ ├── irq.c │ ├── list.h │ ├── loader.c │ ├── loader.h │ ├── mc146818rtc.c │ ├── mc146818rtc.h │ ├── memory.c │ ├── paging.h │ ├── util.c │ ├── util.h │ ├── v4v-proxy.c │ ├── v4v-whpx.c │ ├── v4v-whpx.h │ ├── v4v.c │ ├── v4v_alloc.h │ ├── v4v_err.h │ ├── v4v_glue.h │ ├── v4v_private.h │ ├── viridian.c │ ├── viridian.h │ ├── whpx.c │ ├── whpx.h │ ├── x86_emulate.c │ └── x86_emulate.h ├── win32-backtrace.c ├── win32-logging.c ├── win32-touch.h ├── win32.c ├── win32.h ├── xen.c ├── xen.h └── yajl.h ├── osx ├── Config.mk ├── Makefile ├── TODO ├── cow-kext │ ├── Info.plist │ ├── Makefile │ ├── copy-on-write-shared.h │ ├── copy-on-write.c │ ├── dlist.c │ ├── dlist.h │ └── util.h ├── hostconfig │ └── Makefile ├── img-tools │ ├── Makefile │ ├── Makefile.libimg │ ├── README │ ├── abstractfile.c │ ├── abstractfile.h │ ├── bfs.c │ ├── btree.c │ ├── cache.c │ ├── cache.h │ ├── catalog.c │ ├── common.h │ ├── cow-user.c │ ├── cow-user.h │ ├── cowctl.c │ ├── extents.c │ ├── fastunicodecompare.c │ ├── flatfile.c │ ├── hardlink-worker.c │ ├── hfs.c │ ├── hfs │ │ ├── hfslib.h │ │ └── hfsplus.h │ ├── hfslib.c │ ├── img-bootcode.c │ ├── img-copy.c │ ├── img-create.c │ ├── img-shallow.c │ ├── rawfile.c │ ├── shallow.c │ ├── shallow.h │ ├── sys.c │ ├── utility.c │ └── volume.c ├── include │ ├── uxen_ioctl.h │ └── uxen_xnu_errno.h ├── libvhd │ └── Makefile ├── libvncserver │ └── Makefile ├── libxc │ └── Makefile ├── panic-core │ ├── Makefile │ ├── gdb-panic │ ├── macho-edit.c │ └── panic-core.c ├── uxen.kext │ ├── Makefile │ ├── debug_kern.gdb │ ├── dom0_v4v_device.cpp │ ├── dom0_v4v_device.h │ ├── events.c │ ├── events.h │ ├── uxen-Info.plist │ ├── uxen.c │ ├── uxen.h │ ├── uxen_client.cpp │ ├── uxen_cpu.c │ ├── uxen_debug.c │ ├── uxen_debug.h │ ├── uxen_driver.cpp │ ├── uxen_driver.exports │ ├── uxen_load.c │ ├── uxen_logging.c │ ├── uxen_logging.h │ ├── uxen_mem.c │ ├── uxen_ops.c │ ├── uxen_physmap.c │ ├── uxen_pm.cpp │ ├── uxen_sys.S │ ├── uxen_time.c │ ├── version.h │ ├── xnu_symbols.c │ └── xnu_symbols.h ├── uxenconsole │ └── Makefile ├── uxenctl │ └── Makefile ├── uxendm │ └── Makefile ├── uxenv4vservice │ ├── .gitignore │ ├── Makefile │ ├── uxenv4vlib.c │ ├── uxenv4vlib.h │ ├── uxenv4vservice-Info.plist │ ├── uxenv4vservice.exports │ ├── v4v_device.cpp │ ├── v4v_device.h │ ├── v4v_ops.cpp │ ├── v4v_ops.h │ ├── v4v_service.cpp │ ├── v4v_service.h │ ├── v4v_service_shared.h │ ├── v4v_user_ring.cpp │ ├── v4v_user_ring.h │ └── v4vasynctest │ │ └── main.c ├── vhd-util │ └── Makefile ├── xenctx │ └── Makefile └── yajl │ └── Makefile ├── tools ├── Config.mk ├── Makefile ├── Makefile.make ├── Makefile.tools ├── build-all │ ├── Makefile │ ├── Makefile.gcc-deps │ ├── files │ │ ├── limits.h │ │ ├── stdint.h │ │ └── wrapper-m32 │ ├── gcc-deps.mk │ └── patches │ │ └── binutils-install-libiberty.patch ├── config.guess ├── cross-mingw │ ├── Makefile │ ├── Makefile.toolchain │ ├── files │ │ └── wrapper-m32 │ ├── gdb-texinfo.patch │ ├── patches │ │ ├── binutils-display-cv-pdb-name.patch │ │ ├── binutils-install-libiberty.patch │ │ ├── binutils-pie-entry-point.patch │ │ ├── e2fsprogs-1.42-libe2fsprogs-uuid.diff │ │ ├── e2fsprogs-1.42-mingw.diff │ │ ├── gcc-cross-mingw-include-path.patch │ │ ├── gdb-fix-remote-qOffsets.patch │ │ ├── gdbserver-argv0.patch │ │ ├── libssp-win32-random-stackguard.patch │ │ ├── mingw-w64-v2.0.8-d3d9ex.patch │ │ ├── mingw-w64-v2.0.8-libfltlib.patch │ │ ├── mingw-w64-v2.0.8-libwinhttp.patch │ │ ├── mingw-w64-v2.0.8-pdh.patch │ │ ├── zlib-configure.patch │ │ └── zlib-makefile.patch │ └── toolchain.mk ├── cross-osx │ └── Makefile ├── cross-vm │ ├── Makefile │ ├── Makefile.toolchain │ ├── files │ │ ├── limits.h │ │ └── stdint.h │ ├── patches │ │ ├── acpica-mingw.patch │ │ ├── binutils-install-libiberty.patch │ │ └── iasl-llvm-gcc-fixes.patch │ └── toolchain.mk ├── cross-w64l │ ├── Makefile │ ├── files │ │ ├── limits.h │ │ └── stdint.h │ └── patches │ │ ├── binutils-cv8.patch │ │ ├── binutils-install-libiberty.patch │ │ ├── binutils-link-pdata.patch │ │ ├── dwarfcv-linux.patch │ │ ├── dwarfcv-linux2.patch │ │ ├── dwarfcv-mingw-printf.patch │ │ └── gcc-long.patch ├── cross-windows │ ├── Makefile │ └── patches │ │ ├── cv2pdb-buildid-and-no-strip.patch │ │ ├── cv2pdb-mingw.patch │ │ ├── cv2pdb-no-bigobj.patch │ │ ├── cv2pdb-no-dll-nonfatal.patch │ │ ├── cv2pdb-nocxxstring.patch │ │ ├── cv2pdb-pdb-no-path.patch │ │ ├── cv2pdb-timestamps.patch │ │ ├── cv2pdb-windows-path-separator.patch │ │ └── wdk8-no-sal.patch ├── host-all │ ├── Makefile │ └── patches │ │ ├── binutils-install-libiberty.patch │ │ ├── binutils-macho-core.patch │ │ └── binutils-reloc-section.patch ├── host-linux │ └── Makefile ├── host-osx │ ├── Makefile │ └── patches │ │ ├── gdb-elf-debug-sections.patch │ │ ├── gdb-elf-target.patch │ │ └── gdb-macosx-nat-inferior-setjmp.patch └── host-windows │ └── Makefile ├── uxen-interface.txt ├── uxen-resources.h ├── vm-support ├── .gitignore ├── linux │ ├── .gitignore │ ├── Kbuild │ ├── Makefile │ ├── atto-agent │ │ ├── Makefile │ │ ├── atto-agent.c │ │ ├── atto-agent.h │ │ ├── headctl.c │ │ ├── keyboard.c │ │ ├── winlayouts.h │ │ └── x-resize.sh │ ├── atto-x11 │ │ ├── Makefile │ │ ├── atto-wm.c │ │ ├── queue.h │ │ ├── xf86-video-fbdev-yocto.patch │ │ └── xf86-video-fbdev │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── README │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ ├── man │ │ │ ├── Makefile │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fbdev.4 │ │ │ └── fbdev.man │ │ │ └── src │ │ │ ├── Makefile.am │ │ │ ├── compat-api.h │ │ │ └── fbdev.c │ ├── include │ │ ├── attocall_dev.h │ │ ├── uxen-hypercall.h │ │ ├── uxen-platform.h │ │ ├── uxen-util.h │ │ ├── uxen-v4vlib.h │ │ ├── uxen │ │ │ ├── Makefile │ │ │ ├── err.h │ │ │ ├── queue.h │ │ │ ├── uxen │ │ │ │ ├── kdxinfo.h │ │ │ │ ├── mapcache.h │ │ │ │ ├── memcache-dm.h │ │ │ │ ├── platform_interface.h │ │ │ │ ├── unwind-pe.h │ │ │ │ ├── uxen.h │ │ │ │ ├── uxen_desc.h │ │ │ │ ├── uxen_info.h │ │ │ │ ├── uxen_link.h │ │ │ │ ├── uxen_memcache_dm.h │ │ │ │ ├── uxen_os.h │ │ │ │ └── uxen_types.h │ │ │ ├── uxen_def.h │ │ │ ├── uxen_desc_sys.h │ │ │ ├── uxen_ioctl_def.h │ │ │ ├── uxendisp-common.h │ │ │ ├── uxenhid-common.h │ │ │ └── xen │ │ │ │ ├── COPYING │ │ │ │ ├── arch-x86 │ │ │ │ ├── cpuid.h │ │ │ │ ├── hvm │ │ │ │ │ └── save.h │ │ │ │ ├── xen-mca.h │ │ │ │ ├── xen-x86_32.h │ │ │ │ ├── xen-x86_64.h │ │ │ │ └── xen.h │ │ │ │ ├── arch-x86_32.h │ │ │ │ ├── arch-x86_64.h │ │ │ │ ├── callback.h │ │ │ │ ├── dom0_ops.h │ │ │ │ ├── domctl.h │ │ │ │ ├── elfnote.h │ │ │ │ ├── event_channel.h │ │ │ │ ├── features.h │ │ │ │ ├── grant_table.h │ │ │ │ ├── hvm │ │ │ │ ├── dmreq.h │ │ │ │ ├── e820.h │ │ │ │ ├── hvm_info_table.h │ │ │ │ ├── hvm_op.h │ │ │ │ ├── ioreq.h │ │ │ │ ├── params.h │ │ │ │ └── save.h │ │ │ │ ├── introspection-features.h │ │ │ │ ├── io │ │ │ │ ├── blkif.h │ │ │ │ ├── console.h │ │ │ │ ├── fbif.h │ │ │ │ ├── fsif.h │ │ │ │ ├── kbdif.h │ │ │ │ ├── libxenvchan.h │ │ │ │ ├── netif.h │ │ │ │ ├── pciif.h │ │ │ │ ├── protocols.h │ │ │ │ ├── ring.h │ │ │ │ ├── tpmif.h │ │ │ │ ├── usbif.h │ │ │ │ ├── vscsiif.h │ │ │ │ ├── xenbus.h │ │ │ │ └── xs_wire.h │ │ │ │ ├── kexec.h │ │ │ │ ├── memory.h │ │ │ │ ├── nmi.h │ │ │ │ ├── physdev.h │ │ │ │ ├── platform.h │ │ │ │ ├── sched.h │ │ │ │ ├── sysctl.h │ │ │ │ ├── tmem.h │ │ │ │ ├── trace.h │ │ │ │ ├── v4v.h │ │ │ │ ├── vcpu.h │ │ │ │ ├── version.h │ │ │ │ ├── xen-compat.h │ │ │ │ ├── xen.h │ │ │ │ ├── xencomm.h │ │ │ │ ├── xenoprof.h │ │ │ │ └── xsm │ │ │ │ └── flask_op.h │ │ └── uxenkbddefs.h │ ├── uxenfb │ │ ├── Kbuild │ │ ├── edid.h │ │ └── fb.c │ ├── uxenhc │ │ ├── Kbuild │ │ ├── hypercall.c │ │ └── hypercall.h │ ├── uxenhid │ │ ├── Kbuild │ │ └── v4v-hid.c │ ├── uxenkbd │ │ ├── Kbuild │ │ └── kbd.c │ ├── uxennet │ │ ├── Kbuild │ │ └── net.c │ ├── uxenplatform │ │ ├── Kbuild │ │ ├── attovm.c │ │ ├── attovm.h │ │ ├── pci.c │ │ ├── pci.h │ │ ├── platform.c │ │ └── platform.h │ ├── uxenstor │ │ ├── Kbuild │ │ └── stor.c │ ├── uxenv4vlib │ │ ├── Kbuild │ │ ├── acpi.c │ │ ├── acpi.h │ │ ├── ax.c │ │ ├── ax.h │ │ └── v4v.c │ ├── v4vchar │ │ ├── Kbuild │ │ ├── v4v_char.c │ │ ├── v4v_char.h │ │ ├── v4v_char_device.c │ │ ├── v4v_char_device.h │ │ ├── v4v_char_msg_queue.c │ │ ├── v4v_char_msg_queue.h │ │ ├── v4v_char_msgdefs.h │ │ ├── v4v_char_v4v.c │ │ └── v4v_char_v4v.h │ ├── v4vtest │ │ └── test.c │ ├── v4vvsock │ │ ├── Kbuild │ │ └── v4v_vsock.c │ └── vmdiagnostics │ │ ├── Kbuild │ │ ├── vm_diagnostics.c │ │ └── vm_diagnostics_msgdefs.h ├── osx │ ├── Config.mk │ ├── Makefile │ ├── uxendisp │ │ ├── Makefile │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── uXenDispCtl.cpp │ │ ├── uXenDispCtl.h │ │ ├── uXenDispFB.cpp │ │ ├── uXenDispFB.h │ │ ├── uxendisp-Info.plist │ │ ├── uxendisp-Prefix.pch │ │ └── uxendisp.xcodeproj │ │ │ └── project.pbxproj │ ├── uxennet │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── uxennet.cpp │ │ ├── uxennet.h │ │ └── uxennet.xcodeproj │ │ │ └── project.pbxproj │ ├── uxenplatform │ │ ├── Makefile │ │ ├── balloon.cpp │ │ ├── balloon.h │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── uXenPlatform.cpp │ │ ├── uXenPlatform.h │ │ ├── uXenPlatformClient.cpp │ │ ├── uXenPlatformClient.h │ │ ├── uXenPlatformDevice.cpp │ │ ├── uXenPlatformDevice.h │ │ ├── uxenplatform-Info.plist │ │ ├── uxenplatform-Prefix.pch │ │ ├── uxenplatform.exp │ │ ├── uxenplatform.xcodeproj │ │ │ └── project.pbxproj │ │ ├── uxenplatform_local.h │ │ └── uxenplatform_public.h │ ├── uxenps2 │ │ ├── Makefile │ │ ├── uXenPS2Controller.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── uXenPS2Controller.xcscheme │ │ │ │ ├── uXenPS2Keyboard.xcscheme │ │ │ │ └── uXenPS2Mouse.xcscheme │ │ ├── uXenPS2Controller │ │ │ ├── AppleACPIPS2Nub.cpp │ │ │ ├── AppleACPIPS2Nub.h │ │ │ ├── ApplePS2Device.h │ │ │ ├── ApplePS2KeyboardDevice.cpp │ │ │ ├── ApplePS2KeyboardDevice.h │ │ │ ├── ApplePS2MouseDevice.cpp │ │ │ ├── ApplePS2MouseDevice.h │ │ │ ├── IOSyncer.h │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── uXenPS2Controller-Info.plist │ │ │ ├── uXenPS2Controller-Prefix.pch │ │ │ ├── uXenPS2Controller.cpp │ │ │ └── uXenPS2Controller.h │ │ ├── uXenPS2Keyboard │ │ │ ├── ApplePS2ToADBMap.h │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── uXenPS2Keyboard-Info.plist │ │ │ ├── uXenPS2Keyboard-Prefix.pch │ │ │ ├── uXenPS2Keyboard.cpp │ │ │ └── uXenPS2Keyboard.h │ │ └── uXenPS2Mouse │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── uXenPS2Mouse-Info.plist │ │ │ ├── uXenPS2Mouse-Prefix.pch │ │ │ ├── uXenPS2Mouse.cpp │ │ │ └── uXenPS2Mouse.h │ ├── uxenstor │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── uxenstor.cpp │ │ ├── uxenstor.h │ │ └── uxenstor.xcodeproj │ │ │ └── project.pbxproj │ ├── uxenv4vguest │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── guest_v4v_device.cpp │ │ ├── guest_v4v_device.h │ │ └── uxenv4vguestdevice.xcodeproj │ │ │ └── project.pbxproj │ └── uxenvmlib │ │ ├── Info.plist │ │ ├── Makefile │ │ ├── hypercall.S │ │ ├── hypercall.h │ │ ├── uxen_hypercall.cpp │ │ ├── uxen_hypercall.h │ │ ├── uxenvmlib.exp │ │ └── uxenvmlib.xcodeproj │ │ └── project.pbxproj └── windows │ ├── Config.mk │ ├── Makefile │ ├── common │ ├── compiler.h │ ├── debug-user.h │ ├── debug.h │ ├── defroute.c │ ├── defroute.h │ ├── hid_interface.h │ ├── makefile.inc │ ├── sources.inc │ ├── uxencommon.rc │ ├── uxenvmlib.h │ └── version.h │ ├── elevate │ ├── Makefile │ └── elevate.c │ ├── installer │ ├── Makefile │ └── installer.wxs │ ├── uxenaudio │ ├── GNUmakefile │ ├── adapter.cpp │ ├── basedma.cpp │ ├── basetopo.cpp │ ├── basetopo.h │ ├── basewave.cpp │ ├── basewave.h │ ├── common.cpp │ ├── common.h │ ├── debug.h │ ├── hw.cpp │ ├── hw.h │ ├── install.bat │ ├── kshelper.cpp │ ├── kshelper.h │ ├── makefile.inc │ ├── mintopo.cpp │ ├── mintopo.h │ ├── minwave.cpp │ ├── minwave.h │ ├── simple.h │ ├── sources │ ├── toptable.h │ ├── uxaud_hw.h │ ├── uxenaudio.h │ ├── uxenaudio.inx │ ├── uxenaudio.rc │ ├── voice.cpp │ ├── voice.h │ └── wavtable.h │ ├── uxenclipboard │ ├── Makefile │ ├── README.txt │ ├── RTErrConvertFromWin32.c │ ├── VBoxClipboard.c │ ├── VBoxClipboardExt.h │ ├── VBoxClipboardSvc.h │ ├── VBoxGuestR3LibClipboard.c │ ├── VBoxTray.h │ ├── channel.c │ ├── channel.h │ ├── clipboard-protocol.c │ ├── clipboardformats.c │ ├── clipboardformats.h │ ├── defroute.c │ ├── hdrop.h │ ├── hgcm-simple.c │ ├── hgcmcall.c │ ├── openclipboardretry.h │ ├── proto.h │ ├── rt.c │ ├── uxen_bmp_convert.c │ └── uxen_bmp_convert.h │ ├── uxendisp │ ├── wddm │ │ ├── GNUmakefile │ │ ├── dirs │ │ ├── display │ │ │ ├── makefile.inc │ │ │ ├── sources │ │ │ ├── uxend3d.c │ │ │ ├── uxend3d.def │ │ │ └── uxend3d.rc │ │ └── miniport │ │ │ ├── ddi.c │ │ │ ├── dirty_rect.c │ │ │ ├── dirty_rect.h │ │ │ ├── install.bat │ │ │ ├── makefile.inc │ │ │ ├── sources │ │ │ ├── uxendisp.c │ │ │ ├── uxendisp.h │ │ │ ├── uxendisp.inx │ │ │ ├── uxendisp.rc │ │ │ └── vidpn.c │ └── xddm │ │ ├── GNUmakefile │ │ ├── dirs │ │ ├── display │ │ ├── debug.c │ │ ├── debug.h │ │ ├── driver.h │ │ ├── enable.c │ │ ├── makefile.inc │ │ ├── palette.c │ │ ├── perfcnt.c │ │ ├── perfcnt.h │ │ ├── perfcnt_defs.h │ │ ├── pointer.c │ │ ├── screen.c │ │ ├── sources │ │ ├── uxendisp.py │ │ └── uxendisp.rc │ │ ├── include │ │ ├── uxendisp_esc.h │ │ └── uxendisp_ioctl.h │ │ └── miniport │ │ ├── dirty_rect.c │ │ ├── dirty_rect.h │ │ ├── hw.c │ │ ├── hw.h │ │ ├── install.bat │ │ ├── makefile.inc │ │ ├── sources │ │ ├── uxendisp.c │ │ ├── uxendisp.h │ │ ├── uxendisp.inx │ │ ├── uxendisp.rc │ │ └── vga.h │ ├── uxendmpdrv │ ├── GNUmakefile │ ├── dmpdrv.cpp │ ├── dmpdrv.rc │ ├── install.bat │ ├── makefile.inc │ ├── sources │ └── uxendmpdrv.inx │ ├── uxenevent │ ├── Makefile │ ├── d3dkmthk_x.h │ ├── defroute.c │ ├── display.c │ ├── display.h │ ├── input.c │ ├── input.h │ ├── perf_counters.c │ ├── perf_counters.h │ ├── process.c │ ├── process.h │ ├── touch-defs.h │ ├── uxenevent-res.rc │ ├── uxenevent.c │ ├── uxenevent.h │ ├── uxenevent.manifest │ ├── window.c │ └── window.h │ ├── uxenh264 │ ├── CAutoLock.h │ ├── GNUmakefile │ ├── dllmain.cpp │ ├── uxenh264.cpp │ ├── uxenh264.def │ ├── uxenh264.h │ ├── uxenh264.vcxproj │ ├── uxenh264_IMFTransform_Impl.cpp │ └── uxenh264_IUnknown_Impl.cpp │ ├── uxenhid │ ├── GNUmakefile │ ├── hid.c │ ├── makefile.inc │ ├── sources │ ├── stdint.h │ ├── uxenhid.c │ ├── uxenhid.h │ ├── uxenhid.inx │ └── uxenhid.rc │ ├── uxenkmdod │ ├── GNUmakefile │ ├── bdd.cxx │ ├── bdd.hxx │ ├── bdd_ddi.cxx │ ├── bdd_dmm.cxx │ ├── bdd_util.cxx │ ├── bltfuncs.cxx │ ├── blthw.cxx │ ├── dirty_rect.cxx │ ├── dirty_rect.h │ ├── hw.cxx │ ├── hw.h │ ├── makefile.inc │ ├── perfcnt.cxx │ ├── perfcnt.h │ ├── perfcnt_defs.h │ ├── sources │ ├── user_vram.cxx │ ├── user_vram.h │ ├── uxenkmdod.inx │ └── uxenkmdod.rc │ ├── uxenmouse │ ├── GNUmakefile │ ├── install.bat │ ├── makefile.inc │ ├── sources │ ├── uxenmouse.c │ ├── uxenmouse.h │ ├── uxenmouse.inx │ └── uxenmouse.rc │ ├── uxennet │ ├── GNUmakefile │ ├── init.c │ ├── install.bat │ ├── ioctl.c │ ├── makefile.inc │ ├── miniport.c │ ├── miniport.h │ ├── netvmini.rc │ ├── platform.c │ ├── prototypes.h │ ├── public.h │ ├── recv.c │ ├── request.c │ ├── send.c │ ├── sources │ ├── uxen_net.c │ ├── uxennet.inx │ └── uxennet_private.h │ ├── uxennullnet │ ├── GNUmakefile │ ├── adapter.c │ ├── adapter.h │ ├── ctrlpath.c │ ├── ctrlpath.h │ ├── datapath.c │ ├── datapath.h │ ├── hardware.h │ ├── install.bat │ ├── makefile.inc │ ├── miniport.c │ ├── miniport.h │ ├── mphal.c │ ├── mphal.h │ ├── platform.c │ ├── qos1.c │ ├── qos1.h │ ├── sources │ ├── tcbrcb.c │ ├── tcbrcb.h │ ├── uxennullnet.h │ ├── uxennullnet.inx │ ├── uxennullnet.rc │ ├── vmq.c │ └── vmq.h │ ├── uxenpatcher │ ├── Makefile │ └── patcher.c │ ├── uxenplatform │ ├── GNUmakefile │ ├── amd64 │ │ └── bus_config.asm │ ├── balloon.c │ ├── balloon.h │ ├── bus.c │ ├── bus.h │ ├── i386 │ │ └── bus_config.asm │ ├── install.bat │ ├── makefile.inc │ ├── platform.c │ ├── platform.h │ ├── platform_public.h │ ├── sources │ ├── uxenplatform.inx │ ├── uxenplatform.rc │ ├── zp.c │ └── zp.h │ ├── uxensf │ ├── GNUmakefile │ ├── dirs │ ├── dll │ │ ├── Makefile.kmk │ │ ├── defroute.c │ │ ├── makefile.inc │ │ ├── sources │ │ ├── vboxmrxnp.cpp │ │ ├── vboxmrxnp.def │ │ ├── vboxmrxnp.rc │ │ └── vboxrt.c │ └── driver │ │ ├── VBoxGuestR0LibSharedFolders.c │ │ ├── VBoxGuestR0LibSharedFolders.h │ │ ├── VBoxSF.rc │ │ ├── channel.h │ │ ├── dbghlp.h │ │ ├── file.c │ │ ├── generate.sh │ │ ├── hgcm-limits.h │ │ ├── hgcm-simple.c │ │ ├── hgcm-simple.h │ │ ├── hgcmcall.c │ │ ├── info.c │ │ ├── install.bat │ │ ├── intrin.h │ │ ├── makefile.inc │ │ ├── net.c │ │ ├── path.c │ │ ├── product-generated.h │ │ ├── revision-generated.h │ │ ├── sources │ │ ├── uxensf.inx │ │ ├── v4v-channel.c │ │ ├── vbox-unused.c │ │ ├── vboxsf.ini │ │ ├── vbsf.c │ │ ├── vbsf.h │ │ ├── vbsfhlp.c │ │ ├── vbsfhlp.h │ │ ├── vbsfshared.h │ │ ├── version-generated.h │ │ ├── wskglue.c │ │ └── wskglue.h │ ├── uxenstor │ ├── GNUmakefile │ ├── diag.c │ ├── makefile.inc │ ├── perfcnt.c │ ├── perfcnt.h │ ├── perfcnt_defs.h │ ├── readwrite.c │ ├── smbios.c │ ├── smbios.h │ ├── sources │ ├── trace.c │ ├── uxenstor.c │ ├── uxenstor.h │ ├── uxenstor.inx │ ├── uxenstor.py │ ├── uxenstor.rc │ └── wdk8_wdm_excerpt.h │ ├── uxenstorflt │ ├── GNUmakefile │ ├── diag.c │ ├── makefile.inc │ ├── smbios.c │ ├── smbios.h │ ├── sources │ ├── storflt.c │ ├── storflt.h │ ├── uxenstorflt.inx │ └── uxenstorflt.rc │ ├── uxensvc │ ├── Makefile │ ├── msg.mc │ ├── platform.c │ ├── platform.h │ ├── session.c │ ├── session.h │ └── uxensvc.c │ ├── uxenv4vguest │ ├── GNUmakefile │ ├── hardware.c │ ├── install.bat │ ├── interrupt.c │ ├── makefile.inc │ ├── plumbing.c │ ├── power.c │ ├── prototypes.h │ ├── sources │ ├── uxenv4vguest.c │ ├── uxenv4vguest.inx │ ├── uxenv4vguest.rc │ └── uxenv4vguest_private.h │ ├── uxenv4vlib │ └── GNUmakefile │ ├── uxenvmlib │ ├── GNUmakefile │ ├── amd64 │ │ └── uxen_hypercall_sup.asm │ ├── i386 │ │ └── uxen_hypercall_sup.asm │ ├── main.c │ ├── makefile.inc │ ├── shared_data.c │ ├── sources │ ├── uxen_hypercall.c │ ├── uxen_hypercall.h │ ├── uxen_hypercall_sup.h │ ├── uxen_state.c │ ├── uxen_state.h │ ├── uxen_types.h │ ├── uxen_util.c │ ├── uxen_util.h │ ├── uxenvmlib.def │ └── uxenvmlib.rc │ └── uxenzeroshare │ ├── GNUmakefile │ ├── dirs │ ├── libinternals │ ├── dirs │ ├── internals.c │ ├── internals.h │ ├── sources.inc │ ├── sys │ │ └── sources │ └── usr │ │ └── sources │ ├── makefile.inc │ ├── sources.inc │ ├── uxenzeroshare.h │ ├── uxenzeroshare │ ├── makefile.inc │ ├── sources │ ├── uxenzeroshare.c │ ├── uxenzeroshare.inx │ ├── zerothread.c │ └── zerothread.h │ └── uxenzeroshareconsole │ ├── makefile.inc │ ├── sources │ └── uxenzeroshareconsole.c ├── windows ├── Config.mk ├── Makefile ├── attoimg │ └── Makefile ├── backtrace │ ├── LICENSE │ ├── Makefile │ ├── SOURCE │ ├── backtrace.c │ ├── monitor.c │ ├── monitor.h │ ├── pecoff-internal.h │ └── test.c ├── build │ ├── Makefile │ ├── uXenDevCert.cer │ └── uXenDevCert.pfx ├── filecrypt │ └── Makefile ├── gdb │ ├── Makefile │ └── patches │ │ └── gdbserver-argv0.patch ├── hostconfig │ └── Makefile ├── img-tools │ ├── Makefile │ ├── Makefile.libimg │ ├── bcd.c │ ├── bcd.h │ ├── cache.c │ ├── cache.h │ ├── compat.h │ ├── disklib-internal.h │ ├── disklib.c │ ├── disklib.h │ ├── fileset.c │ ├── fileset.h │ ├── fnmatch.c │ ├── fnmatch.h │ ├── fnmatch_loop.c │ ├── fs-ntfs.c │ ├── fs-ntfs.h │ ├── glob.c │ ├── glob.h │ ├── hexdump.c │ ├── img-bcdedit.c │ ├── img-convert.c │ ├── img-logiccp.c │ ├── img-ntfscat.c │ ├── img-ntfscp.c │ ├── img-ntfsfix.c │ ├── img-ntfsls.c │ ├── img-ntfsplant.c │ ├── img-ntfsrm.c │ ├── imgtool-res.rc │ ├── machimg.c │ ├── machimg.h │ ├── ntdev.c │ ├── ntdev.h │ ├── ntfs-extras.c │ ├── ntfsfix.c │ ├── ntreg.c │ ├── ntreg.h │ ├── part.c │ ├── partition.h │ ├── queue.h │ ├── reghive.h │ ├── sha1.c │ ├── sha1.h │ ├── sys.c │ ├── sys.h │ ├── util.c │ ├── vbox-compat.h │ ├── vd.c │ ├── vd.h │ └── winbase-compat.h ├── include │ ├── Makefile │ └── uxen_ioctl.h ├── kdd │ └── Makefile ├── kdx │ ├── GNUmakefile │ ├── domain.cpp │ ├── dumplog.cpp │ ├── hdb.cpp │ ├── hostpages.cpp │ ├── kdx.h │ ├── kdxinfo.cpp │ ├── kdxinfo.h │ ├── makefile │ ├── sources │ ├── uxen_defs.h │ ├── uxen_types.h │ ├── uxenkdx.cpp │ ├── uxenkdx.def │ ├── uxenkdx.rc │ └── version.h ├── libvhd │ └── Makefile ├── libxc │ └── Makefile ├── ntfs-3g │ ├── Makefile │ ├── Makefile.ntfs-3g │ └── ntfs-3g │ │ ├── .gitattributes │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── COPYING.LIB │ │ ├── CREDITS │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── TODO.ntfsprogs │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── compile │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── include │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fuse-lite │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── fuse.h │ │ │ ├── fuse_common.h │ │ │ ├── fuse_kernel.h │ │ │ ├── fuse_lowlevel.h │ │ │ ├── fuse_lowlevel_compat.h │ │ │ └── fuse_opt.h │ │ └── ntfs-3g │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── acls.h │ │ │ ├── attrib.h │ │ │ ├── attrlist.h │ │ │ ├── bitmap.h │ │ │ ├── bootsect.h │ │ │ ├── cache.h │ │ │ ├── collate.h │ │ │ ├── compat.h │ │ │ ├── compress.h │ │ │ ├── debug.h │ │ │ ├── device.h │ │ │ ├── device_io.h │ │ │ ├── dir.h │ │ │ ├── efs.h │ │ │ ├── endians.h │ │ │ ├── index.h │ │ │ ├── inode.h │ │ │ ├── layout.h │ │ │ ├── lcnalloc.h │ │ │ ├── logfile.h │ │ │ ├── logging.h │ │ │ ├── mft.h │ │ │ ├── misc.h │ │ │ ├── mst.h │ │ │ ├── ntfstime.h │ │ │ ├── object_id.h │ │ │ ├── param.h │ │ │ ├── reparse.h │ │ │ ├── runlist.h │ │ │ ├── security.h │ │ │ ├── support.h │ │ │ ├── types.h │ │ │ ├── unistr.h │ │ │ ├── volume.h │ │ │ └── xattrs.h │ │ ├── install-sh │ │ ├── libfuse-lite │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── fuse.c │ │ ├── fuse_i.h │ │ ├── fuse_kern_chan.c │ │ ├── fuse_loop.c │ │ ├── fuse_lowlevel.c │ │ ├── fuse_misc.h │ │ ├── fuse_opt.c │ │ ├── fuse_session.c │ │ ├── fuse_signals.c │ │ ├── fusermount.c │ │ ├── helper.c │ │ ├── mount.c │ │ ├── mount_util.c │ │ └── mount_util.h │ │ ├── libntfs-3g │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── acls.c │ │ ├── attrib.c │ │ ├── attrlist.c │ │ ├── bitmap.c │ │ ├── bootsect.c │ │ ├── cache.c │ │ ├── collate.c │ │ ├── compat.c │ │ ├── compress.c │ │ ├── debug.c │ │ ├── device.c │ │ ├── dir.c │ │ ├── efs.c │ │ ├── index.c │ │ ├── inode.c │ │ ├── lcnalloc.c │ │ ├── libntfs-3g.pc.in │ │ ├── libntfs-3g.script.so.in │ │ ├── logfile.c │ │ ├── logging.c │ │ ├── mft.c │ │ ├── misc.c │ │ ├── mst.c │ │ ├── object_id.c │ │ ├── reparse.c │ │ ├── runlist.c │ │ ├── security.c │ │ ├── unistr.c │ │ ├── unix_io.c │ │ ├── volume.c │ │ ├── win32_io.c │ │ └── xattrs.c │ │ ├── ltmain.sh │ │ ├── m4 │ │ └── .keep │ │ ├── missing │ │ ├── ntfsprogs │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── attrdef.c │ │ ├── attrdef.h │ │ ├── boot.c │ │ ├── boot.h │ │ ├── cluster.c │ │ ├── cluster.h │ │ ├── list.h │ │ ├── mkntfs.8.in │ │ ├── mkntfs.c │ │ ├── ntfscat.8.in │ │ ├── ntfscat.c │ │ ├── ntfscat.h │ │ ├── ntfsck.c │ │ ├── ntfsclone.8.in │ │ ├── ntfsclone.c │ │ ├── ntfscluster.8.in │ │ ├── ntfscluster.c │ │ ├── ntfscluster.h │ │ ├── ntfscmp.8.in │ │ ├── ntfscmp.c │ │ ├── ntfscp.8.in │ │ ├── ntfscp.c │ │ ├── ntfsdecrypt.c │ │ ├── ntfsdump_logfile.c │ │ ├── ntfsfix.8.in │ │ ├── ntfsfix.c │ │ ├── ntfsinfo.8.in │ │ ├── ntfsinfo.c │ │ ├── ntfslabel.8.in │ │ ├── ntfslabel.c │ │ ├── ntfsls.8.in │ │ ├── ntfsls.c │ │ ├── ntfsmftalloc.c │ │ ├── ntfsmove.c │ │ ├── ntfsmove.h │ │ ├── ntfsprogs.8.in │ │ ├── ntfsresize.8.in │ │ ├── ntfsresize.c │ │ ├── ntfstruncate.c │ │ ├── ntfsundelete.8.in │ │ ├── ntfsundelete.c │ │ ├── ntfsundelete.h │ │ ├── ntfswipe.c │ │ ├── ntfswipe.h │ │ ├── sd.c │ │ ├── sd.h │ │ ├── utils.c │ │ └── utils.h │ │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lowntfs-3g.c │ │ ├── ntfs-3g.8.in │ │ ├── ntfs-3g.c │ │ ├── ntfs-3g.probe.8.in │ │ ├── ntfs-3g.probe.c │ │ ├── ntfs-3g.secaudit.8.in │ │ ├── ntfs-3g.usermap.8.in │ │ ├── ntfs-3g_common.c │ │ ├── ntfs-3g_common.h │ │ ├── secaudit.c │ │ ├── secaudit.h │ │ └── usermap.c ├── uxen.sys │ ├── Makefile │ ├── amd64 │ │ ├── uxen_debug_sup.asm │ │ └── uxen_sys.asm │ ├── i386 │ │ └── uxen_sys.asm │ ├── pagemap.c │ ├── pagemap.h │ ├── pvi.c │ ├── rbtree.c │ ├── uxen.c │ ├── uxen.h │ ├── uxen.inf │ ├── uxen.rc │ ├── uxen_call.c │ ├── uxen_cpu.c │ ├── uxen_debug.c │ ├── uxen_debug.h │ ├── uxen_hiber.c │ ├── uxen_ioctl.c │ ├── uxen_load.c │ ├── uxen_logging.c │ ├── uxen_logging.h │ ├── uxen_mem.c │ ├── uxen_ops.c │ ├── uxen_stackwalk.c │ ├── v4v.c │ └── version.h ├── uxenconsole │ └── Makefile ├── uxenctl │ └── Makefile ├── uxendm │ ├── Makefile │ └── config.json ├── uxendmctl │ ├── Makefile │ └── uxendmctl.c ├── uxenh264 │ ├── GNUmakefile │ ├── debug-user.h │ ├── uxenh264.cpp │ ├── uxenh264.vcxproj │ ├── uxenh264d3d.cpp │ └── uxenh264d3d.h ├── uxenv4vlib │ ├── Makefile │ ├── alloc.c │ ├── alloc.h │ ├── amd64 │ │ └── ax_hypercall_sup.asm │ ├── export.c │ ├── gh_create.c │ ├── gh_csq.c │ ├── gh_hypercall.c │ ├── gh_ioctl.c │ ├── gh_ring.c │ ├── gh_rw.c │ ├── gh_v4vapi.h │ ├── gh_v4vkapi.h │ ├── gh_xenv4v.c │ ├── gh_xenv4v.h │ ├── hook.c │ ├── hypercall.c │ ├── i386 │ │ └── ax_hypercall_sup.asm │ ├── log.h │ ├── main.c │ ├── notify.c │ ├── pde.c │ ├── plumbing.c │ ├── prototypes.h │ ├── resume.c │ ├── ring.c │ ├── shared.c │ ├── uxenv4v.py │ ├── uxenv4vlib.def │ ├── uxenv4vlib.h │ ├── uxenv4vlib.rc │ ├── uxenv4vlib_private.h │ └── version.h ├── uxenv4vproxy │ ├── Makefile │ ├── csq.c │ ├── hook.c │ ├── log.h │ ├── proxy.c │ ├── proxy.h │ ├── proxy_api.h │ ├── proxy_lib.h │ ├── uxenv4vproxy.def │ ├── uxenv4vproxy.inf │ ├── uxenv4vproxy.rc │ └── version.h ├── v4vtest │ └── Makefile ├── vhd-util │ └── Makefile ├── xenctx │ └── Makefile └── yajl │ └── Makefile └── xen ├── .gitignore ├── COPYING.xen ├── Config.mk ├── Makefile ├── arch └── x86 │ ├── acpi │ ├── boot.c │ ├── cpu_idle.c │ ├── cpufreq │ │ ├── cpufreq.c │ │ └── powernow.c │ ├── cpuidle_menu.c │ ├── lib.c │ ├── power.c │ ├── suspend.c │ └── wakeup_prot.S │ ├── apic.c │ ├── bitops.c │ ├── clear_page.S │ ├── copy_page.S │ ├── cpu │ ├── amd.c │ ├── common.c │ ├── cpu.h │ ├── intel.c │ ├── intel_cacheinfo.c │ ├── mcheck │ │ ├── amd_f10.c │ │ ├── amd_k8.c │ │ ├── amd_nonfatal.c │ │ ├── k7.c │ │ ├── mce-apei.c │ │ ├── mce.c │ │ ├── mce.h │ │ ├── mce_amd_quirks.c │ │ ├── mce_intel.c │ │ ├── mce_quirks.h │ │ ├── mctelem.c │ │ ├── mctelem.h │ │ ├── non-fatal.c │ │ ├── vmce.c │ │ └── x86_mca.h │ └── mtrr │ │ ├── amd.c │ │ ├── cyrix.c │ │ ├── generic.c │ │ ├── main.c │ │ ├── mtrr.h │ │ └── state.c │ ├── debug.c │ ├── delay.c │ ├── dmi_scan.c │ ├── domain.c │ ├── domain_build.c │ ├── domctl.c │ ├── e820.c │ ├── extable.c │ ├── flushtlb.c │ ├── gdbstub.c │ ├── hpet.c │ ├── hvm │ ├── asid.c │ ├── attovm.c │ ├── ax.c │ ├── ax_private.h │ ├── ax_pv_vmcs.S │ ├── debug_port.c │ ├── emulate.c │ ├── hpet.c │ ├── hvm.c │ ├── i8254.c │ ├── intercept.c │ ├── io.c │ ├── irq.c │ ├── mtrr.c │ ├── nestedhvm.c │ ├── pci_emul.c │ ├── pmtimer.c │ ├── pvnested-asm.S │ ├── pvnested.c │ ├── quirks.c │ ├── rtc.c │ ├── save.c │ ├── svm │ │ ├── asid.c │ │ ├── emulate.c │ │ ├── entry.S │ │ ├── intr.c │ │ ├── nestedsvm.c │ │ ├── svm.c │ │ ├── svmdebug.c │ │ ├── vmcb.c │ │ └── vpmu.c │ ├── vioapic.c │ ├── viridian.c │ ├── vlapic.c │ ├── vmsi.c │ ├── vmx │ │ ├── entry.S │ │ ├── intr.c │ │ ├── realmode.c │ │ ├── vmcs.c │ │ ├── vmx.c │ │ ├── vpmu_core2.c │ │ └── vvmx.c │ ├── vpic.c │ ├── vpmu.c │ ├── vpt.c │ └── xen_pv.c │ ├── i387.c │ ├── i8259.c │ ├── io_apic.c │ ├── ioport_emulate.c │ ├── microcode.c │ ├── microcode_amd.c │ ├── microcode_intel.c │ ├── mm.c │ ├── mm │ ├── guest_walk.c │ ├── hap │ │ ├── guest_walk.c │ │ ├── hap.c │ │ ├── nested_hap.c │ │ └── private.h │ ├── mm-locks.h │ ├── p2m-ept.c │ ├── p2m-pod.c │ ├── p2m-pt.c │ ├── p2m.c │ └── paging.c │ ├── mpparse.c │ ├── msi.c │ ├── nmi.c │ ├── numa.c │ ├── pci.c │ ├── percpu.c │ ├── physdev.c │ ├── platform_hypercall.c │ ├── poke.c │ ├── setup.c │ ├── shutdown.c │ ├── smp.c │ ├── smpboot.c │ ├── srat.c │ ├── string.c │ ├── sysctl.c │ ├── tboot.c │ ├── time.c │ ├── trace.c │ ├── traps.c │ ├── usercopy.c │ ├── x86_32 │ ├── asm-offsets.c │ ├── domain_page.c │ ├── entry.S │ ├── gdbstub.c │ ├── gpr_switch.S │ ├── machine_kexec.c │ ├── mm.c │ ├── pci.c │ ├── seg_fixup.c │ ├── supervisor_mode_kernel.S │ └── traps.c │ ├── x86_64 │ ├── acpi_mmcfg.c │ ├── asm-offsets.c │ ├── cpu_idle.c │ ├── cpufreq.c │ ├── domain.c │ ├── entry.S │ ├── gdbstub.c │ ├── gpr_switch.S │ ├── machine_kexec.c │ ├── mm.c │ ├── mmconf-fam10h.c │ ├── mmconfig-shared.c │ ├── mmconfig.h │ ├── mmconfig_64.c │ ├── pci.c │ ├── physdev.c │ ├── platform_hypercall.c │ └── traps.c │ ├── x86_emulate.c │ ├── x86_emulate │ ├── perfc_x86.h │ ├── x86_emulate.c │ └── x86_emulate.h │ ├── xen.lds.S │ └── xstate.c ├── common ├── attovm.c ├── bitmap.c ├── cpu.c ├── cpupool.c ├── domain.c ├── domctl.c ├── event_channel.c ├── gdbstub.c ├── hvm │ └── save.c ├── kernel.c ├── keyhandler.c ├── lib.c ├── libelf │ ├── libelf-dominfo.c │ ├── libelf-loader.c │ ├── libelf-private.h │ ├── libelf-relocate.c │ └── libelf-tools.c ├── memory.c ├── notifier.c ├── page_alloc.c ├── page_store.c ├── pci_test.c ├── perfc.c ├── radix-tree.c ├── rangeset.c ├── rcupdate.c ├── sched_host.c ├── schedule.c ├── softirq.c ├── sort.c ├── spinlock.c ├── string.c ├── symbols-dummy.c ├── symbols.c ├── sysctl.c ├── tasklet.c ├── time.c ├── timer.c ├── trace.c ├── v4v.c ├── version.c ├── vsprintf.c ├── xenoprof.c └── xmalloc_tlsf.c ├── crypto ├── Makefile ├── rijndael.c └── vmac.c ├── drivers ├── acpi │ ├── apei │ │ ├── apei-base.c │ │ ├── apei-internal.h │ │ ├── apei-io.c │ │ └── erst.c │ ├── hwregs.c │ ├── numa.c │ ├── osl.c │ ├── pmstat.c │ ├── reboot.c │ ├── tables.c │ ├── tables │ │ ├── tbfadt.c │ │ ├── tbinstal.c │ │ ├── tbutils.c │ │ ├── tbxface.c │ │ └── tbxfroot.c │ └── utilities │ │ ├── utglobal.c │ │ └── utmisc.c ├── char │ ├── console.c │ ├── ns16550.c │ └── serial.c ├── cpufreq │ ├── cpufreq.c │ ├── cpufreq_misc_governors.c │ ├── cpufreq_ondemand.c │ └── utility.c ├── passthrough │ ├── amd │ │ ├── iommu_acpi.c │ │ ├── iommu_detect.c │ │ ├── iommu_init.c │ │ ├── iommu_intr.c │ │ ├── iommu_map.c │ │ └── pci_amd_iommu.c │ ├── ats.h │ ├── io.c │ ├── iommu.c │ ├── pci.c │ ├── vtd │ │ ├── dmar.c │ │ ├── dmar.h │ │ ├── extern.h │ │ ├── intremap.c │ │ ├── iommu.c │ │ ├── iommu.h │ │ ├── qinval.c │ │ ├── quirks.c │ │ ├── utils.c │ │ ├── vtd.h │ │ └── x86 │ │ │ ├── ats.c │ │ │ └── vtd.c │ └── x86 │ │ └── ats.c ├── pci │ └── pci.c └── video │ ├── font.h │ ├── font_8x14.c │ ├── font_8x16.c │ ├── font_8x8.c │ ├── vesa.c │ └── vga.c ├── include ├── acpi │ ├── acconfig.h │ ├── acexcep.h │ ├── acglobal.h │ ├── achware.h │ ├── aclocal.h │ ├── acmacros.h │ ├── acnames.h │ ├── acoutput.h │ ├── acpi.h │ ├── acpiosxf.h │ ├── acpixf.h │ ├── actables.h │ ├── actbl.h │ ├── actbl1.h │ ├── actypes.h │ ├── acutils.h │ ├── apei.h │ ├── cpufreq │ │ ├── cpufreq.h │ │ └── processor_perf.h │ ├── pdc_intel.h │ └── platform │ │ ├── acenv.h │ │ ├── acgcc.h │ │ └── aclinux.h ├── asm-x86 │ ├── acpi.h │ ├── amd-iommu.h │ ├── amd.h │ ├── apic.h │ ├── apicdef.h │ ├── asm_defns.h │ ├── atomic.h │ ├── bitops.h │ ├── bug.h │ ├── byteorder.h │ ├── bzimage.h │ ├── cache.h │ ├── config.h │ ├── cpufeature.h │ ├── current.h │ ├── debugger.h │ ├── debugreg.h │ ├── delay.h │ ├── desc.h │ ├── div64.h │ ├── domain.h │ ├── e820.h │ ├── edd.h │ ├── efibind.h │ ├── elf.h │ ├── event.h │ ├── fixmap.h │ ├── flushtlb.h │ ├── genapic.h │ ├── grant_table.h │ ├── guest_access.h │ ├── guest_pt.h │ ├── hap.h │ ├── hardirq.h │ ├── hpet.h │ ├── hvm │ │ ├── asid.h │ │ ├── attovm.h │ │ ├── ax.h │ │ ├── cacheattr.h │ │ ├── domain.h │ │ ├── emulate.h │ │ ├── guest_access.h │ │ ├── hvm.h │ │ ├── io.h │ │ ├── iommu.h │ │ ├── irq.h │ │ ├── nestedhvm.h │ │ ├── pv.h │ │ ├── pvnested.h │ │ ├── rtc.h │ │ ├── support.h │ │ ├── svm │ │ │ ├── amd-iommu-acpi.h │ │ │ ├── amd-iommu-defs.h │ │ │ ├── amd-iommu-proto.h │ │ │ ├── asid.h │ │ │ ├── emulate.h │ │ │ ├── intr.h │ │ │ ├── nestedsvm.h │ │ │ ├── svm.h │ │ │ ├── svmdebug.h │ │ │ └── vmcb.h │ │ ├── trace.h │ │ ├── vcpu.h │ │ ├── vioapic.h │ │ ├── viridian.h │ │ ├── vlapic.h │ │ ├── vmx │ │ │ ├── vmcs.h │ │ │ ├── vmx.h │ │ │ ├── vpmu_core2.h │ │ │ └── vvmx.h │ │ ├── vpic.h │ │ ├── vpmu.h │ │ ├── vpt.h │ │ └── xen_pv.h │ ├── hypercall.h │ ├── i387.h │ ├── init.h │ ├── io.h │ ├── io_apic.h │ ├── iocap.h │ ├── irq.h │ ├── ldt.h │ ├── mach-default │ │ ├── bios_ebda.h │ │ ├── io_ports.h │ │ ├── irq_vectors.h │ │ ├── mach_mpparse.h │ │ ├── mach_mpspec.h │ │ ├── mach_wakecpu.h │ │ └── smpboot_hooks.h │ ├── mach-generic │ │ ├── mach_apic.h │ │ └── mach_mpparse.h │ ├── mach-summit │ │ └── mach_mpparse.h │ ├── mc146818rtc.h │ ├── mce.h │ ├── microcode.h │ ├── mm.h │ ├── mpspec.h │ ├── mpspec_def.h │ ├── msi.h │ ├── msr-index.h │ ├── msr.h │ ├── mtrr.h │ ├── multicall.h │ ├── nmi.h │ ├── nospec.h │ ├── numa.h │ ├── p2m.h │ ├── page.h │ ├── paging.h │ ├── percpu.h │ ├── perfc.h │ ├── perfc_defn.h │ ├── perfc_x86.h │ ├── poke.h │ ├── processor.h │ ├── regs.h │ ├── setup.h │ ├── shadow.h │ ├── shared.h │ ├── smp.h │ ├── softirq.h │ ├── spinlock.h │ ├── string.h │ ├── system.h │ ├── tboot.h │ ├── time.h │ ├── trace.h │ ├── traps.h │ ├── types.h │ ├── uaccess.h │ ├── x86_32 │ │ ├── asm_defns.h │ │ ├── bug.h │ │ ├── elf.h │ │ ├── page.h │ │ ├── regs.h │ │ ├── system.h │ │ └── uaccess.h │ ├── x86_64 │ │ ├── asm_defns.h │ │ ├── bug.h │ │ ├── efibind.h │ │ ├── elf.h │ │ ├── page.h │ │ ├── regs.h │ │ ├── system.h │ │ └── uaccess.h │ ├── x86_emulate.h │ ├── xenoprof.h │ └── xstate.h ├── crypto │ ├── rijndael.h │ └── vmac.h ├── libelf │ ├── elfstructs.h │ └── libelf.h ├── public │ ├── COPYING │ ├── arch-x86 │ │ ├── cpuid.h │ │ ├── hvm │ │ │ └── save.h │ │ ├── xen-mca.h │ │ ├── xen-x86_32.h │ │ ├── xen-x86_64.h │ │ └── xen.h │ ├── arch-x86_32.h │ ├── arch-x86_64.h │ ├── attovm.h │ ├── callback.h │ ├── dom0_ops.h │ ├── domctl.h │ ├── elfnote.h │ ├── errno.h │ ├── event_channel.h │ ├── features.h │ ├── grant_table.h │ ├── hvm │ │ ├── e820.h │ │ ├── hvm_info_table.h │ │ ├── hvm_op.h │ │ ├── ioreq.h │ │ ├── params.h │ │ └── save.h │ ├── introspection-features.h │ ├── io │ │ ├── blkif.h │ │ ├── console.h │ │ ├── fbif.h │ │ ├── fsif.h │ │ ├── kbdif.h │ │ ├── libxenvchan.h │ │ ├── netif.h │ │ ├── pciif.h │ │ ├── protocols.h │ │ ├── ring.h │ │ ├── tpmif.h │ │ ├── usbif.h │ │ ├── vscsiif.h │ │ ├── xenbus.h │ │ └── xs_wire.h │ ├── kexec.h │ ├── memory.h │ ├── nmi.h │ ├── physdev.h │ ├── platform.h │ ├── sched.h │ ├── sysctl.h │ ├── tmem.h │ ├── trace.h │ ├── v4v.h │ ├── vcpu.h │ ├── version.h │ ├── xen-compat.h │ ├── xen.h │ ├── xencomm.h │ ├── xenoprof.h │ └── xsm │ │ └── flask_op.h ├── uxen │ ├── kdxinfo.h │ ├── mapcache.h │ ├── platform_interface.h │ ├── unwind-pe.h │ ├── uxen.h │ ├── uxen_desc.h │ ├── uxen_info.h │ ├── uxen_link.h │ ├── uxen_os.h │ └── uxen_types.h ├── xen │ ├── acpi.h │ ├── bitmap.h │ ├── bitops.h │ ├── byteorder │ │ ├── big_endian.h │ │ ├── generic.h │ │ ├── little_endian.h │ │ └── swab.h │ ├── cache.h │ ├── compile.h.in │ ├── compiler.h │ ├── config.h │ ├── console.h │ ├── cper.h │ ├── cpu.h │ ├── cpuidle.h │ ├── cpumask.h │ ├── ctype.h │ ├── decompress.h │ ├── delay.h │ ├── dmi.h │ ├── domain.h │ ├── domain_page.h │ ├── efi.h │ ├── elf.h │ ├── elfcore.h │ ├── errno.h │ ├── event.h │ ├── gdbstub.h │ ├── grant_table.h │ ├── guest_access.h │ ├── hash.h │ ├── hvm │ │ ├── debug_port.h │ │ ├── iommu.h │ │ ├── irq.h │ │ ├── pci_emul.h │ │ └── save.h │ ├── hypercall.h │ ├── init.h │ ├── inttypes.h │ ├── iocap.h │ ├── iommu.h │ ├── irq.h │ ├── irq_cpustat.h │ ├── kernel.h │ ├── kexec.h │ ├── keyhandler.h │ ├── lib.h │ ├── list.h │ ├── lzo.h │ ├── mm.h │ ├── multiboot.h │ ├── multicall.h │ ├── nmi.h │ ├── nodemask.h │ ├── notifier.h │ ├── numa.h │ ├── page_store.h │ ├── paging.h │ ├── pci.h │ ├── pci_regs.h │ ├── percpu.h │ ├── perfc.h │ ├── perfc_defn.h │ ├── pfn.h │ ├── pmstat.h │ ├── preempt.h │ ├── prefetch.h │ ├── radix-tree.h │ ├── rangeset.h │ ├── rbtree.h │ ├── rcupdate.h │ ├── sched-if.h │ ├── sched.h │ ├── serial.h │ ├── shared.h │ ├── shutdown.h │ ├── smp.h │ ├── softirq.h │ ├── sort.h │ ├── spinlock.h │ ├── stdarg.h │ ├── stop_machine.h │ ├── string.h │ ├── stringify.h │ ├── symbols.h │ ├── tasklet.h │ ├── time.h │ ├── timer.h │ ├── tmem.h │ ├── trace.h │ ├── types.h │ ├── v4v.h │ ├── version.h │ ├── vga.h │ ├── wait.h │ ├── xencomm.h │ ├── xenoprof.h │ └── xmalloc.h └── xsm │ └── xsm.h ├── tools ├── Makefile ├── figlet │ ├── LICENSE │ ├── Makefile │ ├── README │ ├── figlet.c │ └── xen.flf └── symbols.c └── uxen ├── i386pe.xr ├── i386pep.xr ├── kdxinfo.c ├── main.c ├── mapcache.c ├── shadow_subst.c ├── time.c ├── unwind ├── Makefile ├── pe.h ├── unwind-dump-pe.c ├── unwind-dump-pe.h ├── unwind-dump.c ├── unwind-pe.c ├── unwind-pe.h └── xpdata-extract.c └── uxen-pe.lds.S /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/.gitignore -------------------------------------------------------------------------------- /Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/Config.mk -------------------------------------------------------------------------------- /LICENSES/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/LICENSES/ISC.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/README.md -------------------------------------------------------------------------------- /Rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/Rules.mk -------------------------------------------------------------------------------- /common/attoimg/elfstructs.h: -------------------------------------------------------------------------------- 1 | #include "../libelf/elfstructs.h" 2 | -------------------------------------------------------------------------------- /common/attoimg/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/attoimg/main.c -------------------------------------------------------------------------------- /common/attoimg/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/attoimg/util.c -------------------------------------------------------------------------------- /common/attoimg/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/attoimg/util.h -------------------------------------------------------------------------------- /common/filecrypt/SOURCE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/include/err.h -------------------------------------------------------------------------------- /common/libelf/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/libelf/COPYING -------------------------------------------------------------------------------- /common/libelf/README: -------------------------------------------------------------------------------- 1 | Take care, this code is used by both xen and tools ... 2 | -------------------------------------------------------------------------------- /common/libvhd/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/libvhd/bswap.h -------------------------------------------------------------------------------- /common/libvhd/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/libvhd/list.h -------------------------------------------------------------------------------- /common/libvhd/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/libvhd/util.h -------------------------------------------------------------------------------- /common/libvhd/vhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/libvhd/vhd.h -------------------------------------------------------------------------------- /common/libvncserver/README.md: -------------------------------------------------------------------------------- 1 | README -------------------------------------------------------------------------------- /common/libvncserver/compat/msvc/unistd.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /common/libvncserver/m4/.gitignore: -------------------------------------------------------------------------------- 1 | *.m4 -------------------------------------------------------------------------------- /common/libvncserver/webclients/novnc/favicon.ico: -------------------------------------------------------------------------------- 1 | images/favicon.ico -------------------------------------------------------------------------------- /common/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/lz4/lz4.c -------------------------------------------------------------------------------- /common/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/lz4/lz4.h -------------------------------------------------------------------------------- /common/lz4/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/lz4/lz4hc.c -------------------------------------------------------------------------------- /common/lz4/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/lz4/lz4hc.h -------------------------------------------------------------------------------- /common/seabios/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/seabios/README -------------------------------------------------------------------------------- /common/seabios/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/seabios/TODO -------------------------------------------------------------------------------- /common/seabios/src/code16gcc.s: -------------------------------------------------------------------------------- 1 | .code16gcc 2 | -------------------------------------------------------------------------------- /common/xen-tools/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | TAGS 3 | include/xen 4 | -------------------------------------------------------------------------------- /common/xen-tools/pygrub/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/xen-tools/sv/Makefile: -------------------------------------------------------------------------------- 1 | 2 | .PHONY: all 3 | all: 4 | -------------------------------------------------------------------------------- /common/yajl/yajl/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Makefile 3 | /build/ 4 | -------------------------------------------------------------------------------- /common/yajl/yajl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/common/yajl/yajl/TODO -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ag_false_then_garbage.json: -------------------------------------------------------------------------------- 1 | falsex -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ag_null_then_garbage.json: -------------------------------------------------------------------------------- 1 | nullx 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ag_null_then_garbage.json.gold: -------------------------------------------------------------------------------- 1 | null 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ag_true_then_garbage.json: -------------------------------------------------------------------------------- 1 | truex -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ag_true_then_garbage.json.gold: -------------------------------------------------------------------------------- 1 | bool: true 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/am_eof.json: -------------------------------------------------------------------------------- 1 | { "123": 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/am_integers.json: -------------------------------------------------------------------------------- 1 | 1221 21 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/am_multiple.json: -------------------------------------------------------------------------------- 1 | 2 | {} 3 | {} 4 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_array_open.json: -------------------------------------------------------------------------------- 1 | [ 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_array_open.json.gold: -------------------------------------------------------------------------------- 1 | array open '[' 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_eof_str.json: -------------------------------------------------------------------------------- 1 | "abc -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_eof_str.json.gold: -------------------------------------------------------------------------------- 1 | memory leaks: 0 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_map_open.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_map_open.json.gold: -------------------------------------------------------------------------------- 1 | map open '{' 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/ap_partial_ok.json: -------------------------------------------------------------------------------- 1 | [ "foo", "bar" 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/array_close.json: -------------------------------------------------------------------------------- 1 | ] 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/empty_array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/empty_string.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/empty_string.json.gold: -------------------------------------------------------------------------------- 1 | string: '' 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/escaped_foobar.json.gold: -------------------------------------------------------------------------------- 1 | string: 'foobar' 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/false.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/false.json.gold: -------------------------------------------------------------------------------- 1 | bool: false 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/fg_false_then_garbage.json: -------------------------------------------------------------------------------- 1 | falsex -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/fg_issue_7.json: -------------------------------------------------------------------------------- 1 | 2009-10-20@20:38:21.539575 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/fg_null_then_garbage.json: -------------------------------------------------------------------------------- 1 | nullx 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/fg_true_then_garbage.json: -------------------------------------------------------------------------------- 1 | truex 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/four_byte_utf8.json: -------------------------------------------------------------------------------- 1 | { "U+10ABCD": "􊯍" } 2 | 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/high_overflow.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/isolated_surrogate_marker.json: -------------------------------------------------------------------------------- 1 | "\ud800" 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/leading_zero_in_number.json: -------------------------------------------------------------------------------- 1 | { "bad thing": 01 } 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/lonely_number.json: -------------------------------------------------------------------------------- 1 | 123456789 -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/low_overflow.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/map_close.json: -------------------------------------------------------------------------------- 1 | } 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/missing_integer_after_decimal_point.json: -------------------------------------------------------------------------------- 1 | 10.e2 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/missing_integer_after_exponent.json: -------------------------------------------------------------------------------- 1 | 10e 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/multiple.json: -------------------------------------------------------------------------------- 1 | 2 | {} 3 | {} 4 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/np_partial_bad.json: -------------------------------------------------------------------------------- 1 | [ "foo", "bar" 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/null.json: -------------------------------------------------------------------------------- 1 | null 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/null.json.gold: -------------------------------------------------------------------------------- 1 | null 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/three_byte_utf8.json: -------------------------------------------------------------------------------- 1 | {"matzue": "松江", "asakusa": "浅草"} 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/true.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/true.json.gold: -------------------------------------------------------------------------------- 1 | bool: true 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/unescaped_bulgarian.json: -------------------------------------------------------------------------------- 1 | ["Да Му Еба Майката"] 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/zerobyte.json: -------------------------------------------------------------------------------- 1 | "\u0000" 2 | -------------------------------------------------------------------------------- /common/yajl/yajl/test/cases/zerobyte.json.gold: -------------------------------------------------------------------------------- 1 | string: '' 2 | memory leaks: 0 3 | -------------------------------------------------------------------------------- /dm/BrEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/BrEvent.h -------------------------------------------------------------------------------- /dm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/Makefile -------------------------------------------------------------------------------- /dm/Makefile.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/Makefile.dm -------------------------------------------------------------------------------- /dm/Makefile.libimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/Makefile.libimg -------------------------------------------------------------------------------- /dm/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/aio.c -------------------------------------------------------------------------------- /dm/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/aio.h -------------------------------------------------------------------------------- /dm/async-op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/async-op.c -------------------------------------------------------------------------------- /dm/async-op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/async-op.h -------------------------------------------------------------------------------- /dm/atto-agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/atto-agent.c -------------------------------------------------------------------------------- /dm/atto-agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/atto-agent.h -------------------------------------------------------------------------------- /dm/atto-vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/atto-vm.c -------------------------------------------------------------------------------- /dm/atto-vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/atto-vm.h -------------------------------------------------------------------------------- /dm/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/base64.c -------------------------------------------------------------------------------- /dm/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/base64.h -------------------------------------------------------------------------------- /dm/bh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/bh.c -------------------------------------------------------------------------------- /dm/bh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/bh.h -------------------------------------------------------------------------------- /dm/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/bitops.h -------------------------------------------------------------------------------- /dm/block-def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block-def.h -------------------------------------------------------------------------------- /dm/block-int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block-int.h -------------------------------------------------------------------------------- /dm/block-raw-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block-raw-posix.c -------------------------------------------------------------------------------- /dm/block-raw-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block-raw-win32.c -------------------------------------------------------------------------------- /dm/block-swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block-swap.c -------------------------------------------------------------------------------- /dm/block-vhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block-vhd.c -------------------------------------------------------------------------------- /dm/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block.c -------------------------------------------------------------------------------- /dm/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/block.h -------------------------------------------------------------------------------- /dm/cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/cdrom.h -------------------------------------------------------------------------------- /dm/char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/char.c -------------------------------------------------------------------------------- /dm/char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/char.h -------------------------------------------------------------------------------- /dm/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/clipboard.c -------------------------------------------------------------------------------- /dm/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/clipboard.h -------------------------------------------------------------------------------- /dm/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/clock.c -------------------------------------------------------------------------------- /dm/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/clock.h -------------------------------------------------------------------------------- /dm/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/compiler.h -------------------------------------------------------------------------------- /dm/conffile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/conffile.c -------------------------------------------------------------------------------- /dm/conffile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/conffile.h -------------------------------------------------------------------------------- /dm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/config.h -------------------------------------------------------------------------------- /dm/console-dr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console-dr.c -------------------------------------------------------------------------------- /dm/console-dr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console-dr.h -------------------------------------------------------------------------------- /dm/console-osx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console-osx.m -------------------------------------------------------------------------------- /dm/console-remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console-remote.c -------------------------------------------------------------------------------- /dm/console-vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console-vnc.c -------------------------------------------------------------------------------- /dm/console-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console-win32.c -------------------------------------------------------------------------------- /dm/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console.c -------------------------------------------------------------------------------- /dm/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/console.h -------------------------------------------------------------------------------- /dm/control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/control.c -------------------------------------------------------------------------------- /dm/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/control.h -------------------------------------------------------------------------------- /dm/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/cpu.h -------------------------------------------------------------------------------- /dm/cuckoo-uxen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/cuckoo-uxen.c -------------------------------------------------------------------------------- /dm/cuckoo-uxen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/cuckoo-uxen.h -------------------------------------------------------------------------------- /dm/cuckoo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/cuckoo.c -------------------------------------------------------------------------------- /dm/cuckoo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/cuckoo.h -------------------------------------------------------------------------------- /dm/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/debug.c -------------------------------------------------------------------------------- /dm/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/debug.h -------------------------------------------------------------------------------- /dm/default.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/default.h -------------------------------------------------------------------------------- /dm/defensive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/defensive.h -------------------------------------------------------------------------------- /dm/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dev.c -------------------------------------------------------------------------------- /dm/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dev.h -------------------------------------------------------------------------------- /dm/dict-rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dict-rpc.c -------------------------------------------------------------------------------- /dm/dict-rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dict-rpc.h -------------------------------------------------------------------------------- /dm/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dict.c -------------------------------------------------------------------------------- /dm/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dict.h -------------------------------------------------------------------------------- /dm/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dm.c -------------------------------------------------------------------------------- /dm/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dm.h -------------------------------------------------------------------------------- /dm/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dma.h -------------------------------------------------------------------------------- /dm/dmpdev-rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dmpdev-rpc.c -------------------------------------------------------------------------------- /dm/dmpdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/dmpdev.h -------------------------------------------------------------------------------- /dm/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/edid.c -------------------------------------------------------------------------------- /dm/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/edid.h -------------------------------------------------------------------------------- /dm/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/file.h -------------------------------------------------------------------------------- /dm/filebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/filebuf.c -------------------------------------------------------------------------------- /dm/filebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/filebuf.h -------------------------------------------------------------------------------- /dm/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/firmware.c -------------------------------------------------------------------------------- /dm/firmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/firmware.h -------------------------------------------------------------------------------- /dm/guest-agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/guest-agent.c -------------------------------------------------------------------------------- /dm/guest-agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/guest-agent.h -------------------------------------------------------------------------------- /dm/hbmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hbmon.c -------------------------------------------------------------------------------- /dm/hbmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hbmon.h -------------------------------------------------------------------------------- /dm/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw.h -------------------------------------------------------------------------------- /dm/hw/applesmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/applesmc.c -------------------------------------------------------------------------------- /dm/hw/dmpdev-prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/dmpdev-prot.h -------------------------------------------------------------------------------- /dm/hw/dmpdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/dmpdev.c -------------------------------------------------------------------------------- /dm/hw/pci-ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/pci-ram.c -------------------------------------------------------------------------------- /dm/hw/pci-ram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/pci-ram.h -------------------------------------------------------------------------------- /dm/hw/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/pci.h -------------------------------------------------------------------------------- /dm/hw/piix4acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/piix4acpi.c -------------------------------------------------------------------------------- /dm/hw/pv_vblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/pv_vblank.c -------------------------------------------------------------------------------- /dm/hw/pv_vblank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/pv_vblank.h -------------------------------------------------------------------------------- /dm/hw/resampler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/resampler.c -------------------------------------------------------------------------------- /dm/hw/resampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/resampler.h -------------------------------------------------------------------------------- /dm/hw/uxaud_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxaud_hw.h -------------------------------------------------------------------------------- /dm/hw/uxdisp_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxdisp_hw.h -------------------------------------------------------------------------------- /dm/hw/uxen_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_audio.c -------------------------------------------------------------------------------- /dm/hw/uxen_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_audio.h -------------------------------------------------------------------------------- /dm/hw/uxen_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_debug.c -------------------------------------------------------------------------------- /dm/hw/uxen_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_display.c -------------------------------------------------------------------------------- /dm/hw/uxen_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_display.h -------------------------------------------------------------------------------- /dm/hw/uxen_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_fb.c -------------------------------------------------------------------------------- /dm/hw/uxen_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_fb.h -------------------------------------------------------------------------------- /dm/hw/uxen_hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_hid.c -------------------------------------------------------------------------------- /dm/hw/uxen_hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_hid.h -------------------------------------------------------------------------------- /dm/hw/uxen_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_net.c -------------------------------------------------------------------------------- /dm/hw/uxen_null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_null.c -------------------------------------------------------------------------------- /dm/hw/uxen_platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_platform.c -------------------------------------------------------------------------------- /dm/hw/uxen_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_platform.h -------------------------------------------------------------------------------- /dm/hw/uxen_scsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_scsi.c -------------------------------------------------------------------------------- /dm/hw/uxen_scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_scsi.h -------------------------------------------------------------------------------- /dm/hw/uxen_scsi_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_scsi_osx.c -------------------------------------------------------------------------------- /dm/hw/uxen_scsi_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_scsi_osx.h -------------------------------------------------------------------------------- /dm/hw/uxen_stor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_stor.c -------------------------------------------------------------------------------- /dm/hw/uxen_v4v.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_v4v.h -------------------------------------------------------------------------------- /dm/hw/uxen_v4v_osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_v4v_osx.c -------------------------------------------------------------------------------- /dm/hw/uxen_v4v_osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/uxen_v4v_osx.h -------------------------------------------------------------------------------- /dm/hw/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/vga.c -------------------------------------------------------------------------------- /dm/hw/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/vga.h -------------------------------------------------------------------------------- /dm/hw/vga_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/vga_template.h -------------------------------------------------------------------------------- /dm/hw/wasapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/wasapi.c -------------------------------------------------------------------------------- /dm/hw/wasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/wasapi.h -------------------------------------------------------------------------------- /dm/hw/xenpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/xenpc.c -------------------------------------------------------------------------------- /dm/hw/xenpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/xenpc.h -------------------------------------------------------------------------------- /dm/hw/xenrtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/xenrtc.c -------------------------------------------------------------------------------- /dm/hw/xenrtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/hw/xenrtc.h -------------------------------------------------------------------------------- /dm/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/input.c -------------------------------------------------------------------------------- /dm/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/input.h -------------------------------------------------------------------------------- /dm/introspection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/introspection.c -------------------------------------------------------------------------------- /dm/introspection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/introspection.h -------------------------------------------------------------------------------- /dm/ioh-osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioh-osx.c -------------------------------------------------------------------------------- /dm/ioh-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioh-win32.c -------------------------------------------------------------------------------- /dm/ioh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioh.c -------------------------------------------------------------------------------- /dm/ioh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioh.h -------------------------------------------------------------------------------- /dm/iomem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/iomem.c -------------------------------------------------------------------------------- /dm/iomem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/iomem.h -------------------------------------------------------------------------------- /dm/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioport.c -------------------------------------------------------------------------------- /dm/ioport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioport.h -------------------------------------------------------------------------------- /dm/ioreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioreq.c -------------------------------------------------------------------------------- /dm/ioreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ioreq.h -------------------------------------------------------------------------------- /dm/iovec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/iovec.c -------------------------------------------------------------------------------- /dm/iovec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/iovec.h -------------------------------------------------------------------------------- /dm/ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ipc.c -------------------------------------------------------------------------------- /dm/ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ipc.h -------------------------------------------------------------------------------- /dm/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/irq.h -------------------------------------------------------------------------------- /dm/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/lib.c -------------------------------------------------------------------------------- /dm/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/lib.h -------------------------------------------------------------------------------- /dm/libnickel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/libnickel.h -------------------------------------------------------------------------------- /dm/malloc-wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/malloc-wrappers.c -------------------------------------------------------------------------------- /dm/mapcache-lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/mapcache-lru.c -------------------------------------------------------------------------------- /dm/mapcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/mapcache.h -------------------------------------------------------------------------------- /dm/memory-virt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/memory-virt.c -------------------------------------------------------------------------------- /dm/memory-virt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/memory-virt.h -------------------------------------------------------------------------------- /dm/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/memory.c -------------------------------------------------------------------------------- /dm/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/memory.h -------------------------------------------------------------------------------- /dm/monitor-cmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/monitor-cmds.h -------------------------------------------------------------------------------- /dm/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/monitor.c -------------------------------------------------------------------------------- /dm/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/monitor.h -------------------------------------------------------------------------------- /dm/mr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/mr.c -------------------------------------------------------------------------------- /dm/mr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/mr.h -------------------------------------------------------------------------------- /dm/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/net.h -------------------------------------------------------------------------------- /dm/nickel/buff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/buff.c -------------------------------------------------------------------------------- /dm/nickel/buff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/buff.h -------------------------------------------------------------------------------- /dm/nickel/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/constants.h -------------------------------------------------------------------------------- /dm/nickel/dhcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/dhcp.c -------------------------------------------------------------------------------- /dm/nickel/dhcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/dhcp.h -------------------------------------------------------------------------------- /dm/nickel/dns/dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/dns/dns.c -------------------------------------------------------------------------------- /dm/nickel/dns/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/dns/dns.h -------------------------------------------------------------------------------- /dm/nickel/http/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/auth.c -------------------------------------------------------------------------------- /dm/nickel/http/auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/auth.h -------------------------------------------------------------------------------- /dm/nickel/http/cert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/cert.h -------------------------------------------------------------------------------- /dm/nickel/http/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/main.c -------------------------------------------------------------------------------- /dm/nickel/http/ntlm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/ntlm.c -------------------------------------------------------------------------------- /dm/nickel/http/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/ntlm.h -------------------------------------------------------------------------------- /dm/nickel/http/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/tls.c -------------------------------------------------------------------------------- /dm/nickel/http/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/http/tls.h -------------------------------------------------------------------------------- /dm/nickel/lava.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/lava.c -------------------------------------------------------------------------------- /dm/nickel/lava.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/lava.h -------------------------------------------------------------------------------- /dm/nickel/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/log.c -------------------------------------------------------------------------------- /dm/nickel/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/log.h -------------------------------------------------------------------------------- /dm/nickel/nickel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/nickel.c -------------------------------------------------------------------------------- /dm/nickel/nickel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/nickel.h -------------------------------------------------------------------------------- /dm/nickel/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/proto.h -------------------------------------------------------------------------------- /dm/nickel/rpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/rpc.c -------------------------------------------------------------------------------- /dm/nickel/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/rpc.h -------------------------------------------------------------------------------- /dm/nickel/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/service.c -------------------------------------------------------------------------------- /dm/nickel/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/service.h -------------------------------------------------------------------------------- /dm/nickel/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/socket.c -------------------------------------------------------------------------------- /dm/nickel/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/socket.h -------------------------------------------------------------------------------- /dm/nickel/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/stats.h -------------------------------------------------------------------------------- /dm/nickel/tcpip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/tcpip.c -------------------------------------------------------------------------------- /dm/nickel/tcpip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/nickel/tcpip.h -------------------------------------------------------------------------------- /dm/ns-echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ns-echo.c -------------------------------------------------------------------------------- /dm/ns-forward.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ns-forward.c -------------------------------------------------------------------------------- /dm/ns-logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ns-logging.c -------------------------------------------------------------------------------- /dm/ns-webdav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ns-webdav.c -------------------------------------------------------------------------------- /dm/ns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ns.c -------------------------------------------------------------------------------- /dm/ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/ns.h -------------------------------------------------------------------------------- /dm/opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/opts.h -------------------------------------------------------------------------------- /dm/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/os.h -------------------------------------------------------------------------------- /dm/osx-app-delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-app-delegate.h -------------------------------------------------------------------------------- /dm/osx-app-delegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-app-delegate.m -------------------------------------------------------------------------------- /dm/osx-keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-keymap.h -------------------------------------------------------------------------------- /dm/osx-logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-logging.c -------------------------------------------------------------------------------- /dm/osx-main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-main.m -------------------------------------------------------------------------------- /dm/osx-vm-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-vm-view.h -------------------------------------------------------------------------------- /dm/osx-vm-view.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx-vm-view.m -------------------------------------------------------------------------------- /dm/osx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx.c -------------------------------------------------------------------------------- /dm/osx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/osx.h -------------------------------------------------------------------------------- /dm/priv-heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/priv-heap.c -------------------------------------------------------------------------------- /dm/priv-heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/priv-heap.h -------------------------------------------------------------------------------- /dm/qemu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/.gitignore -------------------------------------------------------------------------------- /dm/qemu/.gitmodules-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/.gitmodules- -------------------------------------------------------------------------------- /dm/qemu/CODING_STYLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/CODING_STYLE -------------------------------------------------------------------------------- /dm/qemu/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/COPYING -------------------------------------------------------------------------------- /dm/qemu/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/COPYING.LIB -------------------------------------------------------------------------------- /dm/qemu/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/Changelog -------------------------------------------------------------------------------- /dm/qemu/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/HACKING -------------------------------------------------------------------------------- /dm/qemu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/LICENSE -------------------------------------------------------------------------------- /dm/qemu/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/MAINTAINERS -------------------------------------------------------------------------------- /dm/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/Makefile -------------------------------------------------------------------------------- /dm/qemu/Makefile.dis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/Makefile.dis -------------------------------------------------------------------------------- /dm/qemu/Makefile.hw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/Makefile.hw -------------------------------------------------------------------------------- /dm/qemu/Makefile.objs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/Makefile.objs -------------------------------------------------------------------------------- /dm/qemu/Makefile.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/Makefile.user -------------------------------------------------------------------------------- /dm/qemu/QMP/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/QMP/README -------------------------------------------------------------------------------- /dm/qemu/QMP/qmp-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/QMP/qmp-shell -------------------------------------------------------------------------------- /dm/qemu/QMP/qmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/QMP/qmp.py -------------------------------------------------------------------------------- /dm/qemu/README: -------------------------------------------------------------------------------- 1 | Read the documentation in qemu-doc.html. 2 | 3 | Fabrice Bellard. 4 | -------------------------------------------------------------------------------- /dm/qemu/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/TODO -------------------------------------------------------------------------------- /dm/qemu/VERSION: -------------------------------------------------------------------------------- 1 | 1.0,1 2 | -------------------------------------------------------------------------------- /dm/qemu/a.out.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/a.out.h -------------------------------------------------------------------------------- /dm/qemu/acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/acl.c -------------------------------------------------------------------------------- /dm/qemu/acl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/acl.h -------------------------------------------------------------------------------- /dm/qemu/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/aes.c -------------------------------------------------------------------------------- /dm/qemu/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/aes.h -------------------------------------------------------------------------------- /dm/qemu/aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/aio.c -------------------------------------------------------------------------------- /dm/qemu/alpha-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/alpha-dis.c -------------------------------------------------------------------------------- /dm/qemu/alpha.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/alpha.ld -------------------------------------------------------------------------------- /dm/qemu/arch_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/arch_init.c -------------------------------------------------------------------------------- /dm/qemu/arch_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/arch_init.h -------------------------------------------------------------------------------- /dm/qemu/arm-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/arm-dis.c -------------------------------------------------------------------------------- /dm/qemu/arm-semi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/arm-semi.c -------------------------------------------------------------------------------- /dm/qemu/arm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/arm.ld -------------------------------------------------------------------------------- /dm/qemu/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/async.c -------------------------------------------------------------------------------- /dm/qemu/audio/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/audio/audio.c -------------------------------------------------------------------------------- /dm/qemu/audio/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/audio/audio.h -------------------------------------------------------------------------------- /dm/qemu/balloon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/balloon.c -------------------------------------------------------------------------------- /dm/qemu/balloon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/balloon.h -------------------------------------------------------------------------------- /dm/qemu/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bitmap.c -------------------------------------------------------------------------------- /dm/qemu/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bitmap.h -------------------------------------------------------------------------------- /dm/qemu/bitops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bitops.c -------------------------------------------------------------------------------- /dm/qemu/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bitops.h -------------------------------------------------------------------------------- /dm/qemu/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block.c -------------------------------------------------------------------------------- /dm/qemu/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block.h -------------------------------------------------------------------------------- /dm/qemu/block/bochs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/bochs.c -------------------------------------------------------------------------------- /dm/qemu/block/cloop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/cloop.c -------------------------------------------------------------------------------- /dm/qemu/block/cow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/cow.c -------------------------------------------------------------------------------- /dm/qemu/block/curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/curl.c -------------------------------------------------------------------------------- /dm/qemu/block/dmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/dmg.c -------------------------------------------------------------------------------- /dm/qemu/block/iscsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/iscsi.c -------------------------------------------------------------------------------- /dm/qemu/block/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/nbd.c -------------------------------------------------------------------------------- /dm/qemu/block/qcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/qcow.c -------------------------------------------------------------------------------- /dm/qemu/block/qcow2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/qcow2.c -------------------------------------------------------------------------------- /dm/qemu/block/qcow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/qcow2.h -------------------------------------------------------------------------------- /dm/qemu/block/qed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/qed.c -------------------------------------------------------------------------------- /dm/qemu/block/qed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/qed.h -------------------------------------------------------------------------------- /dm/qemu/block/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/raw.c -------------------------------------------------------------------------------- /dm/qemu/block/rbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/rbd.c -------------------------------------------------------------------------------- /dm/qemu/block/vdi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/vdi.c -------------------------------------------------------------------------------- /dm/qemu/block/vmdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/vmdk.c -------------------------------------------------------------------------------- /dm/qemu/block/vpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/vpc.c -------------------------------------------------------------------------------- /dm/qemu/block/vvfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block/vvfat.c -------------------------------------------------------------------------------- /dm/qemu/block_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/block_int.h -------------------------------------------------------------------------------- /dm/qemu/blockdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/blockdev.c -------------------------------------------------------------------------------- /dm/qemu/blockdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/blockdev.h -------------------------------------------------------------------------------- /dm/qemu/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bswap.h -------------------------------------------------------------------------------- /dm/qemu/bt-host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bt-host.c -------------------------------------------------------------------------------- /dm/qemu/bt-host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bt-host.h -------------------------------------------------------------------------------- /dm/qemu/bt-vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/bt-vhci.c -------------------------------------------------------------------------------- /dm/qemu/cache-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cache-utils.c -------------------------------------------------------------------------------- /dm/qemu/cache-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cache-utils.h -------------------------------------------------------------------------------- /dm/qemu/check-qdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/check-qdict.c -------------------------------------------------------------------------------- /dm/qemu/check-qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/check-qint.c -------------------------------------------------------------------------------- /dm/qemu/check-qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/check-qjson.c -------------------------------------------------------------------------------- /dm/qemu/check-qlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/check-qlist.c -------------------------------------------------------------------------------- /dm/qemu/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cmd.c -------------------------------------------------------------------------------- /dm/qemu/cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cmd.h -------------------------------------------------------------------------------- /dm/qemu/compatfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/compatfd.c -------------------------------------------------------------------------------- /dm/qemu/compatfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/compatfd.h -------------------------------------------------------------------------------- /dm/qemu/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/compiler.h -------------------------------------------------------------------------------- /dm/qemu/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/config.h -------------------------------------------------------------------------------- /dm/qemu/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/configure -------------------------------------------------------------------------------- /dm/qemu/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/console.c -------------------------------------------------------------------------------- /dm/qemu/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/console.h -------------------------------------------------------------------------------- /dm/qemu/cpu-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cpu-all.h -------------------------------------------------------------------------------- /dm/qemu/cpu-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cpu-common.h -------------------------------------------------------------------------------- /dm/qemu/cpu-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cpu-defs.h -------------------------------------------------------------------------------- /dm/qemu/cpu-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cpu-exec.c -------------------------------------------------------------------------------- /dm/qemu/cpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cpus.c -------------------------------------------------------------------------------- /dm/qemu/cpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cpus.h -------------------------------------------------------------------------------- /dm/qemu/cris-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cris-dis.c -------------------------------------------------------------------------------- /dm/qemu/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cursor.c -------------------------------------------------------------------------------- /dm/qemu/cutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/cutils.c -------------------------------------------------------------------------------- /dm/qemu/def-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/def-helper.h -------------------------------------------------------------------------------- /dm/qemu/default-configs/alpha-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for alpha-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/cris-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for cris-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/i386-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-bsd-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/i386-darwin-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-darwin-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/i386-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for i386-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/mips-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for mips-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/s390x-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for s390x-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/s390x-softmmu.mak: -------------------------------------------------------------------------------- 1 | CONFIG_VIRTIO=y 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/sh4-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/sh4eb-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sh4eb-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/sparc-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-bsd-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/sparc-linux-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc-linux-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/sparc64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for sparc64-bsd-user 2 | -------------------------------------------------------------------------------- /dm/qemu/default-configs/x86_64-bsd-user.mak: -------------------------------------------------------------------------------- 1 | # Default configuration for x86_64-bsd-user 2 | -------------------------------------------------------------------------------- /dm/qemu/device_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/device_tree.c -------------------------------------------------------------------------------- /dm/qemu/device_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/device_tree.h -------------------------------------------------------------------------------- /dm/qemu/dis-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/dis-asm.h -------------------------------------------------------------------------------- /dm/qemu/disas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/disas.c -------------------------------------------------------------------------------- /dm/qemu/disas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/disas.h -------------------------------------------------------------------------------- /dm/qemu/dma-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/dma-helpers.c -------------------------------------------------------------------------------- /dm/qemu/dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/dma.h -------------------------------------------------------------------------------- /dm/qemu/docs/ccid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/docs/ccid.txt -------------------------------------------------------------------------------- /dm/qemu/docs/usb2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/docs/usb2.txt -------------------------------------------------------------------------------- /dm/qemu/dyngen-exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/dyngen-exec.h -------------------------------------------------------------------------------- /dm/qemu/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/elf.h -------------------------------------------------------------------------------- /dm/qemu/envlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/envlist.c -------------------------------------------------------------------------------- /dm/qemu/envlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/envlist.h -------------------------------------------------------------------------------- /dm/qemu/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/error.c -------------------------------------------------------------------------------- /dm/qemu/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/error.h -------------------------------------------------------------------------------- /dm/qemu/error_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/error_int.h -------------------------------------------------------------------------------- /dm/qemu/exec-all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/exec-all.h -------------------------------------------------------------------------------- /dm/qemu/exec-memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/exec-memory.h -------------------------------------------------------------------------------- /dm/qemu/exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/exec.c -------------------------------------------------------------------------------- /dm/qemu/gdbstub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/gdbstub.c -------------------------------------------------------------------------------- /dm/qemu/gdbstub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/gdbstub.h -------------------------------------------------------------------------------- /dm/qemu/gen-icount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/gen-icount.h -------------------------------------------------------------------------------- /dm/qemu/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hmp.c -------------------------------------------------------------------------------- /dm/qemu/hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hmp.h -------------------------------------------------------------------------------- /dm/qemu/host-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/host-utils.c -------------------------------------------------------------------------------- /dm/qemu/host-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/host-utils.h -------------------------------------------------------------------------------- /dm/qemu/hppa-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hppa-dis.c -------------------------------------------------------------------------------- /dm/qemu/hppa.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hppa.ld -------------------------------------------------------------------------------- /dm/qemu/hw/9p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/9p.h -------------------------------------------------------------------------------- /dm/qemu/hw/a9mpcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/a9mpcore.c -------------------------------------------------------------------------------- /dm/qemu/hw/ac97.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ac97.c -------------------------------------------------------------------------------- /dm/qemu/hw/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/acpi.c -------------------------------------------------------------------------------- /dm/qemu/hw/acpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/acpi.h -------------------------------------------------------------------------------- /dm/qemu/hw/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/adb.c -------------------------------------------------------------------------------- /dm/qemu/hw/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/adb.h -------------------------------------------------------------------------------- /dm/qemu/hw/adlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/adlib.c -------------------------------------------------------------------------------- /dm/qemu/hw/ads7846.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ads7846.c -------------------------------------------------------------------------------- /dm/qemu/hw/an5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/an5206.c -------------------------------------------------------------------------------- /dm/qemu/hw/apb_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/apb_pci.c -------------------------------------------------------------------------------- /dm/qemu/hw/apb_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/apb_pci.h -------------------------------------------------------------------------------- /dm/qemu/hw/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/apic.c -------------------------------------------------------------------------------- /dm/qemu/hw/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/apic.h -------------------------------------------------------------------------------- /dm/qemu/hw/apm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/apm.c -------------------------------------------------------------------------------- /dm/qemu/hw/apm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/apm.h -------------------------------------------------------------------------------- /dm/qemu/hw/applesmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/applesmc.c -------------------------------------------------------------------------------- /dm/qemu/hw/arm-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/arm-misc.h -------------------------------------------------------------------------------- /dm/qemu/hw/arm_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/arm_boot.c -------------------------------------------------------------------------------- /dm/qemu/hw/arm_gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/arm_gic.c -------------------------------------------------------------------------------- /dm/qemu/hw/arm_pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/arm_pic.c -------------------------------------------------------------------------------- /dm/qemu/hw/armv7m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/armv7m.c -------------------------------------------------------------------------------- /dm/qemu/hw/audiodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/audiodev.h -------------------------------------------------------------------------------- /dm/qemu/hw/baum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/baum.c -------------------------------------------------------------------------------- /dm/qemu/hw/baum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/baum.h -------------------------------------------------------------------------------- /dm/qemu/hw/blizzard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/blizzard.c -------------------------------------------------------------------------------- /dm/qemu/hw/boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/boards.h -------------------------------------------------------------------------------- /dm/qemu/hw/bonito.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bonito.c -------------------------------------------------------------------------------- /dm/qemu/hw/bt-hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bt-hci.c -------------------------------------------------------------------------------- /dm/qemu/hw/bt-hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bt-hid.c -------------------------------------------------------------------------------- /dm/qemu/hw/bt-l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bt-l2cap.c -------------------------------------------------------------------------------- /dm/qemu/hw/bt-sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bt-sdp.c -------------------------------------------------------------------------------- /dm/qemu/hw/bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bt.c -------------------------------------------------------------------------------- /dm/qemu/hw/bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/bt.h -------------------------------------------------------------------------------- /dm/qemu/hw/cbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/cbus.c -------------------------------------------------------------------------------- /dm/qemu/hw/ccid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ccid.h -------------------------------------------------------------------------------- /dm/qemu/hw/cdrom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/cdrom.c -------------------------------------------------------------------------------- /dm/qemu/hw/collie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/collie.c -------------------------------------------------------------------------------- /dm/qemu/hw/cs4231.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/cs4231.c -------------------------------------------------------------------------------- /dm/qemu/hw/cs4231a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/cs4231a.c -------------------------------------------------------------------------------- /dm/qemu/hw/cuda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/cuda.c -------------------------------------------------------------------------------- /dm/qemu/hw/debugcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/debugcon.c -------------------------------------------------------------------------------- /dm/qemu/hw/dec_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/dec_pci.c -------------------------------------------------------------------------------- /dm/qemu/hw/dec_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/dec_pci.h -------------------------------------------------------------------------------- /dm/qemu/hw/devices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/devices.h -------------------------------------------------------------------------------- /dm/qemu/hw/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/dma.c -------------------------------------------------------------------------------- /dm/qemu/hw/dp8393x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/dp8393x.c -------------------------------------------------------------------------------- /dm/qemu/hw/ds1225y.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ds1225y.c -------------------------------------------------------------------------------- /dm/qemu/hw/ds1338.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ds1338.c -------------------------------------------------------------------------------- /dm/qemu/hw/e1000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/e1000.c -------------------------------------------------------------------------------- /dm/qemu/hw/e1000_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/e1000_hw.h -------------------------------------------------------------------------------- /dm/qemu/hw/ecc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ecc.c -------------------------------------------------------------------------------- /dm/qemu/hw/eepro100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/eepro100.c -------------------------------------------------------------------------------- /dm/qemu/hw/elf_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/elf_ops.h -------------------------------------------------------------------------------- /dm/qemu/hw/es1370.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/es1370.c -------------------------------------------------------------------------------- /dm/qemu/hw/escc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/escc.c -------------------------------------------------------------------------------- /dm/qemu/hw/escc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/escc.h -------------------------------------------------------------------------------- /dm/qemu/hw/esp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/esp.c -------------------------------------------------------------------------------- /dm/qemu/hw/esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/esp.h -------------------------------------------------------------------------------- /dm/qemu/hw/etraxfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/etraxfs.h -------------------------------------------------------------------------------- /dm/qemu/hw/fdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/fdc.c -------------------------------------------------------------------------------- /dm/qemu/hw/fdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/fdc.h -------------------------------------------------------------------------------- /dm/qemu/hw/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/flash.h -------------------------------------------------------------------------------- /dm/qemu/hw/fmopl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/fmopl.c -------------------------------------------------------------------------------- /dm/qemu/hw/fmopl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/fmopl.h -------------------------------------------------------------------------------- /dm/qemu/hw/fw_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/fw_cfg.c -------------------------------------------------------------------------------- /dm/qemu/hw/fw_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/fw_cfg.h -------------------------------------------------------------------------------- /dm/qemu/hw/g364fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/g364fb.c -------------------------------------------------------------------------------- /dm/qemu/hw/grlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/grlib.h -------------------------------------------------------------------------------- /dm/qemu/hw/gt64xxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/gt64xxx.c -------------------------------------------------------------------------------- /dm/qemu/hw/gumstix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/gumstix.c -------------------------------------------------------------------------------- /dm/qemu/hw/gus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/gus.c -------------------------------------------------------------------------------- /dm/qemu/hw/gusemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/gusemu.h -------------------------------------------------------------------------------- /dm/qemu/hw/gustate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/gustate.h -------------------------------------------------------------------------------- /dm/qemu/hw/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/hid.c -------------------------------------------------------------------------------- /dm/qemu/hw/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/hid.h -------------------------------------------------------------------------------- /dm/qemu/hw/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/hpet.c -------------------------------------------------------------------------------- /dm/qemu/hw/hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/hw.h -------------------------------------------------------------------------------- /dm/qemu/hw/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/i2c.c -------------------------------------------------------------------------------- /dm/qemu/hw/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/i2c.h -------------------------------------------------------------------------------- /dm/qemu/hw/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/i8254.c -------------------------------------------------------------------------------- /dm/qemu/hw/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/i8259.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide.h -------------------------------------------------------------------------------- /dm/qemu/hw/ide/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/ahci.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/ahci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/ahci.h -------------------------------------------------------------------------------- /dm/qemu/hw/ide/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/core.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/ich.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/ich.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/isa.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/mmio.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/pci.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/pci.h -------------------------------------------------------------------------------- /dm/qemu/hw/ide/piix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/piix.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/qdev.c -------------------------------------------------------------------------------- /dm/qemu/hw/ide/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ide/via.c -------------------------------------------------------------------------------- /dm/qemu/hw/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ioapic.c -------------------------------------------------------------------------------- /dm/qemu/hw/ioapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ioapic.h -------------------------------------------------------------------------------- /dm/qemu/hw/ioh3420.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ioh3420.c -------------------------------------------------------------------------------- /dm/qemu/hw/ioh3420.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ioh3420.h -------------------------------------------------------------------------------- /dm/qemu/hw/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/irq.c -------------------------------------------------------------------------------- /dm/qemu/hw/irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/irq.h -------------------------------------------------------------------------------- /dm/qemu/hw/isa-bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/isa-bus.c -------------------------------------------------------------------------------- /dm/qemu/hw/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/isa.h -------------------------------------------------------------------------------- /dm/qemu/hw/isa_mmio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/isa_mmio.c -------------------------------------------------------------------------------- /dm/qemu/hw/ivshmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ivshmem.c -------------------------------------------------------------------------------- /dm/qemu/hw/jazz_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/jazz_led.c -------------------------------------------------------------------------------- /dm/qemu/hw/kvmclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/kvmclock.c -------------------------------------------------------------------------------- /dm/qemu/hw/kvmclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/kvmclock.h -------------------------------------------------------------------------------- /dm/qemu/hw/lan9118.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lan9118.c -------------------------------------------------------------------------------- /dm/qemu/hw/lance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lance.c -------------------------------------------------------------------------------- /dm/qemu/hw/leon3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/leon3.c -------------------------------------------------------------------------------- /dm/qemu/hw/lm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm32.h -------------------------------------------------------------------------------- /dm/qemu/hw/lm32_pic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm32_pic.c -------------------------------------------------------------------------------- /dm/qemu/hw/lm32_pic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm32_pic.h -------------------------------------------------------------------------------- /dm/qemu/hw/lm32_sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm32_sys.c -------------------------------------------------------------------------------- /dm/qemu/hw/lm4549.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm4549.c -------------------------------------------------------------------------------- /dm/qemu/hw/lm4549.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm4549.h -------------------------------------------------------------------------------- /dm/qemu/hw/lm832x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/lm832x.c -------------------------------------------------------------------------------- /dm/qemu/hw/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/loader.c -------------------------------------------------------------------------------- /dm/qemu/hw/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/loader.h -------------------------------------------------------------------------------- /dm/qemu/hw/m48t59.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/m48t59.c -------------------------------------------------------------------------------- /dm/qemu/hw/macio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/macio.c -------------------------------------------------------------------------------- /dm/qemu/hw/max111x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/max111x.c -------------------------------------------------------------------------------- /dm/qemu/hw/max7310.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/max7310.c -------------------------------------------------------------------------------- /dm/qemu/hw/mcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mcf.h -------------------------------------------------------------------------------- /dm/qemu/hw/mcf5206.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mcf5206.c -------------------------------------------------------------------------------- /dm/qemu/hw/mcf5208.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mcf5208.c -------------------------------------------------------------------------------- /dm/qemu/hw/mcf_fec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mcf_fec.c -------------------------------------------------------------------------------- /dm/qemu/hw/mcf_intc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mcf_intc.c -------------------------------------------------------------------------------- /dm/qemu/hw/mcf_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mcf_uart.c -------------------------------------------------------------------------------- /dm/qemu/hw/mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mips.h -------------------------------------------------------------------------------- /dm/qemu/hw/mips_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mips_int.c -------------------------------------------------------------------------------- /dm/qemu/hw/mips_r4k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mips_r4k.c -------------------------------------------------------------------------------- /dm/qemu/hw/mipsnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mipsnet.c -------------------------------------------------------------------------------- /dm/qemu/hw/mpcore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mpcore.c -------------------------------------------------------------------------------- /dm/qemu/hw/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/msi.c -------------------------------------------------------------------------------- /dm/qemu/hw/msi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/msi.h -------------------------------------------------------------------------------- /dm/qemu/hw/msix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/msix.c -------------------------------------------------------------------------------- /dm/qemu/hw/msix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/msix.h -------------------------------------------------------------------------------- /dm/qemu/hw/msmouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/msmouse.c -------------------------------------------------------------------------------- /dm/qemu/hw/msmouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/msmouse.h -------------------------------------------------------------------------------- /dm/qemu/hw/mst_fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/mst_fpga.c -------------------------------------------------------------------------------- /dm/qemu/hw/musicpal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/musicpal.c -------------------------------------------------------------------------------- /dm/qemu/hw/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/nand.c -------------------------------------------------------------------------------- /dm/qemu/hw/ne2000.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ne2000.c -------------------------------------------------------------------------------- /dm/qemu/hw/ne2000.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ne2000.h -------------------------------------------------------------------------------- /dm/qemu/hw/nseries.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/nseries.c -------------------------------------------------------------------------------- /dm/qemu/hw/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/nvram.h -------------------------------------------------------------------------------- /dm/qemu/hw/omap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap.h -------------------------------------------------------------------------------- /dm/qemu/hw/omap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap1.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap2.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_clk.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_dma.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_dss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_dss.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_i2c.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_l4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_l4.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_mmc.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_spi.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_sx1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_sx1.c -------------------------------------------------------------------------------- /dm/qemu/hw/omap_tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/omap_tap.c -------------------------------------------------------------------------------- /dm/qemu/hw/onenand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/onenand.c -------------------------------------------------------------------------------- /dm/qemu/hw/palm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/palm.c -------------------------------------------------------------------------------- /dm/qemu/hw/pc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pc.c -------------------------------------------------------------------------------- /dm/qemu/hw/pc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pc.h -------------------------------------------------------------------------------- /dm/qemu/hw/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pci.c -------------------------------------------------------------------------------- /dm/qemu/hw/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pci.h -------------------------------------------------------------------------------- /dm/qemu/hw/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pcie.c -------------------------------------------------------------------------------- /dm/qemu/hw/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pcie.h -------------------------------------------------------------------------------- /dm/qemu/hw/pckbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pckbd.c -------------------------------------------------------------------------------- /dm/qemu/hw/pcmcia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pcmcia.h -------------------------------------------------------------------------------- /dm/qemu/hw/pcnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pcnet.c -------------------------------------------------------------------------------- /dm/qemu/hw/pcnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pcnet.h -------------------------------------------------------------------------------- /dm/qemu/hw/pcspk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pcspk.c -------------------------------------------------------------------------------- /dm/qemu/hw/piix4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/piix4.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl011.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl011.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl022.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl022.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl031.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl031.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl041.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl041.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl041.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl041.h -------------------------------------------------------------------------------- /dm/qemu/hw/pl041.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl041.hx -------------------------------------------------------------------------------- /dm/qemu/hw/pl050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl050.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl061.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl061.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl080.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl080.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl110.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl110.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl181.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl181.c -------------------------------------------------------------------------------- /dm/qemu/hw/pl190.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pl190.c -------------------------------------------------------------------------------- /dm/qemu/hw/ppc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ppc.c -------------------------------------------------------------------------------- /dm/qemu/hw/ppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ppc.h -------------------------------------------------------------------------------- /dm/qemu/hw/ppc405.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ppc405.h -------------------------------------------------------------------------------- /dm/qemu/hw/ppc440.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ppc440.c -------------------------------------------------------------------------------- /dm/qemu/hw/ppc440.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ppc440.h -------------------------------------------------------------------------------- /dm/qemu/hw/ppc4xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ppc4xx.h -------------------------------------------------------------------------------- /dm/qemu/hw/ps2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ps2.c -------------------------------------------------------------------------------- /dm/qemu/hw/ps2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ps2.h -------------------------------------------------------------------------------- /dm/qemu/hw/ptimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ptimer.c -------------------------------------------------------------------------------- /dm/qemu/hw/pxa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pxa.h -------------------------------------------------------------------------------- /dm/qemu/hw/pxa2xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/pxa2xx.c -------------------------------------------------------------------------------- /dm/qemu/hw/qdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/qdev.c -------------------------------------------------------------------------------- /dm/qemu/hw/qdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/qdev.h -------------------------------------------------------------------------------- /dm/qemu/hw/qxl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/qxl.c -------------------------------------------------------------------------------- /dm/qemu/hw/qxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/qxl.h -------------------------------------------------------------------------------- /dm/qemu/hw/r2d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/r2d.c -------------------------------------------------------------------------------- /dm/qemu/hw/rc4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/rc4030.c -------------------------------------------------------------------------------- /dm/qemu/hw/sb16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sb16.c -------------------------------------------------------------------------------- /dm/qemu/hw/sbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sbi.c -------------------------------------------------------------------------------- /dm/qemu/hw/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/scsi.h -------------------------------------------------------------------------------- /dm/qemu/hw/sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sd.c -------------------------------------------------------------------------------- /dm/qemu/hw/sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sd.h -------------------------------------------------------------------------------- /dm/qemu/hw/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/serial.c -------------------------------------------------------------------------------- /dm/qemu/hw/sga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sga.c -------------------------------------------------------------------------------- /dm/qemu/hw/sh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sh.h -------------------------------------------------------------------------------- /dm/qemu/hw/sh7750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sh7750.c -------------------------------------------------------------------------------- /dm/qemu/hw/sh_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sh_pci.c -------------------------------------------------------------------------------- /dm/qemu/hw/shix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/shix.c -------------------------------------------------------------------------------- /dm/qemu/hw/sm501.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sm501.c -------------------------------------------------------------------------------- /dm/qemu/hw/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/smbios.c -------------------------------------------------------------------------------- /dm/qemu/hw/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/smbios.h -------------------------------------------------------------------------------- /dm/qemu/hw/smbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/smbus.c -------------------------------------------------------------------------------- /dm/qemu/hw/smbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/smbus.h -------------------------------------------------------------------------------- /dm/qemu/hw/spapr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/spapr.c -------------------------------------------------------------------------------- /dm/qemu/hw/spapr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/spapr.h -------------------------------------------------------------------------------- /dm/qemu/hw/spitz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/spitz.c -------------------------------------------------------------------------------- /dm/qemu/hw/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/srp.h -------------------------------------------------------------------------------- /dm/qemu/hw/ssi-sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ssi-sd.c -------------------------------------------------------------------------------- /dm/qemu/hw/ssi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ssi.c -------------------------------------------------------------------------------- /dm/qemu/hw/ssi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/ssi.h -------------------------------------------------------------------------------- /dm/qemu/hw/sun4m.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sun4m.c -------------------------------------------------------------------------------- /dm/qemu/hw/sun4m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sun4m.h -------------------------------------------------------------------------------- /dm/qemu/hw/sun4u.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sun4u.c -------------------------------------------------------------------------------- /dm/qemu/hw/syborg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/syborg.c -------------------------------------------------------------------------------- /dm/qemu/hw/syborg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/syborg.h -------------------------------------------------------------------------------- /dm/qemu/hw/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sysbus.c -------------------------------------------------------------------------------- /dm/qemu/hw/sysbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/sysbus.h -------------------------------------------------------------------------------- /dm/qemu/hw/tcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/tcx.c -------------------------------------------------------------------------------- /dm/qemu/hw/tmp105.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/tmp105.c -------------------------------------------------------------------------------- /dm/qemu/hw/tosa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/tosa.c -------------------------------------------------------------------------------- /dm/qemu/hw/usb-bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/usb-bt.c -------------------------------------------------------------------------------- /dm/qemu/hw/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/usb.c -------------------------------------------------------------------------------- /dm/qemu/hw/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/usb.h -------------------------------------------------------------------------------- /dm/qemu/hw/vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/vga.c -------------------------------------------------------------------------------- /dm/qemu/hw/vhost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/vhost.c -------------------------------------------------------------------------------- /dm/qemu/hw/vhost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/vhost.h -------------------------------------------------------------------------------- /dm/qemu/hw/virtio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/virtio.c -------------------------------------------------------------------------------- /dm/qemu/hw/virtio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/virtio.h -------------------------------------------------------------------------------- /dm/qemu/hw/vmport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/vmport.c -------------------------------------------------------------------------------- /dm/qemu/hw/wm8750.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/wm8750.c -------------------------------------------------------------------------------- /dm/qemu/hw/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/xen.h -------------------------------------------------------------------------------- /dm/qemu/hw/xenfb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/xenfb.c -------------------------------------------------------------------------------- /dm/qemu/hw/xics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/xics.c -------------------------------------------------------------------------------- /dm/qemu/hw/xics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/xics.h -------------------------------------------------------------------------------- /dm/qemu/hw/xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/xilinx.h -------------------------------------------------------------------------------- /dm/qemu/hw/z2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/z2.c -------------------------------------------------------------------------------- /dm/qemu/hw/zaurus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/hw/zaurus.c -------------------------------------------------------------------------------- /dm/qemu/i386-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/i386-dis.c -------------------------------------------------------------------------------- /dm/qemu/i386.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/i386.ld -------------------------------------------------------------------------------- /dm/qemu/ia64-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ia64-dis.c -------------------------------------------------------------------------------- /dm/qemu/ia64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ia64.ld -------------------------------------------------------------------------------- /dm/qemu/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/input.c -------------------------------------------------------------------------------- /dm/qemu/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/int128.h -------------------------------------------------------------------------------- /dm/qemu/iohandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/iohandler.c -------------------------------------------------------------------------------- /dm/qemu/ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ioport.c -------------------------------------------------------------------------------- /dm/qemu/ioport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ioport.h -------------------------------------------------------------------------------- /dm/qemu/iorange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/iorange.h -------------------------------------------------------------------------------- /dm/qemu/iov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/iov.c -------------------------------------------------------------------------------- /dm/qemu/iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/iov.h -------------------------------------------------------------------------------- /dm/qemu/kvm-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/kvm-all.c -------------------------------------------------------------------------------- /dm/qemu/kvm-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/kvm-stub.c -------------------------------------------------------------------------------- /dm/qemu/kvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/kvm.h -------------------------------------------------------------------------------- /dm/qemu/linux-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/linux-aio.c -------------------------------------------------------------------------------- /dm/qemu/m68k-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/m68k-dis.c -------------------------------------------------------------------------------- /dm/qemu/m68k-semi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/m68k-semi.c -------------------------------------------------------------------------------- /dm/qemu/m68k.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/m68k.ld -------------------------------------------------------------------------------- /dm/qemu/main-loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/main-loop.c -------------------------------------------------------------------------------- /dm/qemu/main-loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/main-loop.h -------------------------------------------------------------------------------- /dm/qemu/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/memory.c -------------------------------------------------------------------------------- /dm/qemu/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/memory.h -------------------------------------------------------------------------------- /dm/qemu/migration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/migration.c -------------------------------------------------------------------------------- /dm/qemu/migration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/migration.h -------------------------------------------------------------------------------- /dm/qemu/mips-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/mips-dis.c -------------------------------------------------------------------------------- /dm/qemu/mips.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/mips.ld -------------------------------------------------------------------------------- /dm/qemu/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/module.c -------------------------------------------------------------------------------- /dm/qemu/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/module.h -------------------------------------------------------------------------------- /dm/qemu/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/monitor.c -------------------------------------------------------------------------------- /dm/qemu/monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/monitor.h -------------------------------------------------------------------------------- /dm/qemu/nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/nbd.c -------------------------------------------------------------------------------- /dm/qemu/nbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/nbd.h -------------------------------------------------------------------------------- /dm/qemu/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net.c -------------------------------------------------------------------------------- /dm/qemu/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net.h -------------------------------------------------------------------------------- /dm/qemu/net/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/dump.c -------------------------------------------------------------------------------- /dm/qemu/net/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/dump.h -------------------------------------------------------------------------------- /dm/qemu/net/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/queue.c -------------------------------------------------------------------------------- /dm/qemu/net/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/queue.h -------------------------------------------------------------------------------- /dm/qemu/net/slirp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/slirp.c -------------------------------------------------------------------------------- /dm/qemu/net/slirp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/slirp.h -------------------------------------------------------------------------------- /dm/qemu/net/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/tap.c -------------------------------------------------------------------------------- /dm/qemu/net/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/tap.h -------------------------------------------------------------------------------- /dm/qemu/net/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/util.c -------------------------------------------------------------------------------- /dm/qemu/net/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/util.h -------------------------------------------------------------------------------- /dm/qemu/net/vde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/vde.c -------------------------------------------------------------------------------- /dm/qemu/net/vde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/net/vde.h -------------------------------------------------------------------------------- /dm/qemu/notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/notify.c -------------------------------------------------------------------------------- /dm/qemu/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/notify.h -------------------------------------------------------------------------------- /dm/qemu/os-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/os-posix.c -------------------------------------------------------------------------------- /dm/qemu/os-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/os-win32.c -------------------------------------------------------------------------------- /dm/qemu/osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/osdep.c -------------------------------------------------------------------------------- /dm/qemu/osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/osdep.h -------------------------------------------------------------------------------- /dm/qemu/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/path.c -------------------------------------------------------------------------------- /dm/qemu/pc-bios/keymaps/nl-be: -------------------------------------------------------------------------------- 1 | # Dutch (Belgium) 2 | map 0x813 3 | include common 4 | -------------------------------------------------------------------------------- /dm/qemu/pci-ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/pci-ids.txt -------------------------------------------------------------------------------- /dm/qemu/pflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/pflib.c -------------------------------------------------------------------------------- /dm/qemu/pflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/pflib.h -------------------------------------------------------------------------------- /dm/qemu/poison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/poison.h -------------------------------------------------------------------------------- /dm/qemu/ppc-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ppc-dis.c -------------------------------------------------------------------------------- /dm/qemu/ppc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ppc.ld -------------------------------------------------------------------------------- /dm/qemu/ppc64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ppc64.ld -------------------------------------------------------------------------------- /dm/qemu/qbool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qbool.c -------------------------------------------------------------------------------- /dm/qemu/qbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qbool.h -------------------------------------------------------------------------------- /dm/qemu/qdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qdict.c -------------------------------------------------------------------------------- /dm/qemu/qdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qdict.h -------------------------------------------------------------------------------- /dm/qemu/qemu-aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-aio.h -------------------------------------------------------------------------------- /dm/qemu/qemu-char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-char.c -------------------------------------------------------------------------------- /dm/qemu/qemu-char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-char.h -------------------------------------------------------------------------------- /dm/qemu/qemu-ga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-ga.c -------------------------------------------------------------------------------- /dm/qemu/qemu-img.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-img.c -------------------------------------------------------------------------------- /dm/qemu/qemu-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-io.c -------------------------------------------------------------------------------- /dm/qemu/qemu-lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-lock.h -------------------------------------------------------------------------------- /dm/qemu/qemu-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-log.h -------------------------------------------------------------------------------- /dm/qemu/qemu-nbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-nbd.c -------------------------------------------------------------------------------- /dm/qemu/qemu-tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-tls.h -------------------------------------------------------------------------------- /dm/qemu/qemu-tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-tool.c -------------------------------------------------------------------------------- /dm/qemu/qemu-x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu-x509.h -------------------------------------------------------------------------------- /dm/qemu/qemu.sasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qemu.sasl -------------------------------------------------------------------------------- /dm/qemu/qerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qerror.c -------------------------------------------------------------------------------- /dm/qemu/qerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qerror.h -------------------------------------------------------------------------------- /dm/qemu/qfloat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qfloat.c -------------------------------------------------------------------------------- /dm/qemu/qfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qfloat.h -------------------------------------------------------------------------------- /dm/qemu/qint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qint.c -------------------------------------------------------------------------------- /dm/qemu/qint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qint.h -------------------------------------------------------------------------------- /dm/qemu/qjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qjson.c -------------------------------------------------------------------------------- /dm/qemu/qjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qjson.h -------------------------------------------------------------------------------- /dm/qemu/qlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qlist.c -------------------------------------------------------------------------------- /dm/qemu/qlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qlist.h -------------------------------------------------------------------------------- /dm/qemu/qmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qmp.c -------------------------------------------------------------------------------- /dm/qemu/qobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qobject.h -------------------------------------------------------------------------------- /dm/qemu/qstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qstring.c -------------------------------------------------------------------------------- /dm/qemu/qstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/qstring.h -------------------------------------------------------------------------------- /dm/qemu/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/range.h -------------------------------------------------------------------------------- /dm/qemu/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/readline.c -------------------------------------------------------------------------------- /dm/qemu/readline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/readline.h -------------------------------------------------------------------------------- /dm/qemu/rules.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/rules.mak -------------------------------------------------------------------------------- /dm/qemu/s390-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/s390-dis.c -------------------------------------------------------------------------------- /dm/qemu/s390.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/s390.ld -------------------------------------------------------------------------------- /dm/qemu/savevm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/savevm.c -------------------------------------------------------------------------------- /dm/qemu/sh4-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/sh4-dis.c -------------------------------------------------------------------------------- /dm/qemu/slirp/if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/slirp/if.c -------------------------------------------------------------------------------- /dm/qemu/slirp/if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/slirp/if.h -------------------------------------------------------------------------------- /dm/qemu/slirp/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/slirp/ip.h -------------------------------------------------------------------------------- /dm/qemu/slirp/tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/slirp/tcp.h -------------------------------------------------------------------------------- /dm/qemu/slirp/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/slirp/udp.c -------------------------------------------------------------------------------- /dm/qemu/slirp/udp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/slirp/udp.h -------------------------------------------------------------------------------- /dm/qemu/sparc-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/sparc-dis.c -------------------------------------------------------------------------------- /dm/qemu/sparc.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/sparc.ld -------------------------------------------------------------------------------- /dm/qemu/sparc64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/sparc64.ld -------------------------------------------------------------------------------- /dm/qemu/sysemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/sysemu.h -------------------------------------------------------------------------------- /dm/qemu/target-m68k/machine.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dm/qemu/target-sh4/machine.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dm/qemu/targphys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/targphys.h -------------------------------------------------------------------------------- /dm/qemu/tcg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tcg/LICENSE -------------------------------------------------------------------------------- /dm/qemu/tcg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tcg/README -------------------------------------------------------------------------------- /dm/qemu/tcg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tcg/TODO -------------------------------------------------------------------------------- /dm/qemu/tcg/tcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tcg/tcg.c -------------------------------------------------------------------------------- /dm/qemu/tcg/tcg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tcg/tcg.h -------------------------------------------------------------------------------- /dm/qemu/tci-dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tci-dis.c -------------------------------------------------------------------------------- /dm/qemu/tci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/tci.c -------------------------------------------------------------------------------- /dm/qemu/thunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/thunk.c -------------------------------------------------------------------------------- /dm/qemu/thunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/thunk.h -------------------------------------------------------------------------------- /dm/qemu/ui/cocoa.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/cocoa.m -------------------------------------------------------------------------------- /dm/qemu/ui/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/curses.c -------------------------------------------------------------------------------- /dm/qemu/ui/d3des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/d3des.c -------------------------------------------------------------------------------- /dm/qemu/ui/d3des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/d3des.h -------------------------------------------------------------------------------- /dm/qemu/ui/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/sdl.c -------------------------------------------------------------------------------- /dm/qemu/ui/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/vnc.c -------------------------------------------------------------------------------- /dm/qemu/ui/vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/ui/vnc.h -------------------------------------------------------------------------------- /dm/qemu/usb-bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/usb-bsd.c -------------------------------------------------------------------------------- /dm/qemu/usb-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/usb-linux.c -------------------------------------------------------------------------------- /dm/qemu/usb-redir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/usb-redir.c -------------------------------------------------------------------------------- /dm/qemu/usb-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/usb-stub.c -------------------------------------------------------------------------------- /dm/qemu/user-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/user-exec.c -------------------------------------------------------------------------------- /dm/qemu/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/version.rc -------------------------------------------------------------------------------- /dm/qemu/vgafont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/vgafont.h -------------------------------------------------------------------------------- /dm/qemu/vl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/vl.c -------------------------------------------------------------------------------- /dm/qemu/x86_64.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/x86_64.ld -------------------------------------------------------------------------------- /dm/qemu/xen-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/xen-all.c -------------------------------------------------------------------------------- /dm/qemu/xen-stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu/xen-stub.c -------------------------------------------------------------------------------- /dm/qemu_bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu_bswap.h -------------------------------------------------------------------------------- /dm/qemu_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu_glue.c -------------------------------------------------------------------------------- /dm/qemu_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu_glue.h -------------------------------------------------------------------------------- /dm/qemu_qdev-prop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu_qdev-prop.h -------------------------------------------------------------------------------- /dm/qemu_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu_queue.h -------------------------------------------------------------------------------- /dm/qemu_savevm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/qemu_savevm.h -------------------------------------------------------------------------------- /dm/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/queue.h -------------------------------------------------------------------------------- /dm/queue2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/queue2.h -------------------------------------------------------------------------------- /dm/rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/rbtree.c -------------------------------------------------------------------------------- /dm/rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/rbtree.h -------------------------------------------------------------------------------- /dm/scsi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/scsi.h -------------------------------------------------------------------------------- /dm/sg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/sg.h -------------------------------------------------------------------------------- /dm/shared-folders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/shared-folders.c -------------------------------------------------------------------------------- /dm/shared-folders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/shared-folders.h -------------------------------------------------------------------------------- /dm/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/sockets.h -------------------------------------------------------------------------------- /dm/sysbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/sysbus.c -------------------------------------------------------------------------------- /dm/sysbus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/sysbus.h -------------------------------------------------------------------------------- /dm/thread-event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/thread-event.h -------------------------------------------------------------------------------- /dm/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/timer.c -------------------------------------------------------------------------------- /dm/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/timer.h -------------------------------------------------------------------------------- /dm/tmp_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/tmp_glue.h -------------------------------------------------------------------------------- /dm/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/typedef.h -------------------------------------------------------------------------------- /dm/uuidgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uuidgen.c -------------------------------------------------------------------------------- /dm/uuidgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uuidgen.h -------------------------------------------------------------------------------- /dm/uxen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uxen.c -------------------------------------------------------------------------------- /dm/uxen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uxen.h -------------------------------------------------------------------------------- /dm/uxendm-res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uxendm-res.rc -------------------------------------------------------------------------------- /dm/uxenh264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uxenh264.c -------------------------------------------------------------------------------- /dm/uxenh264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/uxenh264.h -------------------------------------------------------------------------------- /dm/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/version.c -------------------------------------------------------------------------------- /dm/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/version.h -------------------------------------------------------------------------------- /dm/vm-save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vm-save.c -------------------------------------------------------------------------------- /dm/vm-save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vm-save.h -------------------------------------------------------------------------------- /dm/vm-savefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vm-savefile.h -------------------------------------------------------------------------------- /dm/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vm.c -------------------------------------------------------------------------------- /dm/vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vm.h -------------------------------------------------------------------------------- /dm/vmstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vmstate.h -------------------------------------------------------------------------------- /dm/vnc-keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vnc-keymap.h -------------------------------------------------------------------------------- /dm/vram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vram.c -------------------------------------------------------------------------------- /dm/vram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/vram.h -------------------------------------------------------------------------------- /dm/webdav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/webdav.c -------------------------------------------------------------------------------- /dm/webdav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/webdav.h -------------------------------------------------------------------------------- /dm/whpx/WinHvGlue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/WinHvGlue.h -------------------------------------------------------------------------------- /dm/whpx/apic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/apic.h -------------------------------------------------------------------------------- /dm/whpx/atto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/atto.c -------------------------------------------------------------------------------- /dm/whpx/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/core.c -------------------------------------------------------------------------------- /dm/whpx/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/core.h -------------------------------------------------------------------------------- /dm/whpx/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/cpu.h -------------------------------------------------------------------------------- /dm/whpx/cpu_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/cpu_glue.h -------------------------------------------------------------------------------- /dm/whpx/emulate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/emulate.c -------------------------------------------------------------------------------- /dm/whpx/emulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/emulate.h -------------------------------------------------------------------------------- /dm/whpx/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/hpet.c -------------------------------------------------------------------------------- /dm/whpx/hpet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/hpet.h -------------------------------------------------------------------------------- /dm/whpx/hpet_emul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/hpet_emul.h -------------------------------------------------------------------------------- /dm/whpx/i8254.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/i8254.c -------------------------------------------------------------------------------- /dm/whpx/i8259.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/i8259.c -------------------------------------------------------------------------------- /dm/whpx/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/ioapic.c -------------------------------------------------------------------------------- /dm/whpx/ioapic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/ioapic.h -------------------------------------------------------------------------------- /dm/whpx/irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/irq.c -------------------------------------------------------------------------------- /dm/whpx/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/list.h -------------------------------------------------------------------------------- /dm/whpx/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/loader.c -------------------------------------------------------------------------------- /dm/whpx/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/loader.h -------------------------------------------------------------------------------- /dm/whpx/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/memory.c -------------------------------------------------------------------------------- /dm/whpx/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/paging.h -------------------------------------------------------------------------------- /dm/whpx/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/util.c -------------------------------------------------------------------------------- /dm/whpx/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/util.h -------------------------------------------------------------------------------- /dm/whpx/v4v-proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v-proxy.c -------------------------------------------------------------------------------- /dm/whpx/v4v-whpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v-whpx.c -------------------------------------------------------------------------------- /dm/whpx/v4v-whpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v-whpx.h -------------------------------------------------------------------------------- /dm/whpx/v4v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v.c -------------------------------------------------------------------------------- /dm/whpx/v4v_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v_alloc.h -------------------------------------------------------------------------------- /dm/whpx/v4v_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v_err.h -------------------------------------------------------------------------------- /dm/whpx/v4v_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/v4v_glue.h -------------------------------------------------------------------------------- /dm/whpx/viridian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/viridian.c -------------------------------------------------------------------------------- /dm/whpx/viridian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/viridian.h -------------------------------------------------------------------------------- /dm/whpx/whpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/whpx.c -------------------------------------------------------------------------------- /dm/whpx/whpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/whpx/whpx.h -------------------------------------------------------------------------------- /dm/win32-logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/win32-logging.c -------------------------------------------------------------------------------- /dm/win32-touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/win32-touch.h -------------------------------------------------------------------------------- /dm/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/win32.c -------------------------------------------------------------------------------- /dm/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/win32.h -------------------------------------------------------------------------------- /dm/xen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/xen.c -------------------------------------------------------------------------------- /dm/xen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/xen.h -------------------------------------------------------------------------------- /dm/yajl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/dm/yajl.h -------------------------------------------------------------------------------- /osx/Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/Config.mk -------------------------------------------------------------------------------- /osx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/Makefile -------------------------------------------------------------------------------- /osx/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/TODO -------------------------------------------------------------------------------- /osx/cow-kext/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/cow-kext/util.h -------------------------------------------------------------------------------- /osx/img-tools/bfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/img-tools/bfs.c -------------------------------------------------------------------------------- /osx/img-tools/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/img-tools/hfs.c -------------------------------------------------------------------------------- /osx/img-tools/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/img-tools/sys.c -------------------------------------------------------------------------------- /osx/libvhd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/libvhd/Makefile -------------------------------------------------------------------------------- /osx/libxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/libxc/Makefile -------------------------------------------------------------------------------- /osx/uxendm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/uxendm/Makefile -------------------------------------------------------------------------------- /osx/uxenv4vservice/.gitignore: -------------------------------------------------------------------------------- 1 | xcuserdata 2 | -------------------------------------------------------------------------------- /osx/xenctx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/xenctx/Makefile -------------------------------------------------------------------------------- /osx/yajl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/osx/yajl/Makefile -------------------------------------------------------------------------------- /tools/Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/tools/Config.mk -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/Makefile.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/tools/Makefile.make -------------------------------------------------------------------------------- /tools/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/tools/config.guess -------------------------------------------------------------------------------- /tools/cross-mingw/gdb-texinfo.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uxen-interface.txt: -------------------------------------------------------------------------------- 1 | # 2 | # versioned uxen interfaces 3 | # 4 | uxenconsole_windows 1 5 | -------------------------------------------------------------------------------- /uxen-resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/uxen-resources.h -------------------------------------------------------------------------------- /vm-support/linux/uxenplatform/platform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vm-support/osx/Config.mk: -------------------------------------------------------------------------------- 1 | # intentionally empty 2 | 3 | -------------------------------------------------------------------------------- /vm-support/osx/uxenps2/uXenPS2Controller/uXenPS2Controller-Prefix.pch: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vm-support/osx/uxenps2/uXenPS2Keyboard/uXenPS2Keyboard-Prefix.pch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vm-support/osx/uxenps2/uXenPS2Mouse/uXenPS2Mouse-Prefix.pch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vm-support/windows/uxenclipboard/defroute.c: -------------------------------------------------------------------------------- 1 | #include "../common/defroute.c" 2 | 3 | -------------------------------------------------------------------------------- /vm-support/windows/uxendisp/wddm/dirs: -------------------------------------------------------------------------------- 1 | DIRS= display miniport 2 | -------------------------------------------------------------------------------- /vm-support/windows/uxendisp/xddm/dirs: -------------------------------------------------------------------------------- 1 | DIRS= display miniport 2 | -------------------------------------------------------------------------------- /vm-support/windows/uxenevent/defroute.c: -------------------------------------------------------------------------------- 1 | #include "../common/defroute.c" 2 | 3 | -------------------------------------------------------------------------------- /vm-support/windows/uxensf/dirs: -------------------------------------------------------------------------------- 1 | DIRS= dll driver 2 | -------------------------------------------------------------------------------- /vm-support/windows/uxensf/dll/defroute.c: -------------------------------------------------------------------------------- 1 | #include "../../common/defroute.c" 2 | 3 | -------------------------------------------------------------------------------- /vm-support/windows/uxensf/driver/intrin.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows/Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/windows/Config.mk -------------------------------------------------------------------------------- /windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/windows/Makefile -------------------------------------------------------------------------------- /windows/kdx/hdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/windows/kdx/hdb.cpp -------------------------------------------------------------------------------- /windows/kdx/kdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/windows/kdx/kdx.h -------------------------------------------------------------------------------- /windows/kdx/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/windows/kdx/sources -------------------------------------------------------------------------------- /windows/ntfs-3g/ntfs-3g/m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/.gitignore -------------------------------------------------------------------------------- /xen/COPYING.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/COPYING.xen -------------------------------------------------------------------------------- /xen/Config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/Config.mk -------------------------------------------------------------------------------- /xen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/Makefile -------------------------------------------------------------------------------- /xen/arch/x86/apic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/apic.c -------------------------------------------------------------------------------- /xen/arch/x86/e820.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/e820.c -------------------------------------------------------------------------------- /xen/arch/x86/hpet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/hpet.c -------------------------------------------------------------------------------- /xen/arch/x86/i387.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/i387.c -------------------------------------------------------------------------------- /xen/arch/x86/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/mm.c -------------------------------------------------------------------------------- /xen/arch/x86/msi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/msi.c -------------------------------------------------------------------------------- /xen/arch/x86/nmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/nmi.c -------------------------------------------------------------------------------- /xen/arch/x86/numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/numa.c -------------------------------------------------------------------------------- /xen/arch/x86/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/pci.c -------------------------------------------------------------------------------- /xen/arch/x86/poke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/poke.c -------------------------------------------------------------------------------- /xen/arch/x86/smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/smp.c -------------------------------------------------------------------------------- /xen/arch/x86/srat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/srat.c -------------------------------------------------------------------------------- /xen/arch/x86/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/arch/x86/time.c -------------------------------------------------------------------------------- /xen/common/attovm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/attovm.c -------------------------------------------------------------------------------- /xen/common/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/bitmap.c -------------------------------------------------------------------------------- /xen/common/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/cpu.c -------------------------------------------------------------------------------- /xen/common/domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/domain.c -------------------------------------------------------------------------------- /xen/common/domctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/domctl.c -------------------------------------------------------------------------------- /xen/common/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/kernel.c -------------------------------------------------------------------------------- /xen/common/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/lib.c -------------------------------------------------------------------------------- /xen/common/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/memory.c -------------------------------------------------------------------------------- /xen/common/perfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/perfc.c -------------------------------------------------------------------------------- /xen/common/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/sort.c -------------------------------------------------------------------------------- /xen/common/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/string.c -------------------------------------------------------------------------------- /xen/common/sysctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/sysctl.c -------------------------------------------------------------------------------- /xen/common/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/time.c -------------------------------------------------------------------------------- /xen/common/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/timer.c -------------------------------------------------------------------------------- /xen/common/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/trace.c -------------------------------------------------------------------------------- /xen/common/v4v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/common/v4v.c -------------------------------------------------------------------------------- /xen/crypto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/crypto/Makefile -------------------------------------------------------------------------------- /xen/crypto/vmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/crypto/vmac.c -------------------------------------------------------------------------------- /xen/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/tools/Makefile -------------------------------------------------------------------------------- /xen/tools/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/tools/symbols.c -------------------------------------------------------------------------------- /xen/uxen/i386pe.xr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/uxen/i386pe.xr -------------------------------------------------------------------------------- /xen/uxen/i386pep.xr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/uxen/i386pep.xr -------------------------------------------------------------------------------- /xen/uxen/kdxinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/uxen/kdxinfo.c -------------------------------------------------------------------------------- /xen/uxen/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/uxen/main.c -------------------------------------------------------------------------------- /xen/uxen/mapcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/uxen/mapcache.c -------------------------------------------------------------------------------- /xen/uxen/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uxen-virt/uxen/HEAD/xen/uxen/time.c --------------------------------------------------------------------------------