/qemu/ui/ |
H A D | dbus-display1.xml | 31 Interfaces: 33 This property lists extra interfaces provided by the 42 <property name="Interfaces" type="as" access="read"/> 58 :dbus:iface:`org.qemu.Display1.MultiTouch` interfaces when available. 146 Interfaces: 148 This property lists extra interfaces provided by the 157 <property name="Interfaces" type="as" access="read"/> 458 Interfaces: 460 This property lists extra interfaces provided by the 469 <property name="Interfaces" type="as" access="read"/> [all …]
|
/qemu/docs/interop/ |
H A D | dbus-display.rst | 8 Various specialized D-Bus interfaces are available on different object paths 11 QEMU also implements the standard interfaces, such as 13 <https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces>`_.
|
H A D | dbus.rst | 100 When implementing new D-Bus interfaces, it is recommended to follow 107 QEMU Interfaces
|
/qemu/include/qapi/ |
H A D | compat-policy.h | 2 * Policy for handling "funny" management interfaces 31 * policy for handling deprecated management interfaces set with 40 * policy for handling deprecated management interfaces set with
|
/qemu/include/hw/intc/ |
H A D | arm_gic_common.h | 32 /* Maximum number of possible CPU interfaces, determined by GIC architecture */ 34 /* Maximum number of possible CPU interfaces with their respective vCPU */ 46 /* Only 32 priority levels and 32 preemption levels in the vCPU interfaces */ 140 MemoryRegion cpuiomem[GIC_NCPU + 1]; /* CPU interfaces */ 141 MemoryRegion vifaceiomem[GIC_NCPU + 1]; /* Virtual interfaces */
|
/qemu/net/ |
H A D | net-hmp-cmds.c | 69 const char *interfaces_str = qdict_get_try_str(qdict, "interfaces"); in hmp_announce_self() 74 qapi_free_strList(params->interfaces); in hmp_announce_self() 75 params->interfaces = hmp_split_at_comma(interfaces_str); in hmp_announce_self() 76 params->has_interfaces = params->interfaces != NULL; in hmp_announce_self()
|
H A D | announce.c | 47 qapi_free_strList(timer->params.interfaces); in qemu_announce_timer_del() 48 timer->params.interfaces = NULL; in qemu_announce_timer_del() 144 strList *entry = timer->params.interfaces; in qemu_announce_self_iter()
|
/qemu/include/system/ |
H A D | address-spaces.h | 2 * Internal memory management interfaces 18 * Internal interfaces between memory.c/exec.c/vl.c. Do not #include unless
|
/qemu/include/hw/xtensa/ |
H A D | xtensa-isa.h | 58 * . interfaces - TIE interfaces that are external to the processor 755 /* Interfaces. */ 788 * Currently "data" interfaces have side effects and "control" 789 * interfaces do not. Returns 1 if there are side effects, 0 if not, 797 * Some interfaces may be related such that accessing one interface 798 * has side effects on a set of related interfaces. The interfaces 799 * are partitioned into equivalence classes of related interfaces, and 803 * interfaces are related; the specific values of the identifiers have
|
/qemu/qapi/ |
H A D | net.json | 450 # @queues: number of queues to be used for multiqueue interfaces 535 # interfaces that are in host mode and also with the host. 552 # other vmnet interfaces. Only communication with host is 558 # is allowed only with other interfaces added to this network 580 # interfaces on the same subnet. If no DHCP settings, subnet mask and 582 # other interfaces in shared mode. 599 # other vmnet interfaces. Only communication with host is 628 # other vmnet interfaces. Only communication with host is 926 # @interfaces: An optional list of interface names, which restricts 927 # the announcement to the listed interfaces. (Since 4.1) [all …]
|
H A D | compat.json | 41 # Policy for handling deprecated management interfaces. 43 # This is intended for testing users of the management interfaces.
|
/qemu/hw/usb/ |
H A D | desc.h | 127 /* grouped interfaces */ 131 /* "normal" interfaces */ 136 /* conceptually an Interface Association Descriptor, and related interfaces */
|
/qemu/include/block/ |
H A D | replication.h | 28 * @short_description: interfaces for handling replication 33 * <title>How to use replication interfaces</title> 86 * We create an example about how to use replication interfaces in above.
|
/qemu/docs/devel/ |
H A D | qom.rst | 15 - Multiple inheritance of stateless interfaces 194 Interfaces section in Creating a QOM class 197 Interfaces allow a limited form of multiple inheritance. Instances are 400 If the type needs to implement one or more interfaces, then the 409 :caption: Defining a simple type implementing interfaces 417 :caption: Defining a type implementing interfaces
|
/qemu/docs/system/devices/ |
H A D | cxl.rst | 17 control and capabilities are exposed via PCI Express interfaces. 18 This sharing of interfaces and hence emulation code is reflected 22 CXL devices support the following interfaces: 24 * Most conventional PCIe interfaces 32 - Many other PCI express defined interfaces.. 100 Structure (CHBS) in the CEDT ACPI table. The actual interfaces 104 Interfaces provided include: 134 BARs. The Upstream Port has the configuration interfaces for
|
H A D | net.rst | 14 Using TAP network interfaces 28 TAP network interfaces: the device ``/dev/net/tun`` must be present. 31 lines using the TAP network interfaces.
|
H A D | virtio-gpu.rst | 31 **Interfaces:** QEMU further categorizes virtio-gpu device variants based 32 on the interface exposed to the guest. The interfaces can be classified
|
/qemu/scripts/ |
H A D | rdma-migration-helper.sh | 25 # existing rdma interfaces 32 # existing valid ipv4 interfaces
|
/qemu/docs/system/i386/ |
H A D | kvm-pv.rst | 7 In some cases when implementing hardware interfaces in software is slow, ``KVM`` 8 implements its own paravirtualized interfaces.
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | test_regexps.py | 101 .interfaces = (const InterfaceInfo[]) { 137 .interfaces = (const InterfaceInfo[]) { 167 .interfaces = (const InterfaceInfo[]) {
|
/qemu/docs/system/ |
H A D | introduction.rst | 60 QEMU provides a number of management interfaces including a line based 66 the interface used by higher level tools interfaces such as `Virt 146 * - Interfaces
|
/qemu/include/qom/ |
H A D | object.h | 132 GSList *interfaces; member 271 * @...: list of initializers for "InterfaceInfo" to declare implemented interfaces 297 .interfaces = (const InterfaceInfo[]) { __VA_ARGS__ } , \ 315 * @...: list of initializers for "InterfaceInfo" to declare implemented interfaces 347 * for the common case of a non-abstract type, without any interfaces. 362 * @...: list of initializers for "InterfaceInfo" to declare implemented interfaces 366 * interfaces. 368 * Note when passing the list of interfaces, be sure to include the final 387 * for defining an abstract type, without any interfaces. 404 * the case of a non-abstract type, with interfaces, and with no requirement [all …]
|
/qemu/docs/ |
H A D | image-fuzzer.txt | 47 interfaces". 103 'Module interfaces'. 131 Module interfaces
|
/qemu/docs/specs/ |
H A D | fsi.rst | 5 The QEMU FSI emulation implements hardware interfaces between ASPEED SOC, FSI 9 distances of up to 4 meters. FSI interfaces have been used successfully for
|
/qemu/hw/nvram/ |
H A D | fw_cfg-interface.c | 2 * QEMU Firmware configuration device emulation (QOM interfaces)
|