Searched refs:evbit (Results 1 – 25 of 42) sorted by relevance
12
/linux-2.4.37.9/drivers/hil/ |
D | hil_ptr.c | 290 ptr->dev.evbit[0] = BIT(EV_REL); in hil_ptr_connect() 295 ptr->dev.evbit[0] = BIT(EV_ABS); in hil_ptr_connect() 298 if (!ptr->dev.evbit[0]) { in hil_ptr_connect() 303 if (ptr->nbtn) ptr->dev.evbit[0] |= BIT(EV_KEY); in hil_ptr_connect()
|
D | hilkbd.c | 301 hil_dev.dev.evbit[0] |= BIT(EV_KEY); in hil_keyb_init()
|
/linux-2.4.37.9/drivers/input/ |
D | mousedev.c | 411 if (!test_bit(EV_KEY, dev->evbit) || in mousedev_connect() 417 if ((!test_bit(EV_REL, dev->evbit) || !test_bit(REL_X, dev->relbit)) && in mousedev_connect() 418 (!test_bit(EV_REL, dev->evbit) || !test_bit(REL_WHEEL, dev->relbit)) && in mousedev_connect() 419 (!test_bit(EV_ABS, dev->evbit) || !test_bit(ABS_X, dev->absbit))) in mousedev_connect()
|
D | input.c | 71 if (type > EV_MAX || !test_bit(type, dev->evbit)) in input_event() 85 if (test_bit(EV_REP, dev->evbit) && dev->timer.function) { in input_event()
|
D | uinput.c | 218 if (test_bit(EV_ABS, dev->evbit)) { in uinput_alloc_device() 331 set_bit(arg, udev->dev->evbit); in uinput_ioctl()
|
D | keybdev.c | 188 if (!test_bit(EV_KEY, dev->evbit)) in keybdev_connect()
|
D | joydev.c | 428 if (!(test_bit(EV_KEY, dev->evbit) && test_bit(EV_ABS, dev->evbit) && in joydev_connect()
|
/linux-2.4.37.9/drivers/usb/ |
D | hid-input.c | 106 set_bit(EV_REP, input->evbit); in hidinput_configure_usage() 183 set_bit(EV_KEY, input->evbit); in hidinput_configure_usage() 301 set_bit(usage->type, input->evbit); in hidinput_configure_usage()
|
D | wacom.c | 99 unsigned long evbit; member 445 wacom->dev.evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_MSC) | wacom->features->evbit; in wacom_probe()
|
D | kbtab.c | 104 kbtab->dev.evbit[0] |= BIT(EV_KEY) | BIT(EV_ABS) | BIT(EV_MSC); in kbtab_probe()
|
D | usbmouse.c | 130 mouse->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_REL); in usb_mouse_probe()
|
/linux-2.4.37.9/Documentation/input/ |
D | input-programming.txt | 35 button_dev.evbit[0] = BIT(EV_KEY); 66 set_bit(EV_KEY, button_dev.evbit); 243 autorepeat for your device, just set EV_REP in dev->evbit. All will be 256 driver can handle these events, it has to set the respective bits in evbit,
|
/linux-2.4.37.9/drivers/char/joystick/ |
D | amijoy.c | 127 amijoy_dev[i].evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in amijoy_init()
|
D | a3d.c | 294 a3d->dev.evbit[0] |= BIT(EV_ABS) | BIT(EV_KEY) | BIT(EV_REL); in a3d_connect() 322 a3d->dev.evbit[0] |= BIT(EV_KEY) | BIT(EV_REL); in a3d_connect()
|
D | magellan.c | 153 magellan->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in magellan_connect()
|
D | stinger.c | 142 stinger->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in stinger_connect()
|
D | spaceball.c | 179 spaceball->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in spaceball_connect()
|
D | spaceorb.c | 168 spaceorb->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in spaceorb_connect()
|
D | warrior.c | 147 warrior->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_REL) | BIT(EV_ABS); in warrior_connect()
|
D | interact.c | 256 interact->dev.evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in interact_connect()
|
D | turbografx.c | 183 tgfx->dev[i].evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in tgfx_probe()
|
D | cobra.c | 201 cobra->dev[i].evbit[0] = BIT(EV_KEY) | BIT(EV_ABS); in cobra_connect()
|
/linux-2.4.37.9/drivers/macintosh/ |
D | adbhid.c | 519 adbhid[id]->input.evbit[0] = BIT(EV_KEY) | BIT(EV_LED) | BIT(EV_REP); in adbhid_input_register() 530 adbhid[id]->input.evbit[0] = BIT(EV_KEY) | BIT(EV_REL); in adbhid_input_register() 544 adbhid[id]->input.evbit[0] = BIT(EV_KEY) | BIT(EV_REP); in adbhid_input_register()
|
D | mac_hid.c | 461 emumousebtn.evbit[0] = BIT(EV_KEY) | BIT(EV_REL); in emumousebtn_input_register()
|
/linux-2.4.37.9/drivers/char/ |
D | obmouse.c | 289 obdev.evbit[0] = BIT(EV_KEY) | BIT(EV_REL); in obmouse_init()
|
12