/kernel/linux/linux-5.10/drivers/tty/ |
H A D | sysrq.c | 809 input_inject_event(handle, EV_KEY, alt_code, 1); in sysrq_reinject_alt_sysrq() 810 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1); in sysrq_reinject_alt_sysrq() 811 input_inject_event(handle, EV_SYN, SYN_REPORT, 1); in sysrq_reinject_alt_sysrq() 813 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0); in sysrq_reinject_alt_sysrq() 814 input_inject_event(handle, EV_KEY, alt_code, 0); in sysrq_reinject_alt_sysrq() 815 input_inject_event(handle, EV_SYN, SYN_REPORT, 1); in sysrq_reinject_alt_sysrq()
|
/kernel/linux/linux-6.6/drivers/tty/ |
H A D | sysrq.c | 806 input_inject_event(handle, EV_KEY, alt_code, 1); in sysrq_reinject_alt_sysrq() 807 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1); in sysrq_reinject_alt_sysrq() 808 input_inject_event(handle, EV_SYN, SYN_REPORT, 1); in sysrq_reinject_alt_sysrq() 810 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0); in sysrq_reinject_alt_sysrq() 811 input_inject_event(handle, EV_KEY, alt_code, 0); in sysrq_reinject_alt_sysrq() 812 input_inject_event(handle, EV_SYN, SYN_REPORT, 1); in sysrq_reinject_alt_sysrq()
|
/kernel/linux/linux-5.10/drivers/input/ |
H A D | input-leds.c | 63 input_inject_event(led->handle, EV_LED, led->code, !!brightness); in input_leds_brightness_set()
|
H A D | evdev.c | 530 input_inject_event(&evdev->handle, in evdev_write() 1071 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u); in evdev_do_ioctl() 1072 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v); in evdev_do_ioctl()
|
H A D | input.c | 438 * devices to report input events. See also input_inject_event(). 462 * input_inject_event() - send input event from input handler 472 void input_inject_event(struct input_handle *handle, in input_inject_event() function 491 EXPORT_SYMBOL(input_inject_event); variable
|
/kernel/linux/linux-6.6/drivers/input/ |
H A D | input-leds.c | 63 input_inject_event(led->handle, EV_LED, led->code, !!brightness); in input_leds_brightness_set()
|
H A D | evdev.c | 530 input_inject_event(&evdev->handle, in evdev_write() 1071 input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u); in evdev_do_ioctl() 1072 input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v); in evdev_do_ioctl()
|
H A D | input.c | 418 * devices to report input events. See also input_inject_event(). 442 * input_inject_event() - send input event from input handler 452 void input_inject_event(struct input_handle *handle, in input_inject_event() function 471 EXPORT_SYMBOL(input_inject_event); variable
|
/kernel/linux/linux-5.10/drivers/tty/vt/ |
H A D | keyboard.c | 242 input_inject_event(handle, EV_SND, SND_TONE, *hz); in kd_sound_helper() 247 input_inject_event(handle, EV_SND, SND_BELL, *hz ? 1 : 0); in kd_sound_helper() 285 input_inject_event(handle, in kbd_rate_helper() 288 input_inject_event(handle, in kbd_rate_helper() 1092 input_inject_event(handle, EV_LED, LED_SCROLLL, !!(leds & 0x01)); in kbd_update_leds_helper() 1093 input_inject_event(handle, EV_LED, LED_NUML, !!(leds & 0x02)); in kbd_update_leds_helper() 1094 input_inject_event(handle, EV_LED, LED_CAPSL, !!(leds & 0x04)); in kbd_update_leds_helper() 1095 input_inject_event(handle, EV_SYN, SYN_REPORT, 0); in kbd_update_leds_helper()
|
/kernel/linux/linux-6.6/drivers/tty/vt/ |
H A D | keyboard.c | 256 input_inject_event(handle, EV_SND, SND_TONE, *hz); in kd_sound_helper() 261 input_inject_event(handle, EV_SND, SND_BELL, *hz ? 1 : 0); in kd_sound_helper() 299 input_inject_event(handle, in kbd_rate_helper() 302 input_inject_event(handle, in kbd_rate_helper() 1118 input_inject_event(handle, EV_LED, LED_SCROLLL, !!(leds & BIT(0))); in kbd_update_leds_helper() 1119 input_inject_event(handle, EV_LED, LED_NUML, !!(leds & BIT(1))); in kbd_update_leds_helper() 1120 input_inject_event(handle, EV_LED, LED_CAPSL, !!(leds & BIT(2))); in kbd_update_leds_helper() 1121 input_inject_event(handle, EV_SYN, SYN_REPORT, 0); in kbd_update_leds_helper()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | input.h | 413 void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | input.h | 421 void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);
|