Lines Matching +full:string +full:- +full:array +full:- +full:property
14 * See the COPYING file in the top-level directory.
169 * @fds: array of file descriptors
229 * @fds: array of file descriptors
260 * @fds: array of file descriptors
368 * Removes non-matching events from the buffer that was set by
381 * Send HMP command to QEMU via QMP's human-monitor-command.
394 * Send HMP command to QEMU via QMP's human-monitor-command.
416 * @string: QOM path of a device.
418 * Associate qtest irqs with the GPIO-in pins of the device
419 * whose path is specified by @string.
421 void qtest_irq_intercept_in(QTestState *s, const char *string);
426 * @string: QOM path of a device.
428 * Associate qtest irqs with the GPIO-out pins of the device
429 * whose path is specified by @string.
431 void qtest_irq_intercept_out(QTestState *s, const char *string);
439 * Associate a qtest irq with the named GPIO-out pin of the device
440 * whose path is specified by @string and whose name is @name.
447 * @string: QOM path of a device
452 * Force given device/irq GPIO-in pin to the given level.
454 void qtest_set_irq_in(QTestState *s, const char *string, const char *name,
463 * Write an 8-bit value to an I/O port.
473 * Write a 16-bit value to an I/O port.
483 * Write a 32-bit value to an I/O port.
492 * Returns an 8-bit value from an I/O port.
501 * Returns a 16-bit value from an I/O port.
510 * Returns a 32-bit value from an I/O port.
520 * Writes an 8-bit value to memory.
530 * Writes a 16-bit value to memory.
540 * Writes a 32-bit value to memory.
550 * Writes a 64-bit value to memory.
559 * Reads an 8-bit value from memory.
570 * Reads a 16-bit value from memory.
581 * Reads a 32-bit value from memory.
592 * Reads a 64-bit value from memory.
632 * Call an RISC-V CSR read/write function
1034 * Generic hot-plugging test via the device_add QMP command with properties
1044 * @id: Identification string
1049 * Generic hot-plugging test via the device_add QMP command.
1058 * @fd: the client file-descriptor
1060 * Call QMP ``getfd`` (on Windows ``get-win32-socket``) followed by
1068 * @id: Identification string
1070 * Generic hot-unplugging test via the device_del QMP command.
1077 * @id: Identification string
1079 * Generic hot-unplugging test via the device_del QMP command.
1109 * @path: Path to the property being set.
1110 * @property: Property being set.
1111 * @value: Value to set the property.
1113 * Set the property with passed in value.
1115 void qtest_qom_set_bool(QTestState *s, const char *path, const char *property,
1121 * @path: Path to the property being retrieved.
1122 * @property: Property from where the value is being retrieved.
1124 * Returns: Value retrieved from property.
1126 bool qtest_qom_get_bool(QTestState *s, const char *path, const char *property);
1139 * Returns: true if "qemu-img" is available.
1149 * Create a disk image with qemu-img. Note that the QTEST_QEMU_IMG
1150 * environment variable must point to the qemu-img file.