Home
last modified time | relevance | path

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

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