Lines Matching full:report

30  * hid report to report everything instead.
44 * Default report descriptor for the first exposed hidraw node:
50 * # 0x85, 0x08, // Report ID (8) 7
51 * # 0x75, 0x58, // Report Size (88) 9
52 * # 0x95, 0x01, // Report Count (1) 11
65 * # Report descriptor length: 93 bytes
70 * # 0x85, 0x0a, // Report ID (10) 6
79 * # 0x75, 0x01, // Report Size (1) 24
80 * # 0x95, 0x06, // Report Count (6) 26
83 * # 0x75, 0x01, // Report Size (1) 32
84 * # 0x95, 0x01, // Report Count (1) 34
95 * # 0x75, 0x10, // Report Size (16) 58
96 * # 0x95, 0x02, // Report Count (2) 60
101 * # 0x75, 0x10, // Report Size (16) 71
102 * # 0x95, 0x01, // Report Count (1) 73
108 * # 0x75, 0x08, // Report Size (8) 85
109 * # 0x95, 0x02, // Report Count (2) 87
118 * # Report descriptor length: 148 bytes
123 * # 0x85, 0x11, // Report ID (17) 6
129 * # 0x75, 0x01, // Report Size (1) 18
130 * # 0x95, 0x01, // Report Count (1) 20
138 * # 0x95, 0x06, // Report Count (6) 36
145 * # 0x75, 0x10, // Report Size (16) 52
146 * # 0x95, 0x01, // Report Count (1) 54
156 * # 0x75, 0x08, // Report Size (8) 75
157 * # 0x95, 0x01, // Report Count (1) 77
159 * # 0x75, 0x08, // Report Size (8) 81
160 * # 0x95, 0x01, // Report Count (1) 83
162 * # 0x75, 0x08, // Report Size (8) 87
163 * # 0x95, 0x01, // Report Count (1) 89
165 * # 0x75, 0x08, // Report Size (8) 93
166 * # 0x95, 0x01, // Report Count (1) 95
168 * # 0x75, 0x08, // Report Size (8) 99
169 * # 0x95, 0x01, // Report Count (1) 101
177 * # 0x85, 0x03, // Report ID (3) 114
183 * # 0x75, 0x01, // Report Size (1) 126
184 * # 0x95, 0x08, // Report Count (8) 128
190 * # 0x75, 0x08, // Report Size (8) 141
191 * # 0x95, 0x06, // Report Count (6) 143
215 // -- Byte 0 in report
222 // Byte 1 in report - just exists so we get to be a tablet pad
229 // Bytes 2/3 in report - just exists so we get to be a tablet pad
236 // Byte 4 in report is the dial
255 // Make sure we match our original report length
264 // -- Byte 0 in report
268 // -- Byte 1 in report
322 // We leave the pen on the vendor report ID
347 // from the pen report ID for x and y
352 // Bytes 2/3 in report
359 // Bytes 4/5 in report
363 // Bytes 6/7 in report
368 // Bytes 8/9 in report
373 // Byte 10 in report
375 // Byte 11 in report
428 // Make sure we match our original report length
533 __u8 report[8] = {PAD_REPORT_ID, 0x0, 0x0, 0x0, 0x00, button}; in SEC() local
535 __builtin_memcpy(data, report, sizeof(report)); in SEC()
536 return sizeof(report); in SEC()
552 __u8 report[] = {PAD_REPORT_ID, 0x0, 0x0, 0x0, dial, button}; in SEC() local
554 __builtin_memcpy(data, report, sizeof(report)); in SEC()
555 return sizeof(report); in SEC()
576 /* Dial report */ in SEC()