Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/view/
DInputQueue.java34 private final LongSparseArray<ActiveInputEvent> mActiveEventArray =
35 new LongSparseArray<ActiveInputEvent>(20);
36 private final Pool<ActiveInputEvent> mActiveInputEventPool =
37 new SimplePool<ActiveInputEvent>(20);
93 ActiveInputEvent event = obtainActiveInputEvent(token, callback); in sendInputEvent()
106 ActiveInputEvent e = mActiveEventArray.valueAt(index); in finishInputEvent()
113 private ActiveInputEvent obtainActiveInputEvent(Object token, in obtainActiveInputEvent()
115 ActiveInputEvent e = mActiveInputEventPool.acquire(); in obtainActiveInputEvent()
117 e = new ActiveInputEvent(); in obtainActiveInputEvent()
124 private void recycleActiveInputEvent(ActiveInputEvent e) { in recycleActiveInputEvent()
[all …]