Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/
DPools.java96 public SimplePool(int maxPoolSize) { in SimplePool() argument
97 if (maxPoolSize <= 0) { in SimplePool()
100 mPool = new Object[maxPoolSize]; in SimplePool()
157 public SynchronizedPool(int maxPoolSize, Object lock) { in SynchronizedPool() argument
158 super(maxPoolSize); in SynchronizedPool()
164 public SynchronizedPool(int maxPoolSize) { in SynchronizedPool() argument
165 this(maxPoolSize, new Object()); in SynchronizedPool()
/frameworks/base/core/java/com/android/internal/widget/
DMessagingPool.java34 public MessagingPool(int maxPoolSize) { in MessagingPool() argument
35 mMaxPoolSize = maxPoolSize; in MessagingPool()
/frameworks/native/libs/input/
DInput.cpp1257 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) : in PooledInputEventFactory() argument
1258 mMaxPoolSize(maxPoolSize) { in PooledInputEventFactory()
/frameworks/native/include/input/
DInput.h1169 explicit PooledInputEventFactory(size_t maxPoolSize = 20);