Home
last modified time | relevance | path

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

/frameworks/native/services/inputflinger/dispatcher/
DInputState.h99 PointerProperties pointerProperties[MAX_POINTERS];
100 PointerCoords pointerCoords[MAX_POINTERS];
DEntry.h133 PointerProperties pointerProperties[MAX_POINTERS];
134 PointerCoords pointerCoords[MAX_POINTERS];
DInputDispatcher.cpp164 if (pointerCount < 1 || pointerCount > MAX_POINTERS) { in validateMotionEvent()
166 pointerCount, MAX_POINTERS); in validateMotionEvent()
2192 PointerCoords scaledCoords[MAX_POINTERS]; in startDispatchCycleLocked()
2505 uint32_t splitPointerIndexMap[MAX_POINTERS]; in splitMotionEvent()
2506 PointerProperties splitPointerProperties[MAX_POINTERS]; in splitMotionEvent()
2507 PointerCoords splitPointerCoords[MAX_POINTERS]; in splitMotionEvent()
/frameworks/native/services/inputflinger/reader/mapper/
DTouchInputMapper.h135 Pointer pointers[MAX_POINTERS];
165 PointerProperties pointerProperties[MAX_POINTERS];
166 PointerCoords pointerCoords[MAX_POINTERS];
665 PointerProperties currentGestureProperties[MAX_POINTERS];
666 PointerCoords currentGestureCoords[MAX_POINTERS];
671 PointerProperties lastGestureProperties[MAX_POINTERS];
672 PointerCoords lastGestureCoords[MAX_POINTERS];
DMultiTouchInputMapper.cpp253 if (outCount >= MAX_POINTERS) { in syncTouch()
257 getDeviceName().c_str(), MAX_POINTERS); in syncTouch()
352 mMultiTouchMotionAccumulator.configure(getDevice(), MAX_POINTERS, in configureRawPointerAxes()
DTouchInputMapper.cpp2627 VelocityTracker::Position positions[MAX_POINTERS]; in preparePointerGestures()
3579 PointerCoords pointerCoords[MAX_POINTERS]; in dispatchMotion()
3580 PointerProperties pointerProperties[MAX_POINTERS]; in dispatchMotion()
3728 PointerDistanceHeapElement heap[MAX_POINTERS * MAX_POINTERS]; in assignPointerIds()
/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/tests/
DInputDispatcher_test.cpp238 PointerProperties pointerProperties[MAX_POINTERS + 1]; in TEST_F()
239 PointerCoords pointerCoords[MAX_POINTERS + 1]; in TEST_F()
240 for (int i = 0; i <= MAX_POINTERS; i++) { in TEST_F()
311 /*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()