Home
last modified time | relevance | path

Searched full:variants (Results 1 – 25 of 76) sorted by relevance

1234

/qemu/scripts/qapi/
H A Dtypes.py35 # 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 Dschema.py672 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 Dintrospect.py343 obj['variants'] = [self._gen_variant(v) for v in branches.variants]
354 for m in alternatives.variants]},
H A Dvisit.py140 for var in branches.variants:
245 for var in alternatives.variants:
/qemu/tests/qapi-schema/
H A Dtest-qapi.py90 def _print_variants(variants): argument
91 if variants:
92 print(' tag %s' % variants.tag_member.name)
93 for v in variants.variants:
H A Dunion-base-union.json1 # 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 Dvirtio-gpu.rst16 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 Dmusca.rst8 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 Drealview.rst4 Several variants of the Arm RealView baseboard are emulated, including
H A Dvexpress.rst4 QEMU models two variants of the Arm Versatile Express development
H A Dnuvoton.rst28 variants of NPCM750 and NPCM730, respectively. These are currently not
/qemu/rust/qemu-api-macros/src/
H A Dlib.rs186 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 Dintrospect.json33 # 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 Du2f.h41 * 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 Dtcg-accel-ops.h4 * Functionality common to all TCG vcpu variants: mttcg, rr and icount.
H A Dtcg-accel-ops.c4 * Functionality common to all TCG vCPU variants: mttcg, rr and icount.
50 /* common functionality among all TCG variants */
/qemu/docs/system/
H A Dcpu-models-x86.rst.inc87 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 Dpci-serial.rst8 There is one single-port variant and two multiport-variants. Linux
H A Dstandard-vga.rst5 Exists in two variants, for isa and pci.
/qemu/hw/display/
H A Dapple-gfx.h2 * Data structures and functions shared between variants of the macOS
/qemu/rust/qemu-api/tests/
H A Dvmstate_tests.rs28 // macro variants:
147 // macro variants:
322 // macro variants:
431 // macro variants:
/qemu/tests/functional/
H A Dtest_arm_sx1.py6 # and checks the console. We have three variants:
H A Dtest_virtio_version.py94 """Check if a virtio device type and its variants behave as expected"""
/qemu/hw/ppc/
H A De500plat.c37 MPIC variants that support EPR. Revert to an older one for those */ in e500plat_init()
/qemu/target/mips/tcg/
H A Dvr54xx_helper.c46 /* Multiplication variants of the vr54xx. */

1234