/qemu/scripts/ |
H A D | meson-buildoptions.sh | 38 printf "%s\n" ' (choices: auto/disabled/enabled/internal/system)' 93 printf "%s\n" 'disabled with --disable-FEATURE, default is enabled if available' 235 --disable-af-xdp) printf "%s" -Daf_xdp=disabled ;; 237 --disable-alsa) printf "%s" -Dalsa=disabled ;; 241 --disable-attr) printf "%s" -Dattr=disabled ;; 244 --disable-auth-pam) printf "%s" -Dauth_pam=disabled ;; 251 --disable-blkio) printf "%s" -Dblkio=disabled ;; 257 --disable-bochs) printf "%s" -Dbochs=disabled ;; 259 --disable-bpf) printf "%s" -Dbpf=disabled ;; 261 --disable-brlapi) printf "%s" -Dbrlapi=disabled ;; [all …]
|
H A D | meson-buildoptions.py | 90 return "enabled" if value else "disabled" 126 # than "auto", "enabled", and "disabled". 132 return not (set(opt["choices"]) <= {"auto", "disabled", "enabled"}) 138 # nor "disabled" 144 return not ({"enabled", "disabled"}.intersection(opt["choices"])) 210 sh_print("disabled with --disable-FEATURE, default is enabled if available") 236 if opt["type"] == "combo" and "disabled" in opt["choices"]: 237 print(f' --disable-{key}) printf "%s" -D{name}=disabled ;;')
|
/qemu/hw/sparc64/ |
H A D | sparc64.c | 92 timer->disabled = 1; in cpu_timer_create() 103 timer->disabled = 1; in cpu_timer_reset() 140 if (timer->disabled) { in tick_irq() 158 if (timer->disabled) { in stick_irq() 176 if (timer->disabled) { in hstick_irq() 206 timer->npt ? "disabled" : "enabled", in cpu_tick_set_count() 220 timer->npt ? "disabled" : "enabled", in cpu_tick_get_count() 235 timer->disabled = (limit & timer->disabled_mask) ? 1 : 0; in cpu_tick_set_limit() 245 timer->disabled ? "disabled" : "enabled", in cpu_tick_set_limit() 258 } else if (timer->disabled) { in cpu_tick_set_limit()
|
H A D | trace-events | 14 sparc64_cpu_tick_irq_disabled(void) "tick_irq: softint disabled" 16 sparc64_cpu_stick_irq_disabled(void) "stick_irq: softint disabled" 18 sparc64_cpu_hstick_irq_disabled(void) "hstick_irq: softint disabled"
|
/qemu/tests/qemu-iotests/ |
H A D | 242 | 51 def add_bitmap(bitmap_number, persistent, disabled): argument 58 disabled=disabled) 80 disabled = False variable 82 disabled = True variable 84 add_bitmap(num, num > 1, disabled)
|
H A D | findtests.py | 103 'disabled' group (if 'disabled' is not listed in @groups) 112 'disabled' group 142 if 'disabled' not in groups and 'disabled' not in exclude_groups: 144 exclude_groups = exclude_groups + ['disabled']
|
H A D | 303 | 35 def create_bitmap(bitmap_number, disabled): argument 40 if disabled: 51 def add_bitmap(num, begin, end, disabled): argument 53 create_bitmap(num, disabled)
|
H A D | 242.out | 2 {"execute": "block-dirty-bitmap-add", "arguments": {"disabled": false, "granularity": 16384, "name"… 24 {"execute": "block-dirty-bitmap-add", "arguments": {"disabled": true, "granularity": 32768, "name":… 58 {"execute": "block-dirty-bitmap-add", "arguments": {"disabled": false, "granularity": 65536, "name"… 151 {"execute": "block-dirty-bitmap-add", "arguments": {"disabled": false, "granularity": 16384, "name"…
|
H A D | meson.build | 8 message('Sanitizers are enabled ==> Disabled the qemu-iotests.') 15 message('bash >= v4.0 not available ==> Disabled the qemu-iotests.')
|
/qemu/qapi/ |
H A D | trace.json | 18 # @unavailable: The event is statically disabled. 20 # @disabled: The event is dynamically disabled. 27 'data': ['unavailable', 'disabled', 'enabled'] } 58 # <- { "return": [ { "name": "qemu_memalign", "state": "disabled", "vcpu": false } ] }
|
H A D | common.json | 31 # @off: Disabled 45 # @off: Disabled 76 # @off: The specified feature is disabled
|
/qemu/tests/docker/dockerfiles/ |
H A D | emsdk-wasm32-cross.docker | 90 --buildtype=release -Dtests=disabled -Ddemos=disabled 135 -Dselinux=disabled -Dxattr=false -Dlibmount=disabled -Dnls=disabled \ 136 -Dtests=false -Dglib_debug=disabled -Dglib_assert=false -Dglib_checks=false
|
/qemu/trace/ |
H A D | control.h | 105 * If the event has the disabled property, the check will have no performance 118 * If the event has the disabled property, the check will have no performance 122 * does not have the disabled property. 134 * be set to 1 or 0 according to the presence of the disabled property). 187 * if the string starts with '-', disabled.
|
/qemu/docs/system/arm/ |
H A D | cpu-features.rst | 7 that the feature is implemented, and, conversely, when disabled, 26 disabled, enables the optional AArch32 CPU feature, is only supported 81 "'aarch64' feature cannot be disabled unless KVM is enabled and 32-bit EL1 is supported" 155 given CPU type, then they may be selectively enabled or disabled on the 177 enabled, and disabled in the same way as other CPU features. Below is 181 By default kvm-no-adjvtime is disabled. This means that by default 267 1) If SVE is disabled (``sve=off``), then which SVE vector lengths 268 are enabled or disabled is irrelevant to the guest, as the entire 269 SVE feature is disabled and that disables all vector lengths for 288 has been explicitly disabled, then an error is generated (see [all …]
|
/qemu/block/ |
H A D | dirty-bitmap.c | 40 bool disabled; /* Bitmap is disabled. It ignores all writes to member 130 bitmap->disabled = false; in bdrv_create_dirty_bitmap() 168 return !bitmap->disabled; in bdrv_dirty_bitmap_enabled() 174 return !bitmap->disabled || (bitmap->successor && in bdrv_dirty_bitmap_recording() 175 !bitmap->successor->disabled); in bdrv_dirty_bitmap_recording() 233 child->disabled = bitmap->disabled; in bdrv_dirty_bitmap_create_successor() 234 bitmap->disabled = true; in bdrv_dirty_bitmap_create_successor() 244 bitmap->disabled = false; in bdrv_enable_dirty_bitmap_locked() 316 parent->disabled = successor->disabled; in bdrv_reclaim_dirty_bitmap_locked() 441 bitmap->disabled = true; in bdrv_disable_dirty_bitmap() [all …]
|
/qemu/qga/ |
H A D | vss-win32.c | 80 "fsfreeze is disabled.\n"); in vss_init() 91 fprintf(stderr, "failed to load %s: %sfsfreeze is disabled\n", in vss_init() 100 fprintf(stderr, "fsfreeze is disabled.\n"); in vss_init() 130 "fsfreeze will be disabled.\n"); in ga_install_vss_provider()
|
/qemu/hw/net/ |
H A D | e1000_regs.h | 262 #define E1000_STATUS_BMC_SKU_0 0x00100000 /* BMC USB redirect disabled */ 263 #define E1000_STATUS_BMC_SKU_1 0x00200000 /* BMC SRAM disabled */ 264 #define E1000_STATUS_BMC_SKU_2 0x00400000 /* BMC SDRAM disabled */ 265 #define E1000_STATUS_BMC_CRYPTO 0x00800000 /* BMC crypto disabled */ 266 #define E1000_STATUS_BMC_LITE 0x01000000 /* BMC external code execution disabled */ 267 #define E1000_STATUS_RGMII_ENABLE 0x02000000 /* RGMII disabled */ 270 #define E1000_STATUS_SERDES0_DIS 0x10000000 /* SERDES disabled on port 0 */ 271 #define E1000_STATUS_SERDES1_DIS 0x20000000 /* SERDES disabled on port 1 */
|
/qemu/ |
H A D | configure | 259 rust="disabled" 274 # Meson has PIE as a boolean rather than enabled/disabled/auto, 692 --disable-docs) docs=disabled 744 --disable-tcg) tcg="disabled" 773 --disable-download) download="disabled"; git_submodules_action=validate; 793 --disable-rust) rust=disabled 810 && test "$download" = disabled 910 --without-default-features default all --enable-* options to "disabled" 1013 if test "$docs" != "disabled" ; then 1022 docs=disabled [all …]
|
H A D | meson_options.txt | 50 option('modules', type : 'feature', value : 'disabled', 112 option('vfio_user_server', type: 'feature', value: 'disabled', 123 option('membarrier', type: 'feature', value: 'disabled', 179 option('crypto_afalg', type : 'feature', value : 'disabled', 256 # GTK Clipboard implementation is disabled by default, since it may cause hangs 260 option('gtk_clipboard', type: 'feature', value : 'disabled', 320 choices: ['disabled', 'enabled', 'auto', 'system', 'internal'], 381 option('rust', type: 'feature', value: 'disabled',
|
/qemu/include/hw/char/ |
H A D | escc.h | 41 int disabled; member 61 uint32_t disabled; member
|
/qemu/docs/devel/ |
H A D | tracing.rst | 185 means disabled. 195 will be disabled instead of enabled. This is useful when a wildcard was used 196 to enable an entire family of events but one noisy event needs to be disabled. 380 programmatically disabled. 391 compile-time disabled or run-time disabled. If the event is compile-time 392 disabled, this check will have no performance impact.
|
/qemu/include/hw/arm/ |
H A D | smmu-common.h | 70 bool disabled; /* is the translation table disabled? */ member 104 bool disabled; /* smmu is disabled */ member
|
/qemu/hw/rtc/ |
H A D | ls7a_rtc.c | 141 /* it do not support write when toy disabled */ in toymatch_write() 156 /* it do not support write when toy disabled */ in rtcmatch_write() 225 /* return 0 when toy disabled */ in ls7a_rtc_read() 234 /* return 0 when toy disabled */ in ls7a_rtc_read() 254 /* return 0 when rtc disabled */ in ls7a_rtc_read() 283 /* it do not support write when toy disabled */ in ls7a_rtc_write()
|
/qemu/docs/system/devices/ |
H A D | ivshmem-flat.rst | 27 specified for the device it is disabled, preventing the VM from notifying or 29 the IRQ mechanism is disabled). The shared memory region is always present.
|
/qemu/ui/ |
H A D | spice-module.c | 35 /* This must never be called if CONFIG_SPICE is disabled */ in qemu_spice_display_init_stub() 36 error_report("spice support is disabled"); in qemu_spice_display_init_stub()
|