Home
last modified time | relevance | path

Searched refs:master (Results 1 – 25 of 65) sorted by relevance

123

/qemu/docs/devel/
H A Dcodebase.rst15 `MAINTAINERS <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`_
48 * `accel <https://gitlab.com/qemu-project/qemu/-/tree/master/accel>`_:
53 `target <https://gitlab.com/qemu-project/qemu/-/tree/master/target>`_.
54 * `audio <https://gitlab.com/qemu-project/qemu/-/tree/master/audio>`_:
56 * `authz <https://gitlab.com/qemu-project/qemu/-/tree/master/authz>`_:
58 * `backends <https://gitlab.com/qemu-project/qemu/-/tree/master/backends>`_:
61 * `block <https://gitlab.com/qemu-project/qemu/-/tree/master/block>`_:
63 * `bsd-user <https://gitlab.com/qemu-project/qemu/-/tree/master/bsd-user>`_:
67 * `chardev <https://gitlab.com/qemu-project/qemu/-/tree/master/chardev>`_:
69 * `common-user <https://gitlab.com/qemu-project/qemu/-/tree/master/common-user>`_:
[all …]
H A Dsubmitting-a-pull-request.rst61 **Pull requests not for master should say "not for master" and have
64 string "not for master" in the cover letter email, and make sure the
67 pull requests that should be applied to master.
/qemu/io/
H A Dchannel-tls.c37 ret = qio_channel_write(tioc->master, buf, len, errp); in qio_channel_tls_write_handler()
54 ret = qio_channel_read(tioc->master, buf, len, errp); in qio_channel_tls_read_handler()
65 qio_channel_tls_new_server(QIOChannel *master, in qio_channel_tls_new_server() argument
76 tioc->master = master; in qio_channel_tls_new_server()
77 ioc->follow_coroutine_ctx = master->follow_coroutine_ctx; in qio_channel_tls_new_server()
78 if (qio_channel_has_feature(master, QIO_CHANNEL_FEATURE_SHUTDOWN)) { in qio_channel_tls_new_server()
81 object_ref(OBJECT(master)); in qio_channel_tls_new_server()
99 trace_qio_channel_tls_new_server(tioc, master, creds, aclname); in qio_channel_tls_new_server()
108 qio_channel_tls_new_client(QIOChannel *master, in qio_channel_tls_new_client() argument
119 tioc->master = master; in qio_channel_tls_new_client()
[all …]
H A Dchannel-websock.c493 ret = qio_channel_read(ioc->master, in qio_channel_websock_handshake_read()
539 ret = qio_channel_write(wioc->master, in qio_channel_websock_handshake_send()
601 wioc->master, in qio_channel_websock_handshake_io()
678 qio_channel_shutdown(ioc->master, QIO_CHANNEL_SHUTDOWN_BOTH, NULL); in qio_channel_websock_write_close()
850 qio_channel_shutdown(ioc->master, QIO_CHANNEL_SHUTDOWN_BOTH, NULL); in qio_channel_websock_decode_payload()
877 qio_channel_websock_new_server(QIOChannel *master) in qio_channel_websock_new_server() argument
885 wioc->master = master; in qio_channel_websock_new_server()
886 ioc->follow_coroutine_ctx = master->follow_coroutine_ctx; in qio_channel_websock_new_server()
887 if (qio_channel_has_feature(master, QIO_CHANNEL_FEATURE_SHUTDOWN)) { in qio_channel_websock_new_server()
890 object_ref(OBJECT(master)); in qio_channel_websock_new_server()
[all …]
H A Dtrace-events40 …channel_tls_new_client(void *ioc, void *master, void *creds, const char *hostname) "TLS new client…
41 …_channel_tls_new_server(void *ioc, void *master, void *creds, const char *aclname) "TLS new client…
56 qio_channel_websock_new_server(void *ioc, void *master) "Websock new client ioc=%p master=%p"
/qemu/
H A D.gitpublish7 base = master
12 base = master
18 base = master
24 base = master
30 base = master
36 base = master
42 base = master
48 base = master
H A DREADME.rst40 `<https://www.qemu.org/docs/master/>`_ is generated from the ``docs/``
42 <https://www.sphinx-doc.org/en/master/>`_.
81 <https://www.qemu.org/docs/master/devel/style.html>`_ of
113 $ git checkout master -b my-feature
/qemu/tests/unit/
H A Dtest-crypto-secret.c393 Object *master = object_new_with_props( in test_secret_crypt_raw() local
419 object_unparent(master); in test_secret_crypt_raw()
426 Object *master = object_new_with_props( in test_secret_crypt_base64() local
451 object_unparent(master); in test_secret_crypt_base64()
458 Object *master = object_new_with_props( in test_secret_crypt_short_key() local
478 object_unparent(master); in test_secret_crypt_short_key()
484 Object *master = object_new_with_props( in test_secret_crypt_short_iv() local
504 object_unparent(master); in test_secret_crypt_short_iv()
510 Object *master = object_new_with_props( in test_secret_crypt_missing_iv() local
529 object_unparent(master); in test_secret_crypt_missing_iv()
[all …]
/qemu/hw/intc/
H A Di8259_common.c92 ISADevice *i8259_init_chip(const char *name, ISABus *bus, bool master) in i8259_init_chip() argument
99 qdev_prop_set_uint32(dev, "iobase", master ? 0x20 : 0xa0); in i8259_init_chip()
100 qdev_prop_set_uint32(dev, "elcr_addr", master ? 0x4d0 : 0x4d1); in i8259_init_chip()
101 qdev_prop_set_uint8(dev, "elcr_mask", master ? 0xf8 : 0xde); in i8259_init_chip()
102 qdev_prop_set_bit(dev, "master", master); in i8259_init_chip()
123 if (s->master) { in pic_get_statistics()
141 s->master ? 0 : 1, s->irr, s->imr, s->isr, in pic_print_info()
200 DEFINE_PROP_BIT("master", PICCommonState, master, 0, false),
H A Di8259.c91 if (s->special_fully_nested_mode && s->master) { in pic_get_irq()
110 trace_pic_update_irq(s->master, s->imr, s->irr, s->priority_add); in pic_update_irq()
122 int irq_index = s->master ? irq : irq + 8; in pic_set_irq()
124 trace_pic_set_irq(s->master, irq, level); in pic_set_irq()
236 trace_pic_ioport_write(s->master, addr, val); in pic_ioport_write()
347 trace_pic_ioport_read(s->master, addr, ret); in pic_ioport_read()
H A Dslavio_intctl.c54 struct SLAVIO_INTCTLState *master; member
121 slavio_check_interrupts(s->master, 1); in slavio_intctl_mem_writel()
127 slavio_check_interrupts(s->master, 1); in slavio_intctl_mem_writel()
440 s->slaves[i].master = s; in slavio_intctl_init()
/qemu/include/io/
H A Dchannel-tls.h48 QIOChannel *master; member
91 qio_channel_tls_new_server(QIOChannel *master,
121 qio_channel_tls_new_client(QIOChannel *master,
H A Dchannel-websock.h57 QIOChannel *master; member
88 qio_channel_websock_new_server(QIOChannel *master);
/qemu/docs/system/
H A Dsecrets.rst113 A single master key can be used to encrypt all subsequent secrets, **but it is
136 and also encryption with a master key:
146 It is recommended for production deployments to use a master key secret, and
147 then pass all subsequent inline secrets encrypted with the master key.
149 Each QEMU instance must have a distinct master key, and that must be generated
150 from a cryptographically secure random data source. The master key should be
151 deleted immediately upon QEMU shutdown. If passing the master key as a file,
154 keyring can be used to pass the master key to QEMU.
157 with this master key.
162 The only item that needs strongly protecting is the master key file.
/qemu/docs/system/devices/
H A Divshmem.rst41 With device property ``master=on``, the guest will copy the shared
42 memory on migration to the destination host. With ``master=off``, the
47 At most one of the devices sharing the same memory can be master. The
48 master must complete migration before you plug back the other devices.
/qemu/include/hw/isa/
H A Di8259_internal.h66 uint32_t master; /* reflects /SP input pin */ member
74 ISADevice *i8259_init_chip(const char *name, ISABus *bus, bool master);
/qemu/docs/system/riscv/
H A Dshakti-c.rst11 https://gitlab.com/shaktiproject/cores/shakti-soc/-/blob/master/fpga/boards/artya7-100t/c-class/REA…
53 $ wget -c https://gitlab.com/behindbytes/shakti-binaries/-/raw/master/sdk/shakti_sdk_qemu.zip
71 $ wget -c https://gitlab.com/behindbytes/shakti-binaries/-/raw/master/dts/shakti.dtb
/qemu/docs/specs/
H A Dfsi.rst6 master/slave and the end engine.
32 3. The FSI master: A controller in the platform service processor (e.g. BMC)
39 integration of the FSI master IP with the OPB, mainly the existence of an
89 dev: fsi.master, id ""
100 dev: fsi.master, id ""
/qemu/hw/ide/
H A Dide-dev.c44 dev->unit = bus->master ? 1 : 0; in ide_qdev_realize()
55 if (bus->master) { in ide_qdev_realize()
59 bus->master = dev; in ide_qdev_realize()
/qemu/hw/misc/
H A Divshmem-pci.c118 OnOffAuto master; member
137 assert(s->master != ON_OFF_AUTO_AUTO); in ivshmem_is_master()
138 return s->master == ON_OFF_AUTO_ON; in ivshmem_is_master()
883 if (s->master == ON_OFF_AUTO_ON && s->vm_id != 0) { in ivshmem_common_realize()
898 if (s->master == ON_OFF_AUTO_AUTO) { in ivshmem_common_realize()
899 s->master = s->vm_id == 0 ? ON_OFF_AUTO_ON : ON_OFF_AUTO_OFF; in ivshmem_common_realize()
1026 DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF),
1084 DEFINE_PROP_ON_OFF_AUTO("master", IVShmemState, master, ON_OFF_AUTO_OFF),
/qemu/hw/audio/
H A Dwm8750.c57 int adc_hz, dac_hz, ext_adc_hz, ext_dac_hz, master; member
245 if (s->master || !s->ext_dac_hz) in wm8750_clk_update()
250 if (s->master || !s->ext_adc_hz) in wm8750_clk_update()
255 if (s->master || (!s->ext_dac_hz && !s->ext_adc_hz)) { in wm8750_clk_update()
545 s->master = (value >> 6) & 1; /* MS */ in wm8750_tx()
546 wm8750_clk_update(s, s->master); in wm8750_tx()
/qemu/tests/qemu-iotests/
H A D210.out54 master key iters: XXX
107 master key iters: XXX
163 master key iters: XXX
234 master key iters: XXX
/qemu/tests/rocker/
H A Dbridge12 simp ssh tut sw1 --cmd "sudo /sbin/ip link set dev sw1p1 master br0"
13 simp ssh tut sw1 --cmd "sudo /sbin/ip link set dev sw1p2 master br0"
/qemu/hw/fsi/
H A Dmeson.build1 system_ss.add(when: 'CONFIG_FSI', if_true: files('lbus.c','fsi.c','cfam.c','fsi-master.c'))
/qemu/hw/i386/kvm/
H A Di8259.c43 chip.chip_id = s->master ? KVM_IRQCHIP_PIC_MASTER : KVM_IRQCHIP_PIC_SLAVE; in kvm_pic_get()
76 chip.chip_id = s->master ? KVM_IRQCHIP_PIC_MASTER : KVM_IRQCHIP_PIC_SLAVE; in kvm_pic_put()

123