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.cpp144 PointerProperties pointerProperties[MAX_POINTERS + 1]; in TEST_F()
145 PointerCoords pointerCoords[MAX_POINTERS + 1]; in TEST_F()
146 for (int i = 0; i <= MAX_POINTERS; i++) { in TEST_F()
211 /*pointerCount*/ MAX_POINTERS + 1, pointerProperties, pointerCoords); in TEST_F()
/frameworks/native/include/input/
DInputTransport.h93 } pointers[MAX_POINTERS];
102 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS in size()
358 PointerCoords pointers[MAX_POINTERS];
DVelocityTracker.h178 VelocityTracker::Position positions[MAX_POINTERS];
256 VelocityTracker::Position positions[MAX_POINTERS];
DInput.h82 #define MAX_POINTERS 16 macro
/frameworks/base/services/input/
DInputListener.h93 PointerProperties pointerProperties[MAX_POINTERS];
94 PointerCoords pointerCoords[MAX_POINTERS];
DInputReader.h752 Pointer pointers[MAX_POINTERS];
787 PointerProperties pointerProperties[MAX_POINTERS];
788 PointerCoords pointerCoords[MAX_POINTERS];
1534 PointerProperties currentGestureProperties[MAX_POINTERS];
1535 PointerCoords currentGestureCoords[MAX_POINTERS];
1540 PointerProperties lastGestureProperties[MAX_POINTERS];
1541 PointerCoords lastGestureCoords[MAX_POINTERS];
DInputDispatcher.h519 PointerProperties pointerProperties[MAX_POINTERS];
520 PointerCoords pointerCoords[MAX_POINTERS];
763 PointerProperties pointerProperties[MAX_POINTERS];
764 PointerCoords pointerCoords[MAX_POINTERS];
DInputDispatcher.cpp149 if (pointerCount < 1 || pointerCount > MAX_POINTERS) { in validateMotionEvent()
151 pointerCount, MAX_POINTERS); in validateMotionEvent()
1960 PointerCoords scaledCoords[MAX_POINTERS]; in startDispatchCycleLocked()
2243 uint32_t splitPointerIndexMap[MAX_POINTERS]; in splitMotionEvent()
2244 PointerProperties splitPointerProperties[MAX_POINTERS]; in splitMotionEvent()
2245 PointerCoords splitPointerCoords[MAX_POINTERS]; in splitMotionEvent()
DInputReader.cpp4644 VelocityTracker::Position positions[MAX_POINTERS]; in preparePointerGestures()
5587 PointerCoords pointerCoords[MAX_POINTERS]; in dispatchMotion()
5588 PointerProperties pointerProperties[MAX_POINTERS]; in dispatchMotion()
5727 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; in assignPointerIds()
6029 if (outCount >= MAX_POINTERS) { in syncTouch()
6033 getDeviceName().string(), MAX_POINTERS); in syncTouch()
6131 MAX_POINTERS, false /*usingSlotsProtocol*/); in configureRawPointerAxes()
/frameworks/native/libs/input/
DVelocityTracker.cpp221 while (idBits.count() > MAX_POINTERS) { in addMovement()
298 if (pointerCount > MAX_POINTERS) { in addMovement()
299 pointerCount = MAX_POINTERS; in addMovement()
307 uint32_t pointerIndex[MAX_POINTERS]; in addMovement()
DInputTransport.cpp75 && body.motion.pointerCount <= MAX_POINTERS; in isValid()
314 if (pointerCount > MAX_POINTERS || pointerCount < 1) { in publishMotionEvent()
DInput.cpp493 if (pointerCount == 0 || pointerCount > MAX_POINTERS || sampleCount == 0) { in readFromParcel()
/frameworks/base/core/jni/
Dandroid_view_VelocityTracker.cpp63 Velocity mCalculatedVelocity[MAX_POINTERS];
/frameworks/native/libs/input/tests/
DInputPublisherAndConsumer_test.cpp266 const size_t pointerCount = MAX_POINTERS + 1; in TEST_F()