Searched refs:input_inject_event (Results  1 – 6 of 6) sorted by relevance
| /Linux-v5.4/drivers/tty/ | 
| D | sysrq.c | 759 		input_inject_event(handle, EV_KEY, alt_code, 1);  in sysrq_reinject_alt_sysrq()760 		input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1);  in sysrq_reinject_alt_sysrq()
 761 		input_inject_event(handle, EV_SYN, SYN_REPORT, 1);  in sysrq_reinject_alt_sysrq()
 763 		input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0);  in sysrq_reinject_alt_sysrq()
 764 		input_inject_event(handle, EV_KEY, alt_code, 0);  in sysrq_reinject_alt_sysrq()
 765 		input_inject_event(handle, EV_SYN, SYN_REPORT, 1);  in sysrq_reinject_alt_sysrq()
 
 | 
| /Linux-v5.4/drivers/tty/vt/ | 
| D | keyboard.c | 237 			input_inject_event(handle, EV_SND, SND_TONE, *hz);  in kd_sound_helper()242 			input_inject_event(handle, EV_SND, SND_BELL, *hz ? 1 : 0);  in kd_sound_helper()
 280 			input_inject_event(handle,  in kbd_rate_helper()
 283 			input_inject_event(handle,  in kbd_rate_helper()
 1080 		input_inject_event(handle, EV_LED, LED_SCROLLL, !!(leds & 0x01));  in kbd_update_leds_helper()
 1081 		input_inject_event(handle, EV_LED, LED_NUML,    !!(leds & 0x02));  in kbd_update_leds_helper()
 1082 		input_inject_event(handle, EV_LED, LED_CAPSL,   !!(leds & 0x04));  in kbd_update_leds_helper()
 1083 		input_inject_event(handle, EV_SYN, SYN_REPORT, 0);  in kbd_update_leds_helper()
 
 | 
| /Linux-v5.4/drivers/input/ | 
| D | input-leds.c | 63 	input_inject_event(led->handle, EV_LED, led->code, !!brightness);  in input_leds_brightness_set()
 | 
| D | evdev.c | 542 		input_inject_event(&evdev->handle,  in evdev_write()1083 		input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);  in evdev_do_ioctl()
 1084 		input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);  in evdev_do_ioctl()
 
 | 
| D | input.c | 457 void input_inject_event(struct input_handle *handle,  in input_inject_event()  function476 EXPORT_SYMBOL(input_inject_event);
 
 | 
| /Linux-v5.4/include/linux/ | 
| D | input.h | 412 void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int valu…
 |