Lines Matching defs:input
19 #include <linux/input.h>
20 #include <linux/input/mt.h>
910 struct input_dev *input = cyapa->input;
955 if (cyapa->operational && input && input->users &&
1147 struct input_dev *input = cyapa->input;
1157 input_mt_slot(input, slot);
1158 input_mt_report_slot_state(input, MT_TOOL_FINGER, true);
1159 input_report_abs(input, ABS_MT_POSITION_X,
1161 input_report_abs(input, ABS_MT_POSITION_Y,
1163 input_report_abs(input, ABS_MT_PRESSURE, touch->pressure);
1166 input_mt_sync_frame(input);
1169 input_report_key(input, BTN_LEFT,
1172 input_report_key(input, BTN_MIDDLE,
1175 input_report_key(input, BTN_RIGHT,
1177 input_sync(input);