Home
last modified time | relevance | path

Searched refs:MAX_POINTERS (Results 1 – 14 of 14) 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/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.h784 Pointer pointers[MAX_POINTERS];
819 PointerProperties pointerProperties[MAX_POINTERS];
820 PointerCoords pointerCoords[MAX_POINTERS];
1673 PointerProperties currentGestureProperties[MAX_POINTERS];
1674 PointerCoords currentGestureCoords[MAX_POINTERS];
1679 PointerProperties lastGestureProperties[MAX_POINTERS];
1680 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()
1996 PointerCoords scaledCoords[MAX_POINTERS]; in startDispatchCycleLocked()
2286 uint32_t splitPointerIndexMap[MAX_POINTERS]; in splitMotionEvent()
2287 PointerProperties splitPointerProperties[MAX_POINTERS]; in splitMotionEvent()
2288 PointerCoords splitPointerCoords[MAX_POINTERS]; in splitMotionEvent()
DInputReader.cpp5363 VelocityTracker::Position positions[MAX_POINTERS]; in preparePointerGestures()
6314 PointerCoords pointerCoords[MAX_POINTERS]; in dispatchMotion()
6315 PointerProperties pointerProperties[MAX_POINTERS]; in dispatchMotion()
6459 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; in assignPointerIds()
6762 if (outCount >= MAX_POINTERS) { in syncTouch()
6766 getDeviceName().string(), MAX_POINTERS); in syncTouch()
6863 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.cpp79 && body.motion.pointerCount <= MAX_POINTERS; in isValid()
319 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()