Home
last modified time | relevance | path

Searched refs:input_inject_event (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/tty/
H A Dsysrq.c808 input_inject_event(handle, EV_KEY, alt_code, 1); in sysrq_reinject_alt_sysrq()
809 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1); in sysrq_reinject_alt_sysrq()
810 input_inject_event(handle, EV_SYN, SYN_REPORT, 1); in sysrq_reinject_alt_sysrq()
812 input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0); in sysrq_reinject_alt_sysrq()
813 input_inject_event(handle, EV_KEY, alt_code, 0); in sysrq_reinject_alt_sysrq()
814 input_inject_event(handle, EV_SYN, SYN_REPORT, 1); in sysrq_reinject_alt_sysrq()
/OK3568_Linux_fs/kernel/drivers/tty/vt/
H A Dkeyboard.c242 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()
/OK3568_Linux_fs/kernel/drivers/input/
H A Dinput-leds.c63 input_inject_event(led->handle, EV_LED, led->code, !!brightness); in input_leds_brightness_set()
H A Devdev.c530 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 Dinput.c469 void input_inject_event(struct input_handle *handle, in input_inject_event() function
488 EXPORT_SYMBOL(input_inject_event);
/OK3568_Linux_fs/kernel/include/linux/
H A Dinput.h423 void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int valu…