Lines Matching refs:fuzz
162 self.absinfo[libevdev.EV_ABS.ABS_X].fuzz
163 or self.absinfo[libevdev.EV_ABS.ABS_MT_POSITION_X].fuzz
166 self.absinfo[libevdev.EV_ABS.ABS_Y].fuzz
167 or self.absinfo[libevdev.EV_ABS.ABS_MT_POSITION_Y].fuzz
176 def print_fuzz(what, fuzz): argument
178 if fuzz is None:
180 elif fuzz == (0, 0):
183 print("x={} y={}".format(*fuzz))
186 def handle_existing_entry(device, fuzz): argument
258 parts[3] = str(fuzz)
291 if test_hwdb_entry(device, fuzz):
318 def test_hwdb_entry(device, fuzz): argument
325 if f == (fuzz, fuzz):
338 if f is not None and f == (fuzz, fuzz):
374 def write_udev_rule(device, fuzz): argument
406 svn[3:], device.name, device.name, svn, pvr, fuzz, fuzz, fuzz, fuzz
409 svn[3:], device.name, device.name, svn, pn, fuzz, fuzz, fuzz, fuzz
427 if handle_existing_entry(device, fuzz):
455 if test_hwdb_entry(device, fuzz):
494 fuzz = device.check_property()
495 print_fuzz("udev property", fuzz)
497 fuzz = device.check_axes()
498 print_fuzz("axes", fuzz)
500 userfuzz = args.fuzz