Lines Matching full:id
43 static lv_indev_gesture_motion_t * get_motion(uint8_t id, lv_indev_gesture_t * info);
44 static int8_t get_motion_idx(uint8_t id, lv_indev_gesture_t * info);
233 LV_LOG_TRACE("processed touch ev: %d finger id: %d state: %d x: %d y: %d finger_cnt: %d", in lv_indev_gesture_detect_pinch()
234 … i, touch->id, touch->state, touch->point.x, touch->point.y, r->info->finger_cnt); in lv_indev_gesture_detect_pinch()
386 * Obtains the contact point motion descriptor with id
387 * @param id the id of the contact point
391 static lv_indev_gesture_motion_t * get_motion(uint8_t id, lv_indev_gesture_t * info) in get_motion() argument
396 if(info->motions[i].finger == id) { in get_motion()
407 * @param id the id of the contact point
411 static int8_t get_motion_idx(uint8_t id, lv_indev_gesture_t * info) in get_motion_idx() argument
416 if(info->motions[i].finger == id) { in get_motion_idx()
437 motion_idx = get_motion_idx(touch->id, g); in process_touch_event()
446 /* New touch point id */ in process_touch_event()
452 motion->finger = touch->id; in process_touch_event()
463 motion = get_motion(touch->id, g); in process_touch_event()
486 motion = get_motion(touch->id, g); in process_touch_event()
493 LV_LOG_TRACE("Ignore extra touch id: %d", touch->id); in process_touch_event()