• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/input/tablet/

Lines Matching refs:input_report_key

28 			input_report_key(input, wacom->tool[0], 1);
33 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -127));
34 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
36 input_report_key(input, wacom->tool[0], 0);
39 input_report_key(input, BTN_TOUCH, 0);
44 input_report_key(input, BTN_TOOL_PEN, 1);
49 input_report_key(input, BTN_TOUCH, ((signed char)data[6] > -80) && !(data[5] & 0x20));
50 input_report_key(input, BTN_STYLUS, (data[5] & 0x40));
99 input_report_key(input, wacom->tool[1], 0);
110 input_report_key(input, wacom->tool[1], prox); /* report in proximity for tool */
116 input_report_key(input, BTN_TOUCH, data[4] & 0x08);
117 input_report_key(input, BTN_STYLUS, data[4] & 0x10);
119 input_report_key(input, BTN_STYLUS2, (wacom->tool[1] == BTN_TOOL_PEN) && (data[4] & 0x20));
126 input_report_key(input, wacom->tool[1], prox);
144 input_report_key(input, BTN_TOOL_RUBBER, data[1] & 0x20);
145 input_report_key(input, BTN_TOUCH, data[1] & 0x08);
148 input_report_key(input, BTN_TOOL_PEN, data[1] & 0x20);
149 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
156 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
157 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
178 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
179 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
186 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
189 input_report_key(input, wacom->tool[0], prox);
224 input_report_key(input, BTN_MIDDLE, data[1] & 0x04);
237 input_report_key(input, BTN_TOUCH, data[1] & 0x01);
238 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
239 input_report_key(input, BTN_STYLUS2, data[1] & 0x04);
241 input_report_key(input, BTN_LEFT, data[1] & 0x01);
242 input_report_key(input, BTN_RIGHT, data[1] & 0x02);
257 input_report_key(input, wacom->tool[0], prox);
267 input_report_key(input, BTN_0, (data[7] & 0x40));
268 input_report_key(input, BTN_4, (data[7] & 0x80));
271 input_report_key(input, BTN_TOOL_FINGER, 0xf0);
284 input_report_key(input, BTN_0, (data[7] & 0x08));
285 input_report_key(input, BTN_1, (data[7] & 0x20));
286 input_report_key(input, BTN_4, (data[7] & 0x10));
287 input_report_key(input, BTN_5, (data[7] & 0x40));
289 input_report_key(input, BTN_TOOL_FINGER, 0xf0);
410 input_report_key(input, BTN_LEFT, 0);
411 input_report_key(input, BTN_MIDDLE, 0);
412 input_report_key(input, BTN_RIGHT, 0);
413 input_report_key(input, BTN_SIDE, 0);
414 input_report_key(input, BTN_EXTRA, 0);
419 input_report_key(input, BTN_STYLUS, 0);
420 input_report_key(input, BTN_STYLUS2, 0);
421 input_report_key(input, BTN_TOUCH, 0);
426 input_report_key(input, wacom->tool[idx], 0);
453 input_report_key(input, BTN_STYLUS, data[1] & 2);
454 input_report_key(input, BTN_STYLUS2, data[1] & 4);
455 input_report_key(input, BTN_TOUCH, t > 10);
493 input_report_key(input, BTN_0, (data[2] & 0x01));
494 input_report_key(input, BTN_1, (data[3] & 0x01));
495 input_report_key(input, BTN_2, (data[3] & 0x02));
496 input_report_key(input, BTN_3, (data[3] & 0x04));
497 input_report_key(input, BTN_4, (data[3] & 0x08));
498 input_report_key(input, BTN_5, (data[3] & 0x10));
499 input_report_key(input, BTN_6, (data[3] & 0x20));
507 input_report_key(input, BTN_7, (data[3] & 0x40));
508 input_report_key(input, BTN_8, (data[3] & 0x80));
511 input_report_key(input, wacom->tool[1], 1);
514 input_report_key(input, wacom->tool[1], 0);
519 input_report_key(input, BTN_0, (data[5] & 0x01));
520 input_report_key(input, BTN_1, (data[6] & 0x01));
521 input_report_key(input, BTN_2, (data[6] & 0x02));
522 input_report_key(input, BTN_3, (data[6] & 0x04));
523 input_report_key(input, BTN_4, (data[6] & 0x08));
524 input_report_key(input, BTN_5, (data[6] & 0x10));
525 input_report_key(input, BTN_6, (data[6] & 0x20));
526 input_report_key(input, BTN_7, (data[6] & 0x40));
527 input_report_key(input, BTN_8, (data[6] & 0x80));
528 input_report_key(input, BTN_9, (data[7] & 0x01));
529 input_report_key(input, BTN_A, (data[8] & 0x01));
530 input_report_key(input, BTN_B, (data[8] & 0x02));
531 input_report_key(input, BTN_C, (data[8] & 0x04));
532 input_report_key(input, BTN_X, (data[8] & 0x08));
533 input_report_key(input, BTN_Y, (data[8] & 0x10));
534 input_report_key(input, BTN_Z, (data[8] & 0x20));
535 input_report_key(input, BTN_BASE, (data[8] & 0x40));
536 input_report_key(input, BTN_BASE2, (data[8] & 0x80));
538 input_report_key(input, BTN_0, (data[5] & 0x01));
539 input_report_key(input, BTN_1, (data[5] & 0x02));
540 input_report_key(input, BTN_2, (data[5] & 0x04));
541 input_report_key(input, BTN_3, (data[5] & 0x08));
542 input_report_key(input, BTN_4, (data[6] & 0x01));
543 input_report_key(input, BTN_5, (data[6] & 0x02));
544 input_report_key(input, BTN_6, (data[6] & 0x04));
545 input_report_key(input, BTN_7, (data[6] & 0x08));
546 input_report_key(input, BTN_8, (data[5] & 0x10));
547 input_report_key(input, BTN_9, (data[6] & 0x10));
555 input_report_key(input, wacom->tool[1], 1);
558 input_report_key(input, wacom->tool[1], 0);
622 input_report_key(input, BTN_LEFT, data[8] & 0x01);
623 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
624 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
626 input_report_key(input, BTN_SIDE, data[8] & 0x20);
627 input_report_key(input, BTN_EXTRA, data[8] & 0x10);
634 input_report_key(input, BTN_LEFT, data[6] & 0x01);
635 input_report_key(input, BTN_MIDDLE, data[6] & 0x02);
636 input_report_key(input, BTN_RIGHT, data[6] & 0x04);
639 input_report_key(input, BTN_SIDE, data[6] & 0x08);
640 input_report_key(input, BTN_EXTRA, data[6] & 0x10);
647 input_report_key(input, BTN_LEFT, data[8] & 0x04);
648 input_report_key(input, BTN_MIDDLE, data[8] & 0x08);
649 input_report_key(input, BTN_RIGHT, data[8] & 0x10);
655 input_report_key(input, BTN_SIDE, data[8] & 0x40);
656 input_report_key(input, BTN_EXTRA, data[8] & 0x20);
663 input_report_key(input, BTN_LEFT, data[8] & 0x01);
664 input_report_key(input, BTN_MIDDLE, data[8] & 0x02);
665 input_report_key(input, BTN_RIGHT, data[8] & 0x04);
666 input_report_key(input, BTN_SIDE, data[8] & 0x10);
667 input_report_key(input, BTN_EXTRA, data[8] & 0x08);
672 input_report_key(input, wacom->tool[idx], 1);
696 input_report_key(input, wacom->tool[finger], 1);
698 input_report_key(input, BTN_TOUCH, 1);
713 input_report_key(input, wacom->tool[finger], 0);
715 input_report_key(input, BTN_TOUCH, 0);
737 input_report_key(input, BTN_TOUCH, le16_to_cpup((__le16 *)&data[6]));
739 input_report_key(input, wacom->tool[1], 1);
758 input_report_key(input, BTN_TOUCH, 1);
760 input_report_key(input, wacom->tool[1], 1);
834 input_report_key(input, BTN_STYLUS, data[1] & 0x02);
835 input_report_key(input, BTN_STYLUS2, data[1] & 0x10);
842 input_report_key(input, BTN_TOUCH, data[1] & 0x05);
847 input_report_key(input, wacom->tool[0], prox);