Searched defs:mPendingEventPool (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java386 final Pool<PendingEvent> mPendingEventPool = new SimplePool<>(20); field in class:InputMethodManager
1988 PendingEvent p = mPendingEventPool.acquire();
2002 mPendingEventPool.release(p);
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java1636 private final Pool<PendingEvent> mPendingEventPool = new SimplePool<>(20); field in class:TvInputManager.Session
2367 PendingEvent p = mPendingEventPool.acquire();
2380 mPendingEventPool.release(p);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DKeyEventDispatcher.java58 private final Pool<PendingKeyEvent> mPendingEventPool = new Pools.SimplePool<>(MAX_POOL_SIZE); field in class:KeyEventDispatcher
209 PendingKeyEvent pendingEvent = mPendingEventPool.acquire();
264 mPendingEventPool.release(pendingEvent);

Completed in 121 milliseconds