Lines Matching refs:read_data
78 struct rt_touch_data *read_data = (struct rt_touch_data *)buf; in st1663i_touch_up() local
83 read_data[id].event = RT_TOUCH_EVENT_UP; in st1663i_touch_up()
87 read_data[id].event = RT_TOUCH_EVENT_NONE; in st1663i_touch_up()
90 read_data[id].timestamp = rt_touch_get_ts(); in st1663i_touch_up()
91 read_data[id].width = pre_w[id]; in st1663i_touch_up()
92 read_data[id].x_coordinate = pre_x[id]; in st1663i_touch_up()
93 read_data[id].y_coordinate = pre_y[id]; in st1663i_touch_up()
94 read_data[id].track_id = id; in st1663i_touch_up()
105 struct rt_touch_data *read_data = (struct rt_touch_data *)buf; in st1663i_touch_down() local
109 read_data[id].event = RT_TOUCH_EVENT_MOVE; in st1663i_touch_down()
114 read_data[id].event = RT_TOUCH_EVENT_DOWN; in st1663i_touch_down()
118 read_data[id].timestamp = rt_touch_get_ts(); in st1663i_touch_down()
119 read_data[id].width = w; in st1663i_touch_down()
120 read_data[id].x_coordinate = x; in st1663i_touch_down()
121 read_data[id].y_coordinate = y; in st1663i_touch_down()
122 read_data[id].track_id = id; in st1663i_touch_down()