Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/
DPools.java89 public SimplePool(int maxPoolSize) { in SimplePool() argument
90 if (maxPoolSize <= 0) { in SimplePool()
93 mPool = new Object[maxPoolSize]; in SimplePool()
147 public SynchronizedPool(int maxPoolSize) { in SynchronizedPool() argument
148 super(maxPoolSize); in SynchronizedPool()
/frameworks/native/libs/input/
DInput.cpp597 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) : in PooledInputEventFactory() argument
598 mMaxPoolSize(maxPoolSize) { in PooledInputEventFactory()
/frameworks/native/include/input/
DInput.h603 PooledInputEventFactory(size_t maxPoolSize = 20);