Home
last modified time | relevance | path

Searched +full:- +full:- +full:refresh +full:- +full:keys (Results 1 – 9 of 9) sorted by relevance

/qemu/include/standard-headers/linux/
H A Dinput-event-codes.h1 /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
6 * This file is not only included from C-code but also from devicetree source
9 * Copyright (c) 1999-2002 Vojtech Pavlik
65 * Keys and buttons
67 * Most of the keys/buttons are modeled after USB HUT 1.12
70 * AC - Application Control
71 * AL - Application Launch Button
72 * SC - System Control
253 #define KEY_REFRESH 173 /* AC Refresh */
307 outputs (Monitor/LCD/TV-out/etc) */
[all …]
/qemu/.gitlab-ci.d/
H A Dwindows.yml1 msys2-64bit:
4 - saas-windows-medium-amd64
8 - msys64/var/cache
9 - ccache
20 CONFIGURE_ARGS: --disable-system --enable-tools -Ddebug=false -Doptimization=0
22 GIT_FETCH_EXTRA_FLAGS: --no-tags --prune --quiet
24 name: "$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
27 - build/meson-logs/testlog.txt
29 junit: "build/meson-logs/testlog.junit.xml"
31 - Write-Output "Acquiring msys2.exe installer at $(Get-Date -Format u)"
[all …]
/qemu/ui/
H A Dcurses.c95 pnoutrefresh(screenpad, py, px, sminy, sminx, smaxy - 1, smaxx - 1); in curses_update()
96 refresh(); in curses_update()
101 if (qemu_console_is_fixedsize(dcl->con)) { in curses_calc_pad()
113 refresh(); in curses_calc_pad()
118 px = (width - COLS) / 2; in curses_calc_pad()
123 sminx = (COLS - width) / 2; in curses_calc_pad()
128 py = (height - LINES) / 2; in curses_calc_pad()
133 sminy = (LINES - height) / 2; in curses_calc_pad()
167 if (ioctl(1, TIOCGWINSZ, &ws) == -1) { in curses_winch_check()
196 x = sminx + x - px; in curses_cursor_position()
[all …]
H A Dcocoa.m31 #include "qemu/help-texts.h"
32 #include "qemu-main.h"
36 #include "ui/kbd-state.h"
39 #include "system/runstate-action.h"
40 #include "system/cpu-throttle.h"
42 #include "qapi/qapi-commands-block.h"
43 #include "qapi/qapi-commands-machine.h"
44 #include "qapi/qapi-commands-misc.h"
46 #include "qemu-version.h"
48 #include "qemu/main-loop.h"
[all …]
H A Dvnc.c29 #include "vnc-jobs.h"
31 #include "hw/qdev-core.h"
34 #include "qemu/error-report.h"
35 #include "qemu/main-loop.h"
41 #include "qemu/config-file.h"
42 #include "qapi/qapi-emit-events.h"
43 #include "qapi/qapi-events-ui.h"
45 #include "qapi/qapi-commands-ui.h"
56 #include "io/dns-resolver.h"
84 fprintf(stderr, "%s/%p: %s -> %s\n", __func__, in vnc_set_share_mode()
[all …]
/qemu/block/
H A Dcrypto.c4 * Copyright (c) 2015-2016 Red Hat, Inc.
25 #include "system/block-backend.h"
27 #include "qapi/opts-visitor.h"
28 #include "qapi/qapi-visit-crypto.h"
29 #include "qapi/qobject-input-visitor.h"
67 BlockCrypto *crypto = bs->opaque; in block_crypto_read_func()
73 ret = bdrv_pread(crypto->header ? crypto->header : bs->file, in block_crypto_read_func()
76 error_setg_errno(errp, -ret, "Could not read encryption header"); in block_crypto_read_func()
90 BlockCrypto *crypto = bs->opaque; in block_crypto_write_func()
96 ret = bdrv_pwrite(crypto->header ? crypto->header : bs->file, in block_crypto_write_func()
[all …]
/qemu/docs/devel/testing/
H A Dmain.rst7 everything from unit testing and exercising specific sub-systems all
9 tests you can run ``make check-help`` from either the source or build
16 [./pyvenv/bin/]meson test --suite qemu:softfloat
38 -------------------------
49 Different sub-types of "make check" tests will be explained below.
55 .. _unit-tests:
68 In QEMU, unit tests can be invoked with ``make check-unit``. They are
76 1. Create a new source file. For example, ``tests/unit/foo-test.c``.
86 is in ``tests/unit/foo-test.c``, it is enough to add an entry like::
90 'foo-test': [],
[all …]
/qemu/
H A Dqemu-options.hx14 "-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 …]
H A Dblock.c30 #include "block/dirty-bitmap.h"
34 #include "qemu/error-report.h"
36 #include "qemu/main-loop.h"
43 #include "qapi/qobject-output-visitor.h"
44 #include "qapi/qapi-visit-block-core.h"
45 #include "system/block-backend.h"
113 /* If non-zero, use only whitelisted block drivers */
138 if (!bs || !bs->drv) { in bdrv_opt_mem_align()
144 return bs->bl.opt_mem_alignment; in bdrv_opt_mem_align()
149 if (!bs || !bs->drv) { in bdrv_min_mem_align()
[all …]