• Home
  • Raw
  • Download

Lines Matching refs:evdev

280 		slot->axes.point.x = libevdev_get_slot_value(device->evdev,  in totem_slot_fetch_axes()
283 slot->axes.point.y = libevdev_get_slot_value(device->evdev, in totem_slot_fetch_axes()
290 int angle = libevdev_get_slot_value(device->evdev, in totem_slot_fetch_axes()
304 major = libevdev_get_slot_value(device->evdev, in totem_slot_fetch_axes()
307 minor = libevdev_get_slot_value(device->evdev, in totem_slot_fetch_axes()
310 rmajor = libevdev_get_abs_resolution(device->evdev, ABS_MT_TOUCH_MAJOR); in totem_slot_fetch_axes()
311 rminor = libevdev_get_abs_resolution(device->evdev, ABS_MT_TOUCH_MINOR); in totem_slot_fetch_axes()
358 slot->axes.point.x = libevdev_get_slot_value(device->evdev, in slot_axes_initialize()
361 slot->axes.point.y = libevdev_get_slot_value(device->evdev, in slot_axes_initialize()
671 tracking_id = libevdev_get_slot_value(device->evdev, in totem_interface_initial_proximity()
719 struct libevdev *evdev = device->evdev; in totem_reject_device() local
723 has_xy = libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_X) && in totem_reject_device()
724 libevdev_has_event_code(evdev, EV_ABS, ABS_MT_POSITION_Y); in totem_reject_device()
725 has_slot = libevdev_has_event_code(evdev, EV_ABS, ABS_MT_SLOT); in totem_reject_device()
726 has_tool_dial = libevdev_has_event_code(evdev, EV_ABS, ABS_MT_TOOL_TYPE) && in totem_reject_device()
727 libevdev_get_abs_maximum(evdev, ABS_MT_TOOL_TYPE) >= MT_TOOL_DIAL; in totem_reject_device()
729 has_size |= libevdev_get_abs_resolution(device->evdev, ABS_MT_TOUCH_MAJOR) > 0; in totem_reject_device()
730 has_size |= libevdev_get_abs_resolution(device->evdev, ABS_MT_TOUCH_MINOR) > 0; in totem_reject_device()
812 num_slots = libevdev_get_num_slots(device->evdev); in evdev_totem_create()
816 totem->slot = libevdev_get_current_slot(device->evdev); in evdev_totem_create()