Home
last modified time | relevance | path

Searched refs:REL_HWHEEL (Results 1 – 15 of 15) sorted by relevance

/linux-4.1.27/drivers/hid/
Dhid-a4tech.c42 set_bit(REL_HWHEEL, *bit); in a4_input_mapped()
69 input_event(input, EV_REL, value ? REL_HWHEEL : in a4_event()
81 input_event(input, usage->type, REL_HWHEEL, value); in a4_event()
Dhid-ezkey.c43 case 0x232: ez_map_rel(REL_HWHEEL); break; in ez_input_mapping()
58 if (usage->type == EV_REL && usage->code == REL_HWHEEL) { in ez_event()
Dhid-cypress.c65 set_bit(REL_HWHEEL, *bit); in cp_input_mapped()
93 input_event(input, usage->type, REL_HWHEEL, value); in cp_event()
Dhid-magicmouse.c243 input_report_rel(input, REL_HWHEEL, -step_x); in magicmouse_emit_touch()
380 __set_bit(REL_HWHEEL, input->relbit); in magicmouse_setup_input()
Dhid-apple.c280 usage->code == REL_HWHEEL) { in apple_event()
356 hid_map_usage(hi, usage, bit, max, EV_REL, REL_HWHEEL); in apple_input_mapped()
Dhid-lg.c647 if ((drv_data->quirks & LG_INVERT_HWHEEL) && usage->code == REL_HWHEEL) { in lg_event()
Dhid-debug.c962 [REL_HWHEEL] = "HWheel", [REL_DIAL] = "Dial",
Dhid-input.c898 case 0x238: map_rel(REL_HWHEEL); break; in hidinput_configure_usage()
/linux-4.1.27/drivers/input/mouse/
Dlogips2pp.c61 input_report_rel(dev, packet[2] & 0x80 ? REL_HWHEEL : REL_WHEEL, in ps2pp_process_byte()
80 input_report_rel(dev, packet[2] & 0x08 ? REL_HWHEEL : REL_WHEEL, in ps2pp_process_byte()
289 __set_bit(REL_HWHEEL, input_dev->relbit); in ps2pp_set_model_properties()
Dsermouse.c182 input_report_rel(dev, data & 0x80 ? REL_HWHEEL : REL_WHEEL, (data & 7) - (data & 8)); in sermouse_process_ms()
277 if (c & 0x20) set_bit(REL_HWHEEL, input_dev->relbit); in sermouse_connect()
Dsentelic.c834 input_report_rel(dev, REL_HWHEEL, lscroll - rscroll); in fsp_process_byte()
950 __set_bit(REL_HWHEEL, dev->relbit); in fsp_set_input_params()
Dpsmouse-base.c162 input_report_rel(dev, REL_HWHEEL, (int) (packet[3] & 32) - (int) (packet[3] & 31)); in psmouse_process_byte()
616 __set_bit(REL_HWHEEL, psmouse->dev->relbit); in im_explorer_detect()
/linux-4.1.27/drivers/input/keyboard/
Datkbd.c526 input_report_rel(dev, REL_HWHEEL, hscroll); in atkbd_interrupt()
1109 BIT_MASK(REL_HWHEEL); in atkbd_set_device_attrs()
/linux-4.1.27/Documentation/input/
Devent-codes.txt159 * REL_WHEEL, REL_HWHEEL:
313 further buttons of the device. REL_WHEEL and REL_HWHEEL should be used to report
/linux-4.1.27/include/uapi/linux/
Dinput.h812 #define REL_HWHEEL 0x06 macro