Searched full:variants (Results 1 – 25 of 76) sorted by relevance
1234
/qemu/scripts/qapi/ |
H A D | types.py | 35 # variants must be emitted before their container; track what has already 159 variants: Optional[QAPISchemaVariants]) -> str: 165 for var in variants.variants if variants else (): 194 if variants: 195 ret += gen_variants(variants) 201 if (not base or base.is_empty()) and not members and not variants: 227 def gen_variants(variants: QAPISchemaVariants) -> str: 231 c_name=c_name(variants.tag_member.name)) 233 for var in variants.variants:
|
H A D | schema.py | 672 for v in self.alternatives.variants: 703 for v in self.alternatives.variants: 723 variants: List[QAPISchemaVariant], 727 self.variants = variants 730 for v in self.variants: 737 for v in self.variants: 744 variants: List[QAPISchemaVariant], 746 super().__init__(info, variants) 789 cases = {v.name for v in self.variants} 795 self.variants.append(v) [all …]
|
H A D | introspect.py | 343 obj['variants'] = [self._gen_variant(v) for v in branches.variants] 354 for m in alternatives.variants]},
|
H A D | visit.py | 140 for var in branches.variants: 245 for var in alternatives.variants:
|
/qemu/tests/qapi-schema/ |
H A D | test-qapi.py | 90 def _print_variants(variants): argument 91 if variants: 92 print(' tag %s' % variants.tag_member.name) 93 for v in variants.variants:
|
H A D | union-base-union.json | 1 # For now, we require the base to be a struct without variants 4 # member names added by local variants.
|
/qemu/docs/system/devices/ |
H A D | virtio-gpu.rst | 16 QEMU virtio-gpu variants 19 QEMU virtio-gpu device variants come in the following form: 31 **Interfaces:** QEMU further categorizes virtio-gpu device variants based 33 into VGA and non-VGA variants. The VGA ones are prefixed with virtio-vga
|
/qemu/docs/system/arm/ |
H A D | musca.rst | 8 QEMU provides models of the A and B1 variants of this board. 29 for the A and B1 variants differ significantly, so guest
|
H A D | realview.rst | 4 Several variants of the Arm RealView baseboard are emulated, including
|
H A D | vexpress.rst | 4 QEMU models two variants of the Arm Versatile Express development
|
H A D | nuvoton.rst | 28 variants of NPCM750 and NPCM730, respectively. These are currently not
|
/qemu/rust/qemu-api-macros/src/ |
H A D | lib.rs | 186 if let Some(v) = e.variants.iter().find(|v| v.fields != Fields::Unit) { in get_variants() 188 "Cannot derive TryInto for enum with non-unit variants.".to_string(), in get_variants() 192 Ok(&e.variants) in get_variants() 198 variants: &Punctuated<Variant, Comma>, in derive_tryinto_body() 201 let discriminants: Vec<&Ident> = variants.iter().map(|f| &f.ident).collect(); in derive_tryinto_body()
|
/qemu/qapi/ |
H A D | introspect.json | 33 # object's variants; or the type of a member may change from a generic 217 # @variants: variant members, i.e. additional members that depend on 219 # The variants are in no particular order, and may even differ 229 '*variants': [ 'SchemaInfoObjectVariant' ] } }
|
/qemu/hw/usb/ |
H A D | u2f.h | 41 * to interact with its variants (i.e. hw/u2f-*.c) 70 * API to be used by the U2F key device variants (i.e. hw/u2f-*.c)
|
/qemu/accel/tcg/ |
H A D | tcg-accel-ops.h | 4 * Functionality common to all TCG vcpu variants: mttcg, rr and icount.
|
H A D | tcg-accel-ops.c | 4 * Functionality common to all TCG vCPU variants: mttcg, rr and icount. 50 /* common functionality among all TCG variants */
|
/qemu/docs/system/ |
H A D | cpu-models-x86.rst.inc | 87 vulnerable to MDS variants*.) 190 to any of the MDS variants ([MFBDS] CVE-2018-12130, [MLPDS] 387 QEMU Virtual CPU version 2.5+ (32 & 64 bit variants) 401 Common KVM processor (32 & 64 bit variants).
|
/qemu/docs/specs/ |
H A D | pci-serial.rst | 8 There is one single-port variant and two multiport-variants. Linux
|
H A D | standard-vga.rst | 5 Exists in two variants, for isa and pci.
|
/qemu/hw/display/ |
H A D | apple-gfx.h | 2 * Data structures and functions shared between variants of the macOS
|
/qemu/rust/qemu-api/tests/ |
H A D | vmstate_tests.rs | 28 // macro variants: 147 // macro variants: 322 // macro variants: 431 // macro variants:
|
/qemu/tests/functional/ |
H A D | test_arm_sx1.py | 6 # and checks the console. We have three variants:
|
H A D | test_virtio_version.py | 94 """Check if a virtio device type and its variants behave as expected"""
|
/qemu/hw/ppc/ |
H A D | e500plat.c | 37 MPIC variants that support EPR. Revert to an older one for those */ in e500plat_init()
|
/qemu/target/mips/tcg/ |
H A D | vr54xx_helper.c | 46 /* Multiplication variants of the vr54xx. */
|
1234