Lines Matching defs:input
19 #include <linux/input.h>
20 #include <linux/input/mt.h>
910 struct input_dev *input = cyapa->input;
956 input && input_device_enabled(input) &&
1148 struct input_dev *input = cyapa->input;
1158 input_mt_slot(input, slot);
1159 input_mt_report_slot_state(input, MT_TOOL_FINGER, true);
1160 input_report_abs(input, ABS_MT_POSITION_X,
1162 input_report_abs(input, ABS_MT_POSITION_Y,
1164 input_report_abs(input, ABS_MT_PRESSURE, touch->pressure);
1167 input_mt_sync_frame(input);
1170 input_report_key(input, BTN_LEFT,
1173 input_report_key(input, BTN_MIDDLE,
1176 input_report_key(input, BTN_RIGHT,
1178 input_sync(input);