Searched +full:- +full:- +full:disable +full:- +full:qom +full:- +full:cast +full:- +full:debug (Results 1 – 4 of 4) sorted by relevance
/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/rust/qemu-api/src/ |
H A D | chardev.rs | 3 // SPDX-License-Identifier: GPL-2.0-or-later 14 fmt::{self, Debug}, 37 /// back-end that is used for example by a device. Compared to the 39 /// because the QOM object ([`bindings::Chardev`]) contains a pointer to 47 fn flush(&mut self) -> io::Result<()> { in flush() 51 fn write(&mut self, buf: &[u8]) -> io::Result<usize> { in write() 59 fn write_all(&mut self, buf: &[u8]) -> io::Result<()> { in write_all() 74 impl Debug for CharBackend { 75 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { in fmt() 78 Debug::fmt(unsafe { &*chr }, f) in fmt() [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/rust/hw/timer/hpet/src/ |
H A D | device.rs | 3 // SPDX-License-Identifier: GPL-2.0-or-later 24 qom::{ObjectImpl, ObjectType, ParentField}, 76 /// bit 4, 5, 15, and bits 32:64 are read-only. 86 /// Timer N Size (timer size is 64-bits or 32 bits, bit 5) 90 /// Timer N 32-bit Mode (bit 8) 148 const fn hpet_next_wrap(cur_tick: u64) -> u64 { in hpet_next_wrap() 152 const fn hpet_time_after(a: u64, b: u64) -> bool { in hpet_time_after() 153 ((b - a) as i64) < 0 in hpet_time_after() 156 const fn ticks_to_ns(value: u64) -> u64 { in ticks_to_ns() 160 const fn ns_to_ticks(value: u64) -> u64 { in ns_to_ticks() [all …]
|