OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_pointers
(Results
1 - 18
of
18
) sorted by null
/frameworks/native/services/inputflinger/tests/
InputDispatcher_test.cpp
143
PointerProperties pointerProperties[
MAX_POINTERS
+ 1];
144
PointerCoords pointerCoords[
MAX_POINTERS
+ 1];
145
for (int i = 0; i <=
MAX_POINTERS
; i++) {
216
/*pointerCount*/
MAX_POINTERS
+ 1, pointerProperties, pointerCoords);
220
<< "Should reject motion events with more than
MAX_POINTERS
pointers.";
/system/extras/memory_replay/
Pointers.h
37
size_t
max_pointers
() { return max_pointers_; }
function in class:Pointers
main.cpp
76
printf("Total pointers available: %zu\n", pointers.
max_pointers
());
/frameworks/native/services/inputflinger/
InputListener.h
94
PointerProperties pointerProperties[
MAX_POINTERS
];
95
PointerCoords pointerCoords[
MAX_POINTERS
];
InputReader.h
834
Pointer pointers[
MAX_POINTERS
];
869
PointerProperties pointerProperties[
MAX_POINTERS
];
870
PointerCoords pointerCoords[
MAX_POINTERS
];
[
all
...]
InputDispatcher.h
523
PointerProperties pointerProperties[
MAX_POINTERS
];
524
PointerCoords pointerCoords[
MAX_POINTERS
];
775
PointerProperties pointerProperties[
MAX_POINTERS
];
776
PointerCoords pointerCoords[
MAX_POINTERS
];
[
all
...]
InputDispatcher.cpp
153
if (pointerCount < 1 || pointerCount >
MAX_POINTERS
) {
155
pointerCount,
MAX_POINTERS
);
[
all
...]
InputReader.cpp
[
all
...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
MotionEventInjector.java
47
private static final int
MAX_POINTERS
= 11; // Non-binding maximum
54
new MotionEvent.PointerProperties[
MAX_POINTERS
];
56
new MotionEvent.PointerCoords[
MAX_POINTERS
];
/frameworks/native/include/input/
InputTransport.h
102
} pointers[
MAX_POINTERS
];
111
return sizeof(Motion) - sizeof(Pointer) *
MAX_POINTERS
228
* Returns BAD_VALUE if seq is 0 or if pointerCount is less than 1 or greater than
MAX_POINTERS
.
368
PointerCoords pointers[
MAX_POINTERS
];
VelocityTracker.h
178
VelocityTracker::Position positions[
MAX_POINTERS
];
256
VelocityTracker::Position positions[
MAX_POINTERS
];
Input.h
125
#define
MAX_POINTERS
16
/system/extras/memory_replay/tests/
PointersTest.cpp
85
for (size_t i = 0; i <= pointers.
max_pointers
(); i++) {
/frameworks/base/core/jni/
android_view_VelocityTracker.cpp
64
Velocity mCalculatedVelocity[
MAX_POINTERS
];
/frameworks/native/libs/input/
VelocityTracker.cpp
223
while (idBits.count() >
MAX_POINTERS
) {
300
if (pointerCount >
MAX_POINTERS
) {
301
pointerCount =
MAX_POINTERS
;
309
uint32_t pointerIndex[
MAX_POINTERS
];
[
all
...]
Input.cpp
427
if (pointerCount == 0 || pointerCount >
MAX_POINTERS
||
InputTransport.cpp
80
&& body.motion.pointerCount <=
MAX_POINTERS
;
320
if (pointerCount >
MAX_POINTERS
|| pointerCount < 1) {
[
all
...]
/frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp
267
const size_t pointerCount =
MAX_POINTERS
+ 1;
Completed in 546 milliseconds