Home
last modified time | relevance | path

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

/frameworks/native/include/input/
DVelocityTracker.h178 VelocityTracker::Position positions[MAX_POINTERS];
256 VelocityTracker::Position positions[MAX_POINTERS];
290 VelocityTracker::Position positions[MAX_POINTERS];
DInputTransport.h122 } pointers[MAX_POINTERS];
131 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS in size()
403 PointerCoords pointers[MAX_POINTERS];
DInput.h132 #define MAX_POINTERS 16 macro
/frameworks/native/services/inputflinger/include/
DInputListener.h118 PointerProperties pointerProperties[MAX_POINTERS];
119 PointerCoords pointerCoords[MAX_POINTERS];
/frameworks/native/services/inputflinger/
DInputReader.h507 Pointer pointers[MAX_POINTERS];
542 PointerProperties pointerProperties[MAX_POINTERS];
543 PointerCoords pointerCoords[MAX_POINTERS];
1483 PointerProperties currentGestureProperties[MAX_POINTERS];
1484 PointerCoords currentGestureCoords[MAX_POINTERS];
1489 PointerProperties lastGestureProperties[MAX_POINTERS];
1490 PointerCoords lastGestureCoords[MAX_POINTERS];
DInputDispatcher.h575 PointerProperties pointerProperties[MAX_POINTERS];
576 PointerCoords pointerCoords[MAX_POINTERS];
835 PointerProperties pointerProperties[MAX_POINTERS];
836 PointerCoords pointerCoords[MAX_POINTERS];
DInputDispatcher.cpp184 if (pointerCount < 1 || pointerCount > MAX_POINTERS) { in validateMotionEvent()
186 pointerCount, MAX_POINTERS); in validateMotionEvent()
2196 PointerCoords scaledCoords[MAX_POINTERS]; in startDispatchCycleLocked()
2501 uint32_t splitPointerIndexMap[MAX_POINTERS]; in splitMotionEvent()
2502 PointerProperties splitPointerProperties[MAX_POINTERS]; in splitMotionEvent()
2503 PointerCoords splitPointerCoords[MAX_POINTERS]; in splitMotionEvent()
DInputReader.cpp5546 VelocityTracker::Position positions[MAX_POINTERS]; in preparePointerGestures()
6503 PointerCoords pointerCoords[MAX_POINTERS]; in dispatchMotion()
6504 PointerProperties pointerProperties[MAX_POINTERS]; in dispatchMotion()
6654 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; in assignPointerIds()
6960 if (outCount >= MAX_POINTERS) { in syncTouch()
6964 getDeviceName().c_str(), MAX_POINTERS); in syncTouch()
7062 MAX_POINTERS, false /*usingSlotsProtocol*/); in configureRawPointerAxes()
/frameworks/native/services/inputflinger/tests/
DInputDispatcher_test.cpp236 PointerProperties pointerProperties[MAX_POINTERS + 1]; in TEST_F()
237 PointerCoords pointerCoords[MAX_POINTERS + 1]; in TEST_F()
238 for (int i = 0; i <= MAX_POINTERS; i++) { in TEST_F()
309 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords); in TEST_F()
/frameworks/native/libs/input/
DVelocityTracker.cpp231 while (idBits.count() > MAX_POINTERS) { in addMovement()
308 if (pointerCount > MAX_POINTERS) { in addMovement()
309 pointerCount = MAX_POINTERS; in addMovement()
317 uint32_t pointerIndex[MAX_POINTERS]; in addMovement()
DInput.cpp454 if (pointerCount == 0 || pointerCount > MAX_POINTERS || in readFromParcel()
DInputTransport.cpp100 && body.motion.pointerCount <= MAX_POINTERS; in isValid()
512 if (pointerCount > MAX_POINTERS || pointerCount < 1) { in publishMotionEvent()
/frameworks/base/core/jni/
Dandroid_view_VelocityTracker.cpp64 Velocity mCalculatedVelocity[MAX_POINTERS];
/frameworks/native/libs/input/tests/
DInputPublisherAndConsumer_test.cpp292 const size_t pointerCount = MAX_POINTERS + 1; in TEST_F()