Home
last modified time | relevance | path

Searched refs:seatSlot (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/multimodalinput/input/service/touch_event_normalize/src/
H A Dtouch_transform_processor.cpp76 pointerItemCancelMarks_.erase(seatSlot); in OnEventTouchDown()
83 item.SetPointerId(seatSlot); in OnEventTouchDown()
95 pointerEvent_->SetPointerId(seatSlot); in OnEventTouchDown()
161 if (!(pointerEvent_->GetPointerItem(seatSlot, item))) { in OnEventTouchMotion()
168 pointerItemCancelMarks_.emplace(seatSlot, true); in OnEventTouchMotion()
184 pointerEvent_->UpdatePointerItem(seatSlot, item); in OnEventTouchMotion()
185 pointerEvent_->SetPointerId(seatSlot); in OnEventTouchMotion()
201 pointerItemCancelMarks_.erase(seatSlot); in OnEventTouchUp()
207 if (!(pointerEvent_->GetPointerItem(seatSlot, item))) { in OnEventTouchUp()
227 pointerEvent_->UpdatePointerItem(seatSlot, item); in OnEventTouchUp()
[all …]
H A Dtouchpad_transform_processor.cpp92 item.SetPointerId(seatSlot); in OnEventTouchPadDown()
104 pointerEvent_->SetPointerId(seatSlot); in OnEventTouchPadDown()
123 if (!pointerEvent_->GetPointerItem(seatSlot, item)) { in OnEventTouchPadMotion()
125 seatSlot, PARAM_INPUT_FAIL); in OnEventTouchPadMotion()
151 pointerEvent_->UpdatePointerItem(seatSlot, item); in OnEventTouchPadMotion()
152 pointerEvent_->SetPointerId(seatSlot); in OnEventTouchPadMotion()
175 seatSlot, PARAM_INPUT_FAIL); in OnEventTouchPadUp()
179 pointerEvent_->UpdatePointerItem(seatSlot, item); in OnEventTouchPadUp()
180 pointerEvent_->SetPointerId(seatSlot); in OnEventTouchPadUp()
707 pointerMaps[seatSlot] = {currentX, currentY}; in CanAddToPointerMaps()
[all …]
/ohos5.0/foundation/multimodalinput/input/test/facility/libinput_interface/include/
H A Dlibinput_interface.h66 int32_t seatSlot; member
/ohos5.0/foundation/multimodalinput/input/service/event_handler/src/
H A Devent_normalize_handler.cpp458 int32_t seatSlot = libinput_event_touchpad_get_seat_slot(touchpad); in HandleTouchPadEvent() local
467 buttonIds_.insert(seatSlot); in HandleTouchPadEvent()
482 buttonIds_.erase(seatSlot); in HandleTouchPadEvent()
/ohos5.0/foundation/multimodalinput/input/util/common/include/
H A Dstruct_multimodal.h389 int32_t seatSlot {};
/ohos5.0/foundation/multimodalinput/input/test/facility/libinput_interface/src/
H A Dlibinput_interface.cpp231 return (event != nullptr ? event->seatSlot : 0); in libinput_event_touchpad_get_seat_slot()