Lines Matching defs:input
22 #include <linux/input.h>
23 #include <linux/input/touchscreen.h>
98 struct input_dev *input;
230 struct input_dev *input = ts->input;
232 input_report_key(input, BTN_TOUCH, 0);
233 input_report_abs(input, ABS_PRESSURE, 0);
234 input_sync(input);
901 struct input_dev *input = ts->input;
904 input_report_key(input, BTN_TOUCH, 1);
909 touchscreen_report_pos(input, &ts->core_prop, x, y, false);
910 input_report_abs(input, ABS_PRESSURE, ts->pressure_max - Rt);
912 input_sync(input);
1262 ts->input = input_dev;
1337 touchscreen_parse_properties(ts->input, false, &ts->core_prop);
1449 input_unregister_device(ts->input);