Home
last modified time | relevance | path

Searched refs:getSlotForPointerId (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/services/inputflinger/
DUnwantedInteractionBlocker.cpp545 std::optional<size_t> SlotState::getSlotForPointerId(int32_t pointerId) const { in getSlotForPointerId() function in android::SlotState
633 std::optional<size_t> slot = newSlotState.getSlotForPointerId(pointerId); in getTouches()
635 slot = oldSlotState.getSlotForPointerId(pointerId); in getTouches()
683 std::optional<size_t> slot = oldSlotState.getSlotForPointerId(pointerId); in detectPalmPointers()
685 slot = mSlotState.getSlotForPointerId(pointerId); in detectPalmPointers()
DUnwantedInteractionBlocker.h136 std::optional<size_t> getSlotForPointerId(int32_t pointerId) const;
/frameworks/native/services/inputflinger/tests/
DUnwantedInteractionBlocker_test.cpp392 std::optional<size_t> slot = slotState.getSlotForPointerId(0); in TEST()