Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/
DPools.java95 public SimplePool(int maxPoolSize) { in SimplePool() argument
96 if (maxPoolSize <= 0) { in SimplePool()
99 mPool = new Object[maxPoolSize]; in SimplePool()
156 public SynchronizedPool(int maxPoolSize, Object lock) { in SynchronizedPool() argument
157 super(maxPoolSize); in SynchronizedPool()
163 public SynchronizedPool(int maxPoolSize) { in SynchronizedPool() argument
164 this(maxPoolSize, new Object()); in SynchronizedPool()
/frameworks/native/libs/input/
DInput.cpp574 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) : in PooledInputEventFactory() argument
575 mMaxPoolSize(maxPoolSize) { in PooledInputEventFactory()
/frameworks/native/include/input/
DInput.h714 explicit PooledInputEventFactory(size_t maxPoolSize = 20);