/qemu/python/tests/ |
H A D | protocol.py | 81 state without fully quiescing it back to IDLE. This is normally 89 loop to return back to IDLE. 168 "<NullProtocol runstate=IDLE>" 174 Runstate.IDLE 204 "<NullProtocol name='Steve' runstate=IDLE>" 212 self.assertEqual(self.proto.runstate, Runstate.IDLE) 216 self.assertEqual(self.proto.runstate, Runstate.IDLE) 246 Runstate.IDLE, 254 Runstate.IDLE, 288 Runstate.IDLE, [all …]
|
/qemu/python/qemu/qmp/ |
H A D | protocol.py | 62 IDLE = 0 variable in Runstate 68 #: Runstate may be returned to `IDLE` by calling `disconnect()`. 132 # @require(Runstate.IDLE) def foo(): ... 148 " Call disconnect() to return to IDLE state.") 151 elif proto.runstate == Runstate.IDLE: 152 emsg = f"{name} is disconnected and idle." 242 self._runstate = Runstate.IDLE 271 @require(Runstate.IDLE) 279 If this call fails, `runstate` is guaranteed to be set back to `IDLE`. 287 :raise StateError: When the `Runstate` is not `IDLE`. [all …]
|
/qemu/tests/qtest/ |
H A D | tpm-crb-test.c | 86 /* TPM must not be in the idle state */ in tpm_crb_test() 105 /* TPM must still not be in the idle state */ in tpm_crb_test() 114 /* set TPM into idle state */ in tpm_crb_test() 117 /* idle state must be indicated now */ in tpm_crb_test()
|
H A D | aspeed-hace-utils.c | 176 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_md5() 210 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha256() 244 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha384() 278 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha512() 323 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha256_sg() 374 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha384_sg() 425 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha512_sg() 470 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha256_accum() 511 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha384_accum() 552 /* Check engine is idle, no busy or irq bits set */ in aspeed_test_sha512_accum()
|
H A D | pnv-host-i2c-test.c | 72 /* check status for cmd complete and bus idle */ in pnv_i2c_send() 95 /* check status for cmd complete and bus idle */ in pnv_i2c_send() 114 /* check status for cmd complete and bus idle */ in pnv_i2c_recv() 138 /* check status for cmd complete and bus idle */ in pnv_i2c_recv() 381 /* Check for command complete and bus idle in Status Register */ in check_i2cm_por_regs()
|
H A D | ipmi-kcs-test.c | 113 /* Should be idle */ in kcs_cmd() 159 /* Should be idle */ in kcs_abort()
|
/qemu/qapi/ |
H A D | sockets.json | 67 # @keep-alive-idle: time in seconds the connection needs to be idle before 91 '*keep-alive-idle': { 'type': 'uint32', 'if': 'HAVE_TCP_KEEPIDLE' },
|
/qemu/ui/ |
H A D | sdl2.c | 658 int idle = 1; in sdl2_poll_events() local 668 idle = 0; in sdl2_poll_events() 672 idle = 0; in sdl2_poll_events() 676 idle = 0; in sdl2_poll_events() 689 idle = 0; in sdl2_poll_events() 694 idle = 0; in sdl2_poll_events() 698 idle = 0; in sdl2_poll_events() 709 if (idle) { in sdl2_poll_events()
|
/qemu/hw/arm/ |
H A D | imx8mp-evk.c | 39 /* Remove cpu-idle-states property from CPU nodes */ in imx8mp_evk_modify_dtb() 42 fdt_nop_property(fdt, offset, "cpu-idle-states"); in imx8mp_evk_modify_dtb()
|
/qemu/tests/tcg/plugins/ |
H A D | bb.c | 29 /* Dump running CPU total on idle? */ 110 } else if (g_strcmp0(tokens[0], "idle") == 0) { in qemu_plugin_install()
|
/qemu/target/s390x/ |
H A D | sigp.c | 305 bool idle; in sigp_cond_emergency() local 314 idle = CPU(dst_cpu)->halted; in sigp_cond_emergency() 323 (idle && psw_addr != 0) || in sigp_cond_emergency() 324 (!idle && (asn == p_asn || asn == s_asn))) { in sigp_cond_emergency()
|
/qemu/hw/usb/ |
H A D | u2f.c | 180 data[0] = key->idle; in u2f_key_handle_control() 184 key->idle = (uint8_t)(value >> 8); in u2f_key_handle_control() 310 VMSTATE_UINT8(idle, U2FKeyState),
|
H A D | dev-wacom.c | 53 uint8_t idle; member 359 data[0] = s->idle; in usb_wacom_handle_control() 363 s->idle = (uint8_t) (value >> 8); in usb_wacom_handle_control() 380 if (!(s->changed || s->idle)) { in usb_wacom_handle_data()
|
/qemu/include/hw/char/ |
H A D | imx_serial.h | 46 #define USR1_RXDS (1<<6) /* Receiver is idle */ 53 #define USR2_IDLE (1<<12) /* UART has been idle for too long */
|
/qemu/hw/net/can/ |
H A D | ctucan_core.c | 205 s->status.s.idle = 1; in ctucan_hardware_reset() 273 s->status.s.idle = 0; in ctucan_send_ready_buffers() 276 s->status.s.idle = 1; in ctucan_send_ready_buffers() 488 s->status.s.idle = 1; in ctucan_mem_read() 558 s->status.s.idle = 0; in ctucan_receive()
|
/qemu/docs/devel/ |
H A D | tcg-plugins.rst | 125 System Idle and Resume States 133 chance for the CPU to idle.
|
H A D | replay.rst | 104 While the virtual machine is idle, the virtual clock increments at 109 soon as the timer fires or the CPUs need to go out of the idle state. 112 checkpoint. ``icount_start_warp_timer`` checks if the CPUs are idle and if so
|
/qemu/tests/tcg/loongarch64/system/ |
H A D | boot.S | 28 idle 0
|
/qemu/hw/input/ |
H A D | hid.c | 98 if (hs->idle) { in hid_set_next_idle() 100 NANOSECONDS_PER_SECOND * hs->idle * 4 / 1000; in hid_set_next_idle() 502 hs->idle = 0; in hid_reset() 604 VMSTATE_UINT8(idle, HIDState), 623 VMSTATE_UINT8(idle, HIDState),
|
/qemu/hw/misc/ |
H A D | omap_clk.c | 47 int usecount; /* Automatically idle when unused */ 254 /* No-idle controlled by "tc_ck" */ 261 /* No-idle controlled by "tc_ck" */ 280 /* No-idle controlled by "tc_ck" */
|
/qemu/util/ |
H A D | async.c | 58 /* Schedule periodically when the event loop is idle */ 215 /* Idle BHs don't count as progress */ in aio_bh_poll() 261 /* idle bottom halves will be polled at least in aio_compute_bh_timeout() 265 /* non-idle bottom halves will be executed in aio_compute_bh_timeout()
|
/qemu/include/hw/input/ |
H A D | hid.h | 44 uint8_t idle; member
|
/qemu/include/exec/ |
H A D | icount.h | 71 /* if the CPUs are idle, start accounting real time to virtual clock. */
|
/qemu/hw/char/ |
H A D | bcm2835_aux.c | 120 res = 0x60; /* tx idle, empty */ in bcm2835_aux_read() 138 res = 0x30e; /* space in the output buffer, empty tx fifo, idle tx/rx */ in bcm2835_aux_read()
|
/qemu/include/hw/xen/interface/ |
H A D | vcpu.h | 51 * practise to move a VCPU onto an 'idle' or default page table, LDT and 90 /* VCPU is blocked (a.k.a. idle). It is therefore not runnable. */
|