Lines Matching refs:_push_event
94 _push_event(int type, int code, int value) in _push_event() function
153 _push_event(EV_ABS, ABS_MT_SLOT, slot_index); in _mts_pointer_down()
155 _push_event(EV_ABS, ABS_MT_TRACKING_ID, slot_index); in _mts_pointer_down()
156 _push_event(EV_ABS, ABS_MT_TOUCH_MAJOR, ++mts_state->touch_major); in _mts_pointer_down()
157 _push_event(EV_ABS, ABS_MT_PRESSURE, pressure); in _mts_pointer_down()
158 _push_event(EV_ABS, ABS_MT_POSITION_X, x); in _mts_pointer_down()
159 _push_event(EV_ABS, ABS_MT_POSITION_Y, y); in _mts_pointer_down()
160 _push_event(EV_SYN, SYN_REPORT, 0); in _mts_pointer_down()
178 _push_event(EV_ABS, ABS_MT_SLOT, slot_index); in _mts_pointer_up()
182 _push_event(EV_ABS, ABS_MT_TRACKING_ID, -1); in _mts_pointer_up()
183 _push_event(EV_SYN, SYN_REPORT, 0); in _mts_pointer_up()
218 _push_event(EV_ABS, ABS_MT_SLOT, slot_index); in _mts_pointer_move()
224 _push_event(EV_ABS, ABS_MT_PRESSURE, pressure); in _mts_pointer_move()
228 _push_event(EV_ABS, ABS_MT_POSITION_X, x); in _mts_pointer_move()
232 _push_event(EV_ABS, ABS_MT_POSITION_Y, y); in _mts_pointer_move()
235 _push_event(EV_SYN, SYN_REPORT, 0); in _mts_pointer_move()