Home
last modified time | relevance | path

Searched refs:MAX_POINTER_ID (Results 1 – 10 of 10) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DTouchInputMapper.h75 uint32_t idToIndex[MAX_POINTER_ID + 1];
107 uint32_t idToIndex[MAX_POINTER_ID + 1];
635 uint32_t currentGestureIdToIndex[MAX_POINTER_ID + 1];
641 uint32_t lastGestureIdToIndex[MAX_POINTER_ID + 1];
672 Delta referenceDeltas[MAX_POINTER_ID + 1];
675 uint32_t freeformTouchToGestureIdMap[MAX_POINTER_ID + 1];
H A DMultiTouchInputMapper.h113 int32_t mPointerTrackingIdMap[MAX_POINTER_ID + 1];
H A DTouchInputMapper.cpp3113 float dist[MAX_POINTER_ID + 1]; in preparePointerGestures()
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMotionEventInjector.java507 int MAX_POINTER_ID = 10; in getUnusedPointerId() local
511 if (pointerId >= MAX_POINTER_ID) { in getUnusedPointerId()
512 return MAX_POINTER_ID; in getUnusedPointerId()
/aosp12/frameworks/native/include/input/
H A DVelocityTracker.h242 State mPointerState[MAX_POINTER_ID + 1];
H A DInputTransport.h539 int32_t idToIndex[MAX_POINTER_ID + 1];
H A DInput.h181 #define MAX_POINTER_ID 31 macro
/aosp12/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp114 if (id >= 0 && id <= MAX_POINTER_ID && mCalculatedIdBits.hasBit(id)) { in getVelocity()
/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DInputDispatcher.cpp220 if (id < 0 || id > MAX_POINTER_ID) { in validateMotionEvent()
222 MAX_POINTER_ID); in validateMotionEvent()
/aosp12/frameworks/native/services/inputflinger/tests/
H A DInputDispatcher_test.cpp636 pointerProperties[0].id = MAX_POINTER_ID + 1; in TEST_F()