vs->led = qemu_add_led_event_handler(kbd_leds, vs); vs->mouse_mode_notifier.notify = check_pointer_type_change; qemu_add_mouse_mode_change_notifier(&vs->mouse_mode_notifier); /* vs might be free()ed here */ } 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15....
cpu_register_physical_memory(base, SERIAL_SIZE, slavio_serial_io_memory); qemu_add_mouse_event_handler(sunmouse_event, &s->chn[0],0,"QEMU Sun Mouse"); qemu_add_kbd_event_handler(sunkbd_event, &s->chn[1]); register_savevm("slavio_serial_mouse", base,2, slavio_serial_save, slav...
qemu_add_kbd_event_handler(NULL, NULL); common_unbind(&in->c); }static void input_event(struct XenDevice *xendev) { struct XenInput *xenfb = container_of(xendev, struct XenInput, c.xendev); struct xenkbd_page *page = xenfb->c.page;/...
ui/input-legacy.c: remove unused legacy qemu_add_kbd_event_handler() … Nov 8, 2024 util target/i386/hvf: fix handling of XSAVE-related CPUID bits Nov 1, 2024 .dir-locals.el Add .dir-locals.el file to configure emacs coding style ...
[PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 1.715677] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.717266] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.718984] mousedev: PS/2 mouse device common for all mice [ 1.720962] input: AT Translated Set 2 keyboard as /...
next-kbd-convert-to-use-qemu_input_ha... oslib-posix-optimise-vm-startup-time-... pcie-Add-pcie-root-port-fast-plug-unp... pcie-Compat-with-devices-which-do-not... pcie_sriov-Validate-NumVFs-CVE-2024-2... physmem-Bail-out-qemu_ram_block_from_... physmem-gdbstub-Common-helping...
Patch0437: next-kbd-convert-to-use-qemu_input_handler_register.patch Patch0438: target-i386-csv-Add-CSV3-context.patch Patch0439: target-i386-csv-Add-command-to-initialize-CSV3-conte.patch Patch0440: target-i386-csv-Add-command-to-load-data-to-CSV3-gue.patch ...
Patch0031: block-Add-sanity-check-when-setting-retry-parameters.patch Patch0032: migration-skip-cache_drop-for-bios-bootloader-and-nv.patch Patch0033: ps2-fix-oob-in-ps2-kbd.patch Patch0034: Currently-while-kvm-and-qemu-can-not-handle-some-kvm.patch Patch0035: cpu-features-fix-bug-for...
43 44static QemuInputEventQueueHead kbd_queue = QTAILQ_HEAD_INITIALIZER(kbd_queue); 45static QEMUTimer *kbd_timer; 46static uint32_t kbd_default_delay_ms = 10; 47static uint32_t queue_count; 48static uint32_t queue_limit = 1024; 49 50QemuInputHandlerState *qemu_input_handler_register(...
(keycode)); } static void key_event(VncState *vs, int down, uint32_t sym) { int keycode; int lsym = sym; if (lsym >= 'A' && lsym <= 'Z' && qemu_console_is_graphic(vs->vd->dcl.con)) { lsym = lsym - 'A' + 'a'; } keycode = keysym2scancode(vs->vd->kbd_...