Lines Matching refs:report
221 report = ReportData()
222 report.x = x
223 report.y = y
224 report.tippressure = pressure
225 report.tipswitch = pressure > 0
226 buttons.fill(report)
227 proximity.fill(report)
228 toolid.fill(report)
230 return super().create_report(report, reportID=reportID)
239 report = ReportData()
240 report.wacombatterycharging = 1
241 return super().create_report(report, reportID=reportID)
244 report = ReportData()
255 report.wacomtouchring = ring
256 report.wacomtouchringstatus = 1
258 report.wacomtouchring = 0x7F
259 report.wacomtouchringstatus = 0
261 report.wacomexpresskey00 = ek0
262 return super().create_report(report, reportID=reportID)
322 report = ReportData()
323 report.wacomoffsetleft = self.offset
324 report.wacomoffsettop = self.offset
325 report.wacomoffsetright = self.offset
326 report.wacomoffsetbottom = self.offset
327 r = rdesc.create_report([report], None)
486 self, report, expected_events, auto_syn=True, strict=False argument
496 self.debug_reports(report, uhdev, actual_events)
503 def get_report_usages(report): argument
504 application = report.application
505 for field in report.fields:
518 for report in reports:
519 for usage in get_report_usages(report):