Home
last modified time | relevance | path

Searched refs:MAX_POINTERS (Results 1 – 15 of 15) sorted by relevance

/frameworks/native/services/inputflinger/tests/
DInputDispatcher_test.cpp143 PointerProperties pointerProperties[MAX_POINTERS + 1]; in TEST_F()
144 PointerCoords pointerCoords[MAX_POINTERS + 1]; in TEST_F()
145 for (int i = 0; i <= MAX_POINTERS; i++) { in TEST_F()
216 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords); in TEST_F()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DMotionEventInjector.java47 private static final int MAX_POINTERS = 11; // Non-binding maximum field in MotionEventInjector
54 new MotionEvent.PointerProperties[MAX_POINTERS];
56 new MotionEvent.PointerCoords[MAX_POINTERS];
/frameworks/native/include/input/
DInputTransport.h102 } pointers[MAX_POINTERS];
111 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS in size()
368 PointerCoords pointers[MAX_POINTERS];
DVelocityTracker.h178 VelocityTracker::Position positions[MAX_POINTERS];
256 VelocityTracker::Position positions[MAX_POINTERS];
DInput.h125 #define MAX_POINTERS 16 macro
/frameworks/native/services/inputflinger/
DInputListener.h94 PointerProperties pointerProperties[MAX_POINTERS];
95 PointerCoords pointerCoords[MAX_POINTERS];
DInputReader.h834 Pointer pointers[MAX_POINTERS];
869 PointerProperties pointerProperties[MAX_POINTERS];
870 PointerCoords pointerCoords[MAX_POINTERS];
1721 PointerProperties currentGestureProperties[MAX_POINTERS];
1722 PointerCoords currentGestureCoords[MAX_POINTERS];
1727 PointerProperties lastGestureProperties[MAX_POINTERS];
1728 PointerCoords lastGestureCoords[MAX_POINTERS];
DInputDispatcher.h523 PointerProperties pointerProperties[MAX_POINTERS];
524 PointerCoords pointerCoords[MAX_POINTERS];
775 PointerProperties pointerProperties[MAX_POINTERS];
776 PointerCoords pointerCoords[MAX_POINTERS];
DInputDispatcher.cpp153 if (pointerCount < 1 || pointerCount > MAX_POINTERS) { in validateMotionEvent()
155 pointerCount, MAX_POINTERS); in validateMotionEvent()
1995 PointerCoords scaledCoords[MAX_POINTERS]; in startDispatchCycleLocked()
2285 uint32_t splitPointerIndexMap[MAX_POINTERS]; in splitMotionEvent()
2286 PointerProperties splitPointerProperties[MAX_POINTERS]; in splitMotionEvent()
2287 PointerCoords splitPointerCoords[MAX_POINTERS]; in splitMotionEvent()
DInputReader.cpp5241 VelocityTracker::Position positions[MAX_POINTERS]; in preparePointerGestures()
6208 PointerCoords pointerCoords[MAX_POINTERS]; in dispatchMotion()
6209 PointerProperties pointerProperties[MAX_POINTERS]; in dispatchMotion()
6353 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; in assignPointerIds()
6655 if (outCount >= MAX_POINTERS) { in syncTouch()
6659 getDeviceName().string(), MAX_POINTERS); in syncTouch()
6756 MAX_POINTERS, false /*usingSlotsProtocol*/); in configureRawPointerAxes()
/frameworks/native/libs/input/
DVelocityTracker.cpp223 while (idBits.count() > MAX_POINTERS) { in addMovement()
300 if (pointerCount > MAX_POINTERS) { in addMovement()
301 pointerCount = MAX_POINTERS; in addMovement()
309 uint32_t pointerIndex[MAX_POINTERS]; in addMovement()
DInputTransport.cpp80 && body.motion.pointerCount <= MAX_POINTERS; in isValid()
320 if (pointerCount > MAX_POINTERS || pointerCount < 1) { in publishMotionEvent()
DInput.cpp427 if (pointerCount == 0 || pointerCount > MAX_POINTERS || in readFromParcel()
/frameworks/base/core/jni/
Dandroid_view_VelocityTracker.cpp64 Velocity mCalculatedVelocity[MAX_POINTERS];
/frameworks/native/libs/input/tests/
DInputPublisherAndConsumer_test.cpp267 const size_t pointerCount = MAX_POINTERS + 1; in TEST_F()