Home
last modified time | relevance | path

Searched refs:e (Results 126 – 150 of 451) sorted by relevance

12345678910>>...19

/qemu/block/
H A Dnbd.c1596 const QDictEntry *e; in nbd_has_filename_options_conflict() local
1598 for (e = qdict_first(options); e; e = qdict_next(options, e)) { in nbd_has_filename_options_conflict()
1599 if (!strcmp(e->key, "host") || in nbd_has_filename_options_conflict()
1600 !strcmp(e->key, "port") || in nbd_has_filename_options_conflict()
1601 !strcmp(e->key, "path") || in nbd_has_filename_options_conflict()
1602 !strcmp(e->key, "export") || in nbd_has_filename_options_conflict()
1603 strstart(e->key, "server.", NULL)) in nbd_has_filename_options_conflict()
1606 e->key); in nbd_has_filename_options_conflict()
1683 const QDictEntry *e; in nbd_process_legacy_socket_options() local
1689 for (e = qdict_first(output_options); e; e = qdict_next(output_options, e)) in nbd_process_legacy_socket_options()
[all …]
H A Dblkdebug.c980 const QDictEntry *e; in blkdebug_refresh_filename() local
987 for (e = qdict_first(bs->full_open_options); e; in blkdebug_refresh_filename()
988 e = qdict_next(bs->full_open_options, e)) in blkdebug_refresh_filename()
992 if (strcmp(qdict_entry_key(e), "config") && in blkdebug_refresh_filename()
993 strcmp(qdict_entry_key(e), "image") && in blkdebug_refresh_filename()
994 strcmp(qdict_entry_key(e), "x-image") && in blkdebug_refresh_filename()
995 strcmp(qdict_entry_key(e), "driver")) in blkdebug_refresh_filename()
/qemu/docs/system/devices/
H A Dnet.rst6 QEMU can simulate several network cards (e.g. PCI or ISA cards on the PC
9 connect the NIC of the guest to a real network (e.g. by using a TAP
11 guest instances running in another QEMU process (e.g. by using the
89 connects the given device to the emulated hub with ID 0 (i.e. the
/qemu/hw/usb/
H A Ddesc.c372 int i, e, pid, ep; in usb_desc_ep_init() local
380 for (e = 0; e < iface->bNumEndpoints; e++) { in usb_desc_ep_init()
381 pid = (iface->eps[e].bEndpointAddress & USB_DIR_IN) ? in usb_desc_ep_init()
383 ep = iface->eps[e].bEndpointAddress & 0x0f; in usb_desc_ep_init()
384 usb_ep_set_type(dev, pid, ep, iface->eps[e].bmAttributes & 0x03); in usb_desc_ep_init()
387 iface->eps[e].wMaxPacketSize); in usb_desc_ep_init()
389 iface->eps[e].bmAttributes_super); in usb_desc_ep_init()
/qemu/tests/qemu-iotests/
H A D26490 e = self.vm.event_wait('BLOCK_JOB_COMPLETED')
91 self.assertEqual(e['data']['offset'], size)
/qemu/tests/migration/guestperf/
H A Dshell.py194 except Exception as e:
195 print("Error: %s" % str(e), file=sys.stderr)
241 except Exception as e:
242 print("Error: %s" % str(e), file=sys.stderr)
/qemu/audio/
H A Daudio.c1756 if (!e) { in audio_init()
1760 s->dev = dev = e->dev; in audio_init()
1762 g_free(e); in audio_init()
2141 AudiodevListEntry *e; in audio_define() local
2145 e = g_new0(AudiodevListEntry, 1); in audio_define()
2146 e->dev = dev; in audio_define()
2152 AudiodevListEntry *e; in audio_define_default() local
2156 e = g_new0(AudiodevListEntry, 1); in audio_define_default()
2157 e->dev = dev; in audio_define_default()
2163 AudiodevListEntry *e; in audio_init_audiodevs() local
[all …]
/qemu/tests/unit/
H A Dtest-clone-visitor.c48 s_src->u.e = ENUM_ONE_VALUE1; in test_clone_alternate()
57 g_assert_cmpint(s_dst->u.e, ==, s_src->u.e); in test_clone_alternate()
/qemu/tests/qtest/
H A Dtpm-emu.c225 QListEntry *e; in tpm_model_is_available() local
227 QLIST_FOREACH_ENTRY(models, e) { in tpm_model_is_available()
228 QString *s = qobject_to(QString, qlist_entry_obj(e)); in tpm_model_is_available()
/qemu/target/hexagon/idef-parser/
H A Didef-parser.lex50 REG_ID_32 e|s|d|t|u|v|x|y
54 PRED_ID d|s|t|u|v|e|x|x
/qemu/util/
H A Dasync.c523 static void aio_context_notifier_cb(EventNotifier *e) in aio_context_notifier_cb() argument
525 AioContext *ctx = container_of(e, AioContext, notifier); in aio_context_notifier_cb()
533 EventNotifier *e = opaque; in aio_context_notifier_poll() local
534 AioContext *ctx = container_of(e, AioContext, notifier); in aio_context_notifier_poll()
544 static void aio_context_notifier_poll_ready(EventNotifier *e) in aio_context_notifier_poll_ready() argument
H A Dlog.c400 const char *range_op, *r2, *e; in qemu_set_dfilter_ranges() local
419 if (qemu_strtou64(r, &e, 0, &r1val) in qemu_set_dfilter_ranges()
420 || e != range_op) { in qemu_set_dfilter_ranges()
/qemu/target/hppa/
H A Dtranslate.c635 return e->base || e->space; in iaqe_variable()
641 .space = e->space, in iaqe_incr()
642 .base = e->base, in iaqe_incr()
740 memset(e, 0, sizeof(*e)); in delay_excp()
745 e->insn = ctx->insn; in delay_excp()
746 e->set_iir = true; in delay_excp()
748 e->excp = excp; in delay_excp()
752 return e; in delay_excp()
2177 if (a->e == 0) { in trans_mfctl()
4822 for (DisasDelayException *e = ctx->delay_excp_list; e ; e = e->next) { in hppa_tr_tb_stop() local
[all …]
/qemu/crypto/
H A Dakcipher-nettle.c.inc97 nettle_mpz_init_set_str_256_u(rsa->pub.e, rsa_key->e.len, rsa_key->e.data);
146 nettle_mpz_init_set_str_256_u(rsa->pub.e, rsa_key->e.len, rsa_key->e.data);
/qemu/tests/avocado/
H A Dacpi-bits.py274 except Exception as e: # pylint: disable=broad-except
277 + str(e))
346 except AssertionError as e:
348 raise e
/qemu/target/riscv/
H A Dpmp.c314 hwaddr e = 0; in pmp_hart_has_privs() local
341 e = pmp_is_in_range(env, i, addr + pmp_size - 1); in pmp_hart_has_privs()
344 if ((s + e) == 1) { in pmp_hart_has_privs()
365 if (((s + e) == 2) && (PMP_AMATCH_OFF != a_field)) { in pmp_hart_has_privs()
/qemu/include/hw/s390x/
H A Ds390-pci-bus.h212 uint32_t e; member
219 uint32_t e; member
394 uint64_t faddr, uint32_t e);
/qemu/docs/devel/migration/
H A Dmain.rst12 two times. I.e. it can only restore the state in one guest that has
19 machine and being "migrated" to another machine. I.e. being moved to
75 data (e.g. RAM or large tables). See the iterative device section below.
86 the state of the device. These checks might fail in various ways (e.g.
96 e.g. right in the middle of the guest reprogramming the device, during
182 Note that the format on the wire is still very raw; i.e. a VMSTATE_UINT32
221 to maintain forward migration compatibility (i.e. migrating from
228 The most common structure change is adding new data, e.g. when adding
331 e) (potentially) Add an outer pre_load that sets up a default value
391 e.g.
[all …]
/qemu/stubs/
H A Dchange-state-handler.c10 void qemu_del_vm_change_state_handler(VMChangeStateEntry *e) in qemu_del_vm_change_state_handler() argument
/qemu/target/arm/tcg/
H A Dvfp.decode73 VDUP ---- 1110 1 b:1 q:1 0 .... rt:4 1011 . 0 e:1 1 0000 \
179 VCMP_hp ---- 1110 1.11 010 z:1 .... 1001 e:1 1.0 .... \
181 VCMP_sp ---- 1110 1.11 010 z:1 .... 1010 e:1 1.0 .... \
183 VCMP_dp ---- 1110 1.11 010 z:1 .... 1011 e:1 1.0 .... \
/qemu/qapi/
H A Dstats.json190 # (e.g., for each vCPU).
215 # @exponent together form a SI prefix (e.g., _nano-_ for
216 # ``base=10`` and ``exponent=-9``) or IEC binary prefix (e.g.
265 # providers that source statistics externally, e.g. from Linux.
/qemu/hw/pci/
H A Dpci.c795 char *e; in pci_parse_devaddr() local
803 if (e == p) in pci_parse_devaddr()
805 if (*e == ':') { in pci_parse_devaddr()
807 p = e + 1; in pci_parse_devaddr()
809 if (e == p) in pci_parse_devaddr()
814 p = e + 1; in pci_parse_devaddr()
816 if (e == p) in pci_parse_devaddr()
824 if (*e != '.') in pci_parse_devaddr()
827 p = e + 1; in pci_parse_devaddr()
829 if (e == p) in pci_parse_devaddr()
[all …]
/qemu/
H A DREADME.rst14 capable of running operating systems made for one machine (e.g. an ARMv7
15 board) on a different machine (e.g. an x86_64 PC board).
19 architecture ABI (e.g. the Linux PPC64 ABI) to be run on a host using a
20 different architecture ABI (e.g. the Linux x86_64 ABI). This does not
/qemu/docs/
H A Dimage-fuzzer.txt28 elements, e.g. L1/L2 tables, having random invalid values.
62 '--config' argument, e.g.
72 arguments, e.g.
109 For now only universal potentially dangerous values are used, e.g. type limits
176 vector (boundary values, e.g. max/min cluster size)
190 for test case specification, e.g. group of tests for header structure,
/qemu/docs/sphinx/
H A Dkerneldoc.py151 except Exception as e: # pylint: disable=W0703
153 (" ".join(cmd), str(e)))

12345678910>>...19