/qemu/ui/ |
H A D | meson.build | 8 'input-keymap.c', 9 'input-legacy.c', 10 'input-barrier.c', 12 'kbd-state.c', 14 'qemu-pixman.c', 15 'ui-hmp-cmds.c', 16 'ui-qmp-cmds.c', 19 system_ss.add(when: pixman, if_true: files('console-vc.c'), if_false: files('console-vc-stubs.c')) 21 system_ss.add(files('dbus-module.c')) 23 system_ss.add([spice_headers, files('spice-module.c')]) [all …]
|
H A D | trace-events | 20 # gtk-egl.c 21 # gtk-gl-area.c 22 # gtk.c 33 # vnc-auth-sasl.c 34 # vnc-auth-vencrypt.c 35 # vnc-ws.c 36 # vnc.c 40 vnc_key_event_map(bool down, int sym, int keycode, const char *name) "down %d, sym 0x%x -> keycode … 43 vnc_msg_server_audio_begin(void *state, void *ioc) "VNC server msg audio begin state=%p ioc=%p" 44 vnc_msg_server_audio_end(void *state, void *ioc) "VNC server msg audio end state=%p ioc=%p" [all …]
|
H A D | vnc.h | 2 * QEMU VNC display driver 38 #include "io/channel-socket.h" 39 #include "io/channel-tls.h" 40 #include "io/net-listener.h" 45 #include "vnc-palette.h" 46 #include "vnc-enc-zrle.h" 47 #include "ui/kbd-state.h" 92 #define VNC_DIRTY_BPL(x) (sizeof((x)->dirty) / VNC_MAX_HEIGHT * BITS_PER_BYTE) 102 #include "vnc-auth-vencrypt.h" 104 #include "vnc-auth-sasl.h" [all …]
|
H A D | gtk.c | 2 * GTK UI 22 * Portions from gtk-vnc (originally licensed under the LGPL v2+): 24 * GTK VNC Widget 27 * Copyright (C) 2009-2010 Daniel P. Berrange <dan@berrange.com> 35 #include "qapi/qapi-commands-control.h" 36 #include "qapi/qapi-commands-machine.h" 37 #include "qapi/qapi-commands-misc.h" 39 #include "qemu/error-report.h" 40 #include "qemu/main-loop.h" 41 #include "qemu-main.h" [all …]
|
/qemu/docs/ |
H A D | multiseat.txt | 6 ------------ 10 list includes sdl2, gtk (both 2+3) and vnc: 12 ./configure --enable-sdl 16 ./configure --enable-gtk 19 Next put together the qemu command line (sdk/gtk): 21 qemu -accel kvm -usb $memory $disk $whatever \ 22 -display [ sdl | gtk ] \ 23 -vga std \ 24 -device usb-tablet 27 standard ps/2 keyboard (implicitly there) and the usb-tablet. Now the [all …]
|
/qemu/.gitlab-ci.d/cirrus/ |
H A D | macos-14.vars | 1 # THIS FILE WAS AUTO-GENERATED 3 # $ lcitool variables macos-14 qemu 5 # https://gitlab.com/libvirt/libvirt-ci 14 …-sed gnutls gtk+3 gtk-vnc jemalloc jpeg-turbo json-c libcbor libepoxy libffi libgcrypt libiscsi li… 15 PYPI_PKGS='PyYAML numpy pillow sphinx sphinx-rtd-theme tomli'
|
H A D | freebsd-14.vars | 1 # THIS FILE WAS AUTO-GENERATED 3 # $ lcitool variables freebsd-14 qemu 5 # https://gitlab.com/libvirt/libvirt-ci 14 …-lib bash bison bzip2 ca_root_nss capstone4 ccache4 cmocka ctags curl cyrus-sasl dbus diffutils dt…
|
/qemu/scripts/ |
H A D | meson-buildoptions.sh | 1 # This file is generated by meson-buildoptions.py, do not edit! 3 printf "%s\n" ' --audio-drv-list=CHOICES Set audio driver list [default] (choices: alsa/co' 6 printf "%s\n" ' --bindir=VALUE Executable directory [bin]' 7 printf "%s\n" ' --block-drv-ro-whitelist=VALUE' 8 printf "%s\n" ' set block driver read-only whitelist (by default' 9 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 10 printf "%s\n" ' --block-drv-rw-whitelist=VALUE' 11 printf "%s\n" ' set block driver read-write whitelist (by default' 12 printf "%s\n" ' affects only QEMU, not tools like qemu-img)' 13 printf "%s\n" ' --datadir=VALUE Data file directory [share]' [all …]
|
/qemu/qapi/ |
H A D | ui.json | 1 # -*- Mode: Python -*- 20 'data': [ 'vnc', 'spice' ] } 45 # - 'vnc' to modify the VNC server password 46 # - 'spice' to modify the Spice server password 52 # VNC, only 'keep' is currently implemented. 61 'data': { 'vnc': 'SetPasswordOptionsVnc' } } 66 # Options for set_password specific to the VNC protocol. 82 # - If Spice is not enabled, DeviceNotFound 86 # .. qmp-example:: 88 # -> { "execute": "set_password", "arguments": { "protocol": "vnc", [all …]
|
H A D | char.json | 1 # -*- Mode: Python -*- 20 # @frontend-open: shows whether the frontend device attached to this 32 'frontend-open': 'bool' } } 35 # @query-chardev: 43 # .. qmp-example:: 45 # -> { "execute": "query-chardev" } 46 # <- { 51 # "frontend-open": false 56 # "frontend-open": true 61 # "frontend-open": true [all …]
|
/qemu/ |
H A D | meson_options.txt | 1 # These options do not correspond to a --enable/--disable-* option 3 # scripts/meson-buildoptions.py's SKIP_OPTIONS constant too. 9 option('qemu_firmwarepath', type : 'array', value : ['share/qemu-firmware'], 12 description: 'use specified string as sub-version of the package') 25 …description: 'set block driver read-write whitelist (by default affects only QEMU, not tools like … 27 …description: 'set block driver read-only whitelist (by default affects only QEMU, not tools like q… 28 option('interp_prefix', type : 'string', value : '/usr/gnemul/qemu-%M', 33 description: 'fuzzing engine library for OSS-Fuzz') 40 # Everything else can be set via --enable/--disable-* option 42 # here make sure to run "make update-buildoptions". [all …]
|
H A D | meson.build | 15 meson.add_postconf_script(find_program('scripts/symlink-install-tree.py')) 28 config_host = keyval.load(meson.current_build_dir() / 'config-host.mak') 35 tmpdir = meson.current_build_dir() / 'meson-private/temp' 66 have_linux_user = have_linux_user or target.endswith('linux-user') 67 have_bsd_user = have_bsd_user or target.endswith('bsd-user') 68 have_system = have_system or target.endswith('-softmmu') 113 …dgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"') 120 message('To use Rust you can install a new version with "cargo install bindgen-cli"') 128 '--rustc-version', rustc.version(), 129 '--workspace', meson.project_source_root() / 'rust'] [all …]
|
H A D | qemu-options.hx | 14 "-h or -help display this help and exit\n", QEMU_ARCH_ALL) 16 ``-h`` 21 "-version display version information and exit\n", QEMU_ARCH_ALL) 23 ``-version`` 28 "-machine [type=]name[,prop[=value][,...]]\n" 29 " selects emulated machine ('-machine help' for list)\n" 33 " dump-guest-core=on|off include guest memory in a core dump (default=on)\n" 34 " mem-merge=on|off controls memory merge support (default: on)\n" 35 " aes-key-wrap=on|off controls support for AES key wrapping (default=on)\n" 36 " dea-key-wrap=on|off controls support for DEA key wrapping (default=on)\n" [all …]
|
/qemu/tests/docker/dockerfiles/ |
H A D | alpine.docker | 1 # THIS FILE WAS AUTO-GENERATED 3 # $ lcitool dockerfile --layers all alpine-321 qemu 5 # https://gitlab.com/libvirt/libvirt-ci 12 alsa-lib-dev \ 13 attr-dev \ 18 bzip2-dev \ 19 ca-certificates \ 20 capstone-dev \ 22 ceph-dev \ 24 cmocka-dev \ [all …]
|
H A D | opensuse-leap.docker | 1 # THIS FILE WAS AUTO-GENERATED 3 # $ lcitool dockerfile --layers all opensuse-leap-15 qemu 5 # https://gitlab.com/libvirt/libvirt-ci 9 RUN zypper update -y && \ 10 …zypper addrepo -fc https://download.opensuse.org/update/leap/15.6/backports/openSUSE:Backports:SLE… 11 zypper install -y \ 12 Mesa-devel \ 13 alsa-lib-devel \ 17 brlapi-devel \ 19 ca-certificates \ [all …]
|
/qemu/tests/vm/generated/ |
H A D | freebsd.json | 10 "alsa-lib", 20 "cyrus-sasl", 25 "fusefs-libs3", 32 "gtk-vnc", 34 "json-c", 38 "libjpeg-turbo", 41 "libspice-server", 55 "py311-numpy", 56 "py311-pillow", 57 "py311-pip", [all …]
|
/qemu/tests/lcitool/projects/ |
H A D | qemu.yml | 1 --- 3 - alsa 4 - bash 5 - bc 6 - bindgen 7 - bison 8 - brlapi 9 - bzip2 10 - bzip2-libs 11 - capstone [all …]
|
/qemu/include/ui/ |
H A D | clipboard.h | 16 * Typical users are user interfaces (gtk), remote access protocols 17 * (vnc) and devices talking to the guest (vdagent). 36 * @QEMU_CLIPBOARD_TYPE_TEXT: text/plain; charset=utf-8 213 * QemuClipboardInfo is a reference-counted struct. The new struct is
|
/qemu/scripts/coverity-scan/ |
H A D | run-coverity-scan | 1 #!/bin/sh -e 8 # See the COPYING file in the top-level directory. 10 # Copyright (c) 2017-2020 Linaro Limited 14 # run the (closed-source) coverity build tools, so don't 18 # tree, and that tree is a fresh clean one, because we do an in-tree 21 # regular expressions it uses; an out-of-tree build won't work for this.) 31 # --check-upload-only : return success if upload is possible 32 # --dry-run : run the tools, but don't actually do the upload 33 # --docker : create and work inside a container 34 # --docker-engine : specify the container engine to use (docker/podman/auto); [all …]
|
/qemu/.gitlab-ci.d/ |
H A D | buildtest.yml | 2 - local: '/.gitlab-ci.d/buildtest-template.yml' 4 build-system-alpine: 6 - .native_build_job_template 7 - .native_build_artifact_template 9 - job: amd64-alpine-container 12 TARGETS: avr-softmmu loongarch64-softmmu mips64-softmmu mipsel-softmmu 13 MAKE_CHECK_ARGS: check-build 14 CONFIGURE_ARGS: --enable-docs --enable-trace-backends=log,simple,syslog 16 check-system-alpine: 19 - job: build-system-alpine [all …]
|
/qemu/docs/about/ |
H A D | removed-features.rst | 10 -------------------------------------- 12 ``-hdachs`` (removed in 2.12) 15 The geometry defined by ``-hdachs c,h,s,t`` should now be specified via 16 ``-device ide-hd,drive=dr,cyls=c,heads=h,secs=s,bios-chs-trans=t`` 17 (together with ``-drive if=none,id=dr,...``). 19 ``-net channel`` (removed in 2.12) 22 This option has been replaced by ``-net user,guestfwd=...``. 24 ``-net dump`` (removed in 2.12) 27 ``-net dump[,vlan=n][,file=filename][,len=maxlen]`` has been replaced by 28 ``-object filter-dump,id=id,netdev=dev[,file=filename][,maxlen=maxlen]``. [all …]
|
/qemu/system/ |
H A D | vl.c | 4 * Copyright (c) 2003-2008 Fabrice Bellard 26 #include "qemu/help-texts.h" 30 #include "qemu/target-info.h" 31 #include "exec/cpu-common.h" 32 #include "exec/page-vary.h" 33 #include "hw/qdev-properties.h" 34 #include "qapi/compat-policy.h" 39 #include "qemu-version.h" 42 #include "qemu/hw-version.h" 44 #include "qemu/target-info.h" [all …]
|