Symbol: touch
sys/dev/wscons/wsmouse.c
1061
struct touch_state *touch = &input->touch;
sys/dev/wscons/wsmouse.c
1063
if (touch->sync & SYNC_PRESSURE)
sys/dev/wscons/wsmouse.c
1064
wsmouse_evq_put(evq, ABS_Z_EV, touch->pressure);
sys/dev/wscons/wsmouse.c
1065
if (touch->sync & SYNC_CONTACTS)
sys/dev/wscons/wsmouse.c
1066
wsmouse_evq_put(evq, ABS_W_EV, touch->contacts);
sys/dev/wscons/wsmouse.c
1067
if ((touch->sync & SYNC_TOUCH_WIDTH)
sys/dev/wscons/wsmouse.c
1069
wsmouse_evq_put(evq, WSCONS_EVENT_TOUCH_WIDTH, touch->width);
sys/dev/wscons/wsmouse.c
1078
t_sync = (input->touch.sync & SYNC_CONTACTS);
sys/dev/wscons/wsmouse.c
1096
printf(" t:%d", input->touch.contacts);
sys/dev/wscons/wsmouse.c
1131
input->touch.sync = 0;
sys/dev/wscons/wsmouse.c
1132
input->touch.prev_contacts = input->touch.contacts;
sys/dev/wscons/wsmouse.c
1164
if (input->touch.sync)
sys/dev/wscons/wsmouse.c
1184
if (input->touch.sync)
sys/dev/wscons/wsmouse.c
1535
input->touch.min_pressure = input->filter.pressure_hi;
sys/dev/wscons/wsmouse.c
1541
input->touch.min_pressure = val;
sys/dev/wscons/wsmouse.c
1697
memset(&input->touch, 0, sizeof(struct touch_state));
sys/dev/wscons/wsmouse.c
1698
input->touch.min_pressure = input->filter.pressure_hi;
sys/dev/wscons/wsmouse.c
664
int limit = imax(input->touch.min_pressure, 1);
sys/dev/wscons/wsmouse.c
676
struct touch_state *touch = &input->touch;
sys/dev/wscons/wsmouse.c
681
if (pressure == 0 || pressure != touch->pressure) {
sys/dev/wscons/wsmouse.c
686
touch->pressure = pressure;
sys/dev/wscons/wsmouse.c
687
touch->sync |= SYNC_PRESSURE;
sys/dev/wscons/wsmouse.c
689
if (contacts != touch->contacts) {
sys/dev/wscons/wsmouse.c
690
touch->contacts = contacts;
sys/dev/wscons/wsmouse.c
691
touch->sync |= SYNC_CONTACTS;
sys/dev/wscons/wsmouse.c
765
wsmouse_touch(sc, value, input->touch.contacts);
sys/dev/wscons/wsmouse.c
769
if (value != input->touch.contacts) {
sys/dev/wscons/wsmouse.c
770
input->touch.contacts = value;
sys/dev/wscons/wsmouse.c
771
input->touch.sync |= SYNC_CONTACTS;
sys/dev/wscons/wsmouse.c
775
if (value != input->touch.width) {
sys/dev/wscons/wsmouse.c
776
input->touch.width = value;
sys/dev/wscons/wsmouse.c
777
input->touch.sync |= SYNC_TOUCH_WIDTH;
sys/dev/wscons/wsmouse.c
801
struct touch_state *touch = &input->touch;
sys/dev/wscons/wsmouse.c
803
if (touch->pressure == 0) {
sys/dev/wscons/wsmouse.c
815
if (touch->prev_contacts == 0)
sys/dev/wscons/wsmouse.c
816
touch->sync &= ~SYNC_PRESSURE;
sys/dev/wscons/wsmouse.c
820
if (touch->sync & SYNC_CONTACTS)
sys/dev/wscons/wsmouse.c
824
if ((touch->sync & SYNC_PRESSURE) && touch->min_pressure) {
sys/dev/wscons/wsmouse.c
825
if (touch->pressure >= input->filter.pressure_hi)
sys/dev/wscons/wsmouse.c
826
touch->min_pressure = input->filter.pressure_lo;
sys/dev/wscons/wsmouse.c
827
else if (touch->pressure < input->filter.pressure_lo)
sys/dev/wscons/wsmouse.c
828
touch->min_pressure = input->filter.pressure_hi;
sys/dev/wscons/wsmouseinput.h
135
struct touch_state touch;
sys/dev/wscons/wstpad.c
1208
tp->contacts = input->touch.contacts;
sys/dev/wscons/wstpad.c
1212
input->touch.width >= tp->params.f2width)
sys/dev/wscons/wstpad.c
1214
input->touch.pressure >= tp->params.f2pressure)))
sys/dev/wscons/wstpad.c
1335
|| (input->touch.sync & SYNC_CONTACTS)
sys/dev/wscons/wstpad.c
1336
|| (input->touch.contacts > 1)) {
sys/dev/wscons/wstpad.c
1431
if ((input->touch.sync & SYNC_CONTACTS)
sys/dev/wscons/wstpad.c
1472
input->touch.sync = 0;
usr.bin/mail/cmd1.c
379
touch(mp);
usr.bin/mail/cmd1.c
420
touch(mp);
usr.bin/mail/cmd2.c
179
touch(mp);
usr.bin/mail/cmd2.c
273
touch(dot);
usr.bin/mail/cmd2.c
297
touch(mp);
usr.bin/mail/cmd2.c
333
touch(mp);
usr.bin/mail/cmd3.c
201
touch(mp);
usr.bin/mail/cmd3.c
608
touch(mp);
usr.bin/mail/collect.c
537
touch(mp);
usr.bin/mail/edit.c
105
touch(mp);
usr.bin/mail/extern.h
241
void touch(struct message *);
usr.bin/ssh/sk-usbhid.c
235
sk_touch_poll(struct sk_usbhid **skv, size_t nsk, int *touch, size_t *idx)
usr.bin/ssh/sk-usbhid.c
249
if ((r = fido_dev_get_touch_status(skv[i]->dev, touch,
usr.bin/ssh/sk-usbhid.c
259
} else if (*touch) {
usr.bin/ssh/sk-usbhid.c
264
*touch = 0;
usr.bin/ssh/sk-usbhid.c
395
int touch, ms_remain;
usr.bin/ssh/sk-usbhid.c
416
if (sk_touch_poll(skv, skvcnt, &touch, &idx) == -1) {
usr.bin/ssh/sk-usbhid.c
420
if (touch) {
usr.sbin/lpr/lpc/cmds.c
1083
if (touch(*qq) == 0) {
usr.sbin/lpr/lpc/cmds.c
1108
if (touch(*qq) == 0) {
usr.sbin/lpr/lpc/cmds.c
68
static int touch(struct queue *);