Symbol: input_inject_event
drivers/input/evdev.c
1069
input_inject_event(&evdev->handle, EV_REP, REP_DELAY, u);
drivers/input/evdev.c
1070
input_inject_event(&evdev->handle, EV_REP, REP_PERIOD, v);
drivers/input/evdev.c
528
input_inject_event(&evdev->handle,
drivers/input/input-leds.c
69
input_inject_event(led->handle, EV_LED, led->code, !!brightness);
drivers/input/input.c
428
EXPORT_SYMBOL(input_inject_event);
drivers/tty/sysrq.c
815
input_inject_event(handle, EV_KEY, alt_code, 1);
drivers/tty/sysrq.c
816
input_inject_event(handle, EV_KEY, KEY_SYSRQ, 1);
drivers/tty/sysrq.c
817
input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
drivers/tty/sysrq.c
819
input_inject_event(handle, EV_KEY, KEY_SYSRQ, 0);
drivers/tty/sysrq.c
820
input_inject_event(handle, EV_KEY, alt_code, 0);
drivers/tty/sysrq.c
821
input_inject_event(handle, EV_SYN, SYN_REPORT, 1);
drivers/tty/vt/keyboard.c
1101
input_inject_event(handle, EV_LED, LED_SCROLLL, !!(leds & BIT(0)));
drivers/tty/vt/keyboard.c
1102
input_inject_event(handle, EV_LED, LED_NUML, !!(leds & BIT(1)));
drivers/tty/vt/keyboard.c
1103
input_inject_event(handle, EV_LED, LED_CAPSL, !!(leds & BIT(2)));
drivers/tty/vt/keyboard.c
1104
input_inject_event(handle, EV_SYN, SYN_REPORT, 0);
drivers/tty/vt/keyboard.c
256
input_inject_event(handle, EV_SND, SND_TONE, *hz);
drivers/tty/vt/keyboard.c
261
input_inject_event(handle, EV_SND, SND_BELL, *hz ? 1 : 0);
drivers/tty/vt/keyboard.c
299
input_inject_event(handle,
drivers/tty/vt/keyboard.c
302
input_inject_event(handle,
include/linux/input.h
435
void input_inject_event(struct input_handle *handle, unsigned int type, unsigned int code, int value);