Symbol: finger
sys/dev/hid/ietp.c
370
int32_t finger;
sys/dev/hid/ietp.c
394
for (finger = 0, fdata = report + IETP_FINGER_DATA;
sys/dev/hid/ietp.c
395
finger < IETP_MAX_FINGERS;
sys/dev/hid/ietp.c
396
finger++, fdata += IETP_FINGER_DATA_LEN) {
sys/dev/hid/ietp.c
397
if ((report[IETP_TOUCH_INFO] & (1 << (finger + 3))) != 0) {
sys/dev/hid/ietp.c
401
wh = report[IETP_WH_DATA + finger];
sys/dev/hid/ietp.c
410
finger, x, y, sc->max_x, sc->max_y);
sys/dev/hid/ietp.c
419
.id = finger,
sys/dev/hid/ietp.c
428
evdev_mt_push_slot(sc->evdev, finger, &slot_data);
sys/dev/hid/ietp.c
430
evdev_push_abs(sc->evdev, ABS_MT_SLOT, finger);
sys/dev/usb/input/wsp.c
1185
sc->finger = 0;
sys/dev/usb/input/wsp.c
1229
dx = sc->pos_x[sc->finger] - sc->pre_pos_x[sc->finger];
sys/dev/usb/input/wsp.c
1230
dy = sc->pos_y[sc->finger] - sc->pre_pos_y[sc->finger];
sys/dev/usb/input/wsp.c
1239
sc->finger = 0;
sys/dev/usb/input/wsp.c
1243
sc->finger == 0) {
sys/dev/usb/input/wsp.c
1246
sc->finger = 1;
sys/dev/usb/input/wsp.c
1250
sc->finger == 1) {
sys/dev/usb/input/wsp.c
1253
sc->finger = 0;
sys/dev/usb/input/wsp.c
1256
dx, dy, sc->finger);
sys/dev/usb/input/wsp.c
1350
sc->pre_pos_x[sc->finger] = sc->pos_x[sc->finger];
sys/dev/usb/input/wsp.c
1351
sc->pre_pos_y[sc->finger] = sc->pos_y[sc->finger];
sys/dev/usb/input/wsp.c
628
uint8_t finger; /* 0 or 1 *, check which finger moving */
usr.sbin/moused/moused/moused.c
283
struct finger st;
usr.sbin/moused/moused/moused.c
286
struct finger mt[MAX_FINGERS];
usr.sbin/pkg/pkg.c
442
struct fingerprint *finger;
usr.sbin/pkg/pkg.c
462
finger = load_fingerprint(path, ent->d_name);
usr.sbin/pkg/pkg.c
463
if (finger != NULL) {
usr.sbin/pkg/pkg.c
464
STAILQ_INSERT_TAIL(fingerprints, finger, next);