Symbol: EV_REL
sys/dev/atkbdc/psm.c
1790
evdev_support_event(evdev_r, EV_REL);
sys/dev/evdev/cdev.c
688
case EV_REL:
sys/dev/evdev/evdev.c
1011
case EV_REL:
sys/dev/evdev/evdev.c
627
case EV_REL:
sys/dev/evdev/evdev.c
803
case EV_REL:
sys/dev/evdev/evdev.h
204
return (evdev_push_event(evdev, EV_REL, code, value));
sys/dev/hid/hidmap.c
233
data = hi->evtype == EV_REL
sys/dev/hid/hidmap.c
259
if (data == (hi->evtype == EV_REL ? 0 : hi->last_val))
sys/dev/hid/hidmap.c
409
map[i].type == EV_REL ||
sys/dev/hid/hidmap.c
578
case EV_REL:
sys/dev/hid/hidmap.c
579
evdev_support_event(hm->evdev, EV_REL);
sys/dev/hid/hidmap.h
134
HIDMAP_ANY((_page), (_usage), EV_REL, (_code)), \
sys/dev/hid/hms.c
308
hi->evtype == EV_REL && hi->code == REL_WHEEL) {
sys/dev/syscons/sysmouse.c
73
evdev_support_event(sysmouse_evdev, EV_REL);
sys/dev/syscons/sysmouse.c
94
evdev_push_event(sysmouse_evdev, EV_REL, REL_X, x);
sys/dev/syscons/sysmouse.c
95
evdev_push_event(sysmouse_evdev, EV_REL, REL_Y, y);
sys/dev/usb/input/ums.c
721
evdev_support_event(sc->sc_evdev, EV_REL);
sys/dev/vt/vt_sysmouse.c
106
evdev_support_event(sysmouse_evdev, EV_REL);
sys/dev/vt/vt_sysmouse.c
127
evdev_push_event(sysmouse_evdev, EV_REL, REL_X, x);
sys/dev/vt/vt_sysmouse.c
128
evdev_push_event(sysmouse_evdev, EV_REL, REL_Y, y);
usr.sbin/bhyve/pci_virtio_input.c
329
case EV_REL:
usr.sbin/bluetooth/bthidd/btuinput.c
352
ioctl(fd, UI_SET_EVBIT, EV_REL) < 0 ||
usr.sbin/bluetooth/bthidd/btuinput.c
486
if ((x != 0 && uinput_write_event(fd, EV_REL, REL_X, x) < 0) ||
usr.sbin/bluetooth/bthidd/btuinput.c
487
(y != 0 && uinput_write_event(fd, EV_REL, REL_Y, y) < 0) ||
usr.sbin/bluetooth/bthidd/btuinput.c
488
(z != 0 && uinput_write_event(fd, EV_REL, REL_WHEEL, -z) < 0) ||
usr.sbin/bluetooth/bthidd/btuinput.c
489
(t != 0 && uinput_write_event(fd, EV_REL, REL_HWHEEL, t) < 0))
usr.sbin/moused/moused/event-names.h
810
[EV_REL] = rel_map,
usr.sbin/moused/moused/event-names.h
891
{ .name = "EV_REL", .value = EV_REL },
usr.sbin/moused/moused/event-names.h
9
[EV_REL] = "EV_REL",
usr.sbin/moused/moused/moused.c
1322
if (ioctl(fd, EVIOCGBIT(EV_REL, sizeof(rel_bits)), rel_bits) < 0 ||
usr.sbin/moused/moused/moused.c
1484
case EV_REL:
usr.sbin/moused/moused/moused.c
2092
case EV_REL:
usr.sbin/moused/moused/moused.c
2108
case EV_REL:
usr.sbin/moused/moused/util.c
260
{ "REL_", EV_REL },
usr.sbin/moused/msconvd/msconvd.c
813
ioctl(fd, UI_SET_EVBIT, EV_REL) < 0 ||
usr.sbin/moused/msconvd/msconvd.c
854
if ((act->dx != 0 && uinput_event(fd, EV_REL, REL_X, act->dx) < 0) ||
usr.sbin/moused/msconvd/msconvd.c
855
(act->dy != 0 && uinput_event(fd, EV_REL, REL_Y, act->dy) < 0) ||
usr.sbin/moused/msconvd/msconvd.c
856
(act->dz != 0 && uinput_event(fd, EV_REL, REL_WHEEL, -act->dz) < 0))