Lines Matching defs:pos
76 struct input_mt_pos pos[SILEAD_MAX_FINGERS];
207 struct input_mt_pos pos;
222 touchscreen_set_mt_pos(&pos, &data->prop,
226 input_report_abs(data->pen_input, ABS_X, pos.x);
227 input_report_abs(data->pen_input, ABS_Y, pos.y);
292 touchscreen_set_mt_pos(&data->pos[touch_nr], &data->prop,
298 input_mt_assign_slots(input, data->slots, data->pos, touch_nr, 0);
303 input_report_abs(input, ABS_MT_POSITION_X, data->pos[i].x);
304 input_report_abs(input, ABS_MT_POSITION_Y, data->pos[i].y);
306 dev_dbg(dev, "x=%d y=%d hw_id=%d sw_id=%d\n", data->pos[i].x,
307 data->pos[i].y, data->id[i], data->slots[i]);