/qemu/ui/ |
H A D | spice-input.c | 116 static void spice_update_buttons(QemuSpicePointer *pointer, in spice_update_buttons() argument 136 if (pointer->last_bmask == button_mask) { in spice_update_buttons() 139 qemu_input_update_buttons(NULL, bmap, pointer->last_bmask, button_mask); in spice_update_buttons() 140 pointer->last_bmask = button_mask; in spice_update_buttons() 146 QemuSpicePointer *pointer = container_of(sin, QemuSpicePointer, mouse); in mouse_motion() local 147 spice_update_buttons(pointer, dz, buttons_state); in mouse_motion() 155 QemuSpicePointer *pointer = container_of(sin, QemuSpicePointer, mouse); in mouse_buttons() local 156 spice_update_buttons(pointer, 0, buttons_state); in mouse_buttons() 171 QemuSpicePointer *pointer = container_of(sin, QemuSpicePointer, tablet); in tablet_set_logical_size() local 179 pointer->width = width; in tablet_set_logical_size() [all …]
|
/qemu/hw/sensor/ |
H A D | dps310.c | 27 uint8_t pointer; member 72 s->pointer = 0; in dps310_reset() 83 __func__, s->pointer); in dps310_read() 113 __func__, s->pointer); in dps310_write() 141 return dps310_read(s, s->pointer++); in dps310_rx() 156 s->pointer = data; in dps310_tx() 159 dps310_write(s, s->pointer++, data); in dps310_tx() 171 s->pointer = 0xFF; in dps310_event() 194 VMSTATE_UINT8(pointer, DPS310State),
|
H A D | lsm303dlhc_mag.c | 70 uint8_t pointer; member 267 switch (s->pointer) { in lsm303dlhc_mag_write() 308 s->pointer = data; in lsm303dlhc_mag_send() 329 switch (s->pointer) { in lsm303dlhc_mag_recv() 401 if (s->pointer == LSM303DLHC_MAG_REG_OUT_Y_L) { in lsm303dlhc_mag_recv() 402 s->pointer = LSM303DLHC_MAG_REG_OUT_X_H; in lsm303dlhc_mag_recv() 403 } else if (s->pointer == LSM303DLHC_MAG_REG_IRC) { in lsm303dlhc_mag_recv() 404 s->pointer = LSM303DLHC_MAG_REG_CRA; in lsm303dlhc_mag_recv() 406 s->pointer++; in lsm303dlhc_mag_recv() 450 VMSTATE_UINT8(pointer, LSM303DLHCMagState), [all …]
|
H A D | tmp105.c | 133 switch (s->pointer & 3) { in tmp105_read() 155 trace_tmp105_read(s->i2c.address, s->pointer); in tmp105_read() 160 trace_tmp105_write(s->i2c.address, s->pointer); in tmp105_write() 162 switch (s->pointer & 3) { in tmp105_write() 178 s->limit[s->pointer & 1] = (int16_t) in tmp105_write() 202 s->pointer = data; in tmp105_tx() 268 VMSTATE_UINT8(pointer, TMP105State), 287 s->pointer = 0; in tmp105_reset()
|
H A D | emc141x.c | 41 uint8_t pointer; member 104 switch (s->pointer) { in emc141x_read() 157 switch (s->pointer) { in emc141x_write() 205 s->pointer = data; in emc141x_tx() 234 VMSTATE_UINT8(pointer, EMC141XState), 248 s->pointer = 0; in emc141x_reset()
|
H A D | tmp421.c | 65 uint8_t pointer; member 175 switch (s->pointer) { in tmp421_read() 231 switch (s->pointer) { in tmp421_write() 265 s->pointer = data; in tmp421_tx() 296 VMSTATE_UINT8(pointer, TMP421State), 312 s->pointer = 0; in tmp421_reset()
|
/qemu/hw/gpio/ |
H A D | pca9552.c | 212 if (s->pointer != 0xFF && s->pointer & PCA9552_AUTOINC) { in pca955x_autoinc() 213 uint8_t reg = s->pointer & 0xf; in pca955x_autoinc() 216 s->pointer = reg | PCA9552_AUTOINC; in pca955x_autoinc() 225 ret = pca955x_read(s, s->pointer & 0xf); in pca955x_recv() 237 if (s->pointer == PCA9552_AUTOINC) { in pca955x_recv() 254 s->pointer = data; in pca955x_send() 257 pca955x_write(s, s->pointer & 0xf, data); in pca955x_send() 354 VMSTATE_UINT8(pointer, PCA955xState), 378 s->pointer = 0xFF; in pca9552_reset()
|
H A D | pca9554.c | 122 return pca9554_read(s, s->pointer & 0x3); in pca9554_recv() 131 s->pointer = data; in pca9554_send() 134 pca9554_write(s, s->pointer & 0x3, data); in pca9554_send() 224 VMSTATE_UINT8(pointer, PCA9554State), 244 s->pointer = 0x0; in pca9554_reset()
|
/qemu/hw/acpi/ |
H A D | bios-linker-loader.c | 64 } pointer; member 292 strncpy(entry.pointer.dest_file, dest_file, in bios_linker_loader_add_pointer() 293 sizeof entry.pointer.dest_file - 1); in bios_linker_loader_add_pointer() 294 strncpy(entry.pointer.src_file, src_file, in bios_linker_loader_add_pointer() 295 sizeof entry.pointer.src_file - 1); in bios_linker_loader_add_pointer() 297 entry.pointer.offset = cpu_to_le32(dst_patched_offset); in bios_linker_loader_add_pointer() 298 entry.pointer.size = dst_patched_size; in bios_linker_loader_add_pointer()
|
/qemu/block/ |
H A D | vvfat.c | 85 char* pointer; member 91 array->pointer = NULL; in array_init() 99 g_free(array->pointer); in array_free() 106 assert(array->pointer); in array_get() 107 return array->pointer + index * array->item_size; in array_get() 114 array->pointer = g_realloc(array->pointer, new_size); in array_ensure_allocated() 115 assert(array->pointer); in array_ensure_allocated() 116 memset(array->pointer + array->size, 0, new_size - array->size); in array_ensure_allocated() 133 array->pointer=g_realloc(array->pointer,array->size+increment); in array_insert() 134 if(!array->pointer) in array_insert() [all …]
|
/qemu/scripts/qemugdb/ |
H A D | aio.py | 28 coptr = (cur['opaque'].cast(gdb.lookup_type('FDYieldUntilData').pointer()))['co'] 29 coptr = coptr.cast(gdb.lookup_type('CoroutineUContext').pointer())
|
H A D | coroutine.py | 14 VOID_PTR = gdb.lookup_type('void').pointer() 135 return co.cast(gdb.lookup_type('CoroutineUContext').pointer())
|
/qemu/docs/specs/ |
H A D | acpi_hest_ghes.rst | 81 "error_status_address" fields of the HEST table with a pointer to the 85 "read_ack_register" fields of the HEST table with a pointer to the 89 addresses in the "error_block_address" fields with a pointer to the
|
/qemu/tcg/tci/ |
H A D | tcg-target-reg-bits.h | 15 # error Unknown pointer size for tci target
|
/qemu/include/hw/sensor/ |
H A D | tmp105.h | 40 uint8_t pointer; member
|
/qemu/include/hw/gpio/ |
H A D | pca9554.h | 28 uint8_t pointer; member
|
H A D | pca9552.h | 30 uint8_t pointer; member
|
/qemu/tests/qtest/migration/s390x/ |
H A D | Makefile | 8 CFLAGS+=-ffreestanding -fno-delete-null-pointer-checks -fPIE -Os \
|
/qemu/docs/system/arm/ |
H A D | emulation.rst | 57 - FEAT_EPAC (Enhanced pointer authentication) 68 - FEAT_FPACCOMBINE (Faulting on combined pointer authentication instructions) 69 - FEAT_FPACC_SPEC (Speculative behavior of combined pointer authentication instructions) 110 - FEAT_PAuth2 (Enhancements to pointer authentication)
|
/qemu/host/include/aarch64/host/ |
H A D | load-extract-al16-al8.h.inc | 33 * All we need do is align the pointer mod 8.
|
/qemu/docs/devel/ |
H A D | clocks.rst | 91 Both functions return the created Clock pointer, which should be saved in the 121 * + a clock input named "clk_in", whose pointer is stored in 124 * + a clock output named "clk_out" whose pointer is stored in 138 /* create and fill the pointer fields in the MyDeviceState */ 173 The ``opaque`` argument is the pointer passed to ``qdev_init_clock_in()`` 175 ``dev`` device pointer. 348 * usually this will be the device state pointer. 416 have a pointer to it in the device state because we did the following
|
H A D | style.rst | 128 is often held as a ``cs`` pointer variable, whereas the concrete 129 CPUArchState is usually held in a pointer called ``env``. 376 to be an 'unsigned long' or a pointer type. 396 Unless a pointer is used to modify the pointed-to storage, 398 up-front that this is a read-only pointer. Perhaps more 400 pointer, you're guaranteed that it is used to modify the storage 401 it points to, or it is aliased to another pointer that is. 784 Example: when a function returns a non-null pointer on success, and it
|
H A D | control-flow-integrity.rst | 19 function pointer declared in the source code. 22 the signature of every function and every function pointer used in the code.
|
/qemu/tests/tcg/hexagon/ |
H A D | Makefile.target | 21 CFLAGS += -Wno-incompatible-pointer-types -Wno-undefined-internal
|
/qemu/scripts/ |
H A D | dump-guest-memory.py | 145 ctypes.memmove(ctypes.pointer(header), 153 ctypes.memmove(ctypes.pointer(note), vmcoreinfo, ctypes.sizeof(note))
|