Home
last modified time | relevance | path

Searched refs:seat_slot (Results 1 – 8 of 8) sorted by relevance

/third_party/libinput/src/
Devdev-fallback.c357 int seat_slot; in fallback_flush_mt_down() local
363 if (slot->seat_slot != -1) { in fallback_flush_mt_down()
369 seat_slot = ffs(~seat->slot_map) - 1; in fallback_flush_mt_down()
370 slot->seat_slot = seat_slot; in fallback_flush_mt_down()
372 if (seat_slot == -1) in fallback_flush_mt_down()
375 seat->slot_map |= bit(seat_slot); in fallback_flush_mt_down()
380 touch_notify_touch_down(base, time, slot_idx, seat_slot, in fallback_flush_mt_down()
395 int seat_slot; in fallback_flush_mt_motion() local
401 seat_slot = slot->seat_slot; in fallback_flush_mt_motion()
404 if (seat_slot == -1) in fallback_flush_mt_motion()
[all …]
Devdev-fallback.h65 int32_t seat_slot; member
86 int32_t seat_slot; member
Dlibinput-private.h604 int32_t seat_slot,
611 int32_t seat_slot,
618 int32_t seat_slot);
624 int32_t seat_slot);
Dlibinput.c193 int32_t seat_slot; member
899 return event->seat_slot; in libinput_event_touch_get_seat_slot()
2644 int32_t seat_slot, in touch_notify_touch_down() argument
2657 .seat_slot = seat_slot, in touch_notify_touch_down()
2670 int32_t seat_slot, in touch_notify_touch_motion() argument
2683 .seat_slot = seat_slot, in touch_notify_touch_motion()
2696 int32_t seat_slot) in touch_notify_touch_up() argument
2708 .seat_slot = seat_slot, in touch_notify_touch_up()
2720 int32_t seat_slot) in touch_notify_touch_cancel() argument
2732 .seat_slot = seat_slot, in touch_notify_touch_cancel()
/third_party/libinput/patch/diff_libinput_mmi/libinput/
Dlibinput_0000.diff2125 int seat_slot;
2135 - touch_notify_touch_down(base, time, slot_idx, seat_slot,
2141 + touch_notify_touch_down(base, time, slot_idx, seat_slot, slot->pressure,
2152 int seat_slot;
2160 seat_slot = slot->seat_slot;
2164 if (seat_slot == -1)
2170 - touch_notify_touch_motion(base, time, slot_idx, seat_slot,
2176 + touch_notify_touch_motion(base, time, slot_idx, seat_slot, slot->pressure,
2184 int seat_slot;
2191 seat->slot_map &= ~bit(seat_slot);
[all …]
/third_party/libinput/tools/
Dlibinput-record-verify-yaml.py354 seat_slot = e["seat_slot"]
357 self.assertGreaterEqual(seat_slot, 0)
Dlibinput-record.c633 int32_t slot, seat_slot; in print_touch_event() local
659 seat_slot = libinput_event_touch_get_seat_slot(t); in print_touch_event()
685 seat_slot, in print_touch_event()
698 seat_slot); in print_touch_event()
/third_party/libinput/test/
Dtest-touch.c140 unsigned int seat_slot) in touch_assert_seat_slot() argument
151 ck_assert_int_eq(slot, seat_slot); in touch_assert_seat_slot()