Home
last modified time | relevance | path

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

/frameworks/base/services/input/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()
210 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords); in TEST_F()
/frameworks/base/include/androidfw/
DInputTransport.h93 } pointers[MAX_POINTERS];
102 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS in size()
355 PointerCoords pointers[MAX_POINTERS];
DVelocityTracker.h178 VelocityTracker::Position positions[MAX_POINTERS];
256 VelocityTracker::Position positions[MAX_POINTERS];
DInput.h74 #define MAX_POINTERS 16 macro
/frameworks/base/services/input/
DInputListener.h92 PointerProperties pointerProperties[MAX_POINTERS];
93 PointerCoords pointerCoords[MAX_POINTERS];
DInputReader.h701 Pointer pointers[MAX_POINTERS];
736 PointerProperties pointerProperties[MAX_POINTERS];
737 PointerCoords pointerCoords[MAX_POINTERS];
1453 PointerProperties currentGestureProperties[MAX_POINTERS];
1454 PointerCoords currentGestureCoords[MAX_POINTERS];
1459 PointerProperties lastGestureProperties[MAX_POINTERS];
1460 PointerCoords lastGestureCoords[MAX_POINTERS];
DInputDispatcher.h515 PointerProperties pointerProperties[MAX_POINTERS];
516 PointerCoords pointerCoords[MAX_POINTERS];
756 PointerProperties pointerProperties[MAX_POINTERS];
757 PointerCoords pointerCoords[MAX_POINTERS];
DInputDispatcher.cpp147 if (pointerCount < 1 || pointerCount > MAX_POINTERS) { in validateMotionEvent()
149 pointerCount, MAX_POINTERS); in validateMotionEvent()
1916 PointerCoords scaledCoords[MAX_POINTERS]; in startDispatchCycleLocked()
2199 uint32_t splitPointerIndexMap[MAX_POINTERS]; in splitMotionEvent()
2200 PointerProperties splitPointerProperties[MAX_POINTERS]; in splitMotionEvent()
2201 PointerCoords splitPointerCoords[MAX_POINTERS]; in splitMotionEvent()
DInputReader.cpp4456 VelocityTracker::Position positions[MAX_POINTERS]; in preparePointerGestures()
5380 PointerCoords pointerCoords[MAX_POINTERS]; in dispatchMotion()
5381 PointerProperties pointerProperties[MAX_POINTERS]; in dispatchMotion()
5519 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; in assignPointerIds()
5821 if (outCount >= MAX_POINTERS) { in syncTouch()
5825 getDeviceName().string(), MAX_POINTERS); in syncTouch()
5923 MAX_POINTERS, false /*usingSlotsProtocol*/); in configureRawPointerAxes()
/frameworks/base/libs/androidfw/
DVelocityTracker.cpp222 while (idBits.count() > MAX_POINTERS) { in addMovement()
299 if (pointerCount > MAX_POINTERS) { in addMovement()
300 pointerCount = MAX_POINTERS; in addMovement()
308 uint32_t pointerIndex[MAX_POINTERS]; in addMovement()
DInputTransport.cpp74 && body.motion.pointerCount <= MAX_POINTERS; in isValid()
308 if (pointerCount > MAX_POINTERS || pointerCount < 1) { in publishMotionEvent()
DInput.cpp477 if (pointerCount == 0 || pointerCount > MAX_POINTERS || sampleCount == 0) { in readFromParcel()
/frameworks/base/core/jni/
Dandroid_view_VelocityTracker.cpp63 Velocity mCalculatedVelocity[MAX_POINTERS];
/frameworks/base/libs/androidfw/tests/
DInputPublisherAndConsumer_test.cpp265 const size_t pointerCount = MAX_POINTERS + 1; in TEST_F()