Lines Matching full:touch
26 * - the touch area which works as a touchpad
77 * the device could report a single touch when the two fingers
81 * We'll make do without it, and try to report the first touch
105 int touch; in udraw_raw_event() local
112 touch = TOUCH_NONE; in udraw_raw_event()
114 touch = TOUCH_PEN; in udraw_raw_event()
116 touch = TOUCH_FINGER; in udraw_raw_event()
118 touch = TOUCH_TWOFINGER; in udraw_raw_event()
171 if (touch != TOUCH_NONE) { in udraw_raw_event()
178 if (touch == TOUCH_FINGER) { in udraw_raw_event()
179 /* Save the last one-finger touch */ in udraw_raw_event()
184 } else if (touch == TOUCH_TWOFINGER) { in udraw_raw_event()
213 if (touch == TOUCH_FINGER || touch == TOUCH_TWOFINGER) { in udraw_raw_event()
216 touch == TOUCH_FINGER); in udraw_raw_event()
218 touch == TOUCH_TWOFINGER); in udraw_raw_event()
230 if (touch == TOUCH_PEN) { in udraw_raw_event()