Home
last modified time | relevance | path

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

/frameworks/support/v4/java/android/support/v4/util/
DPools.java90 public SimplePool(int maxPoolSize) { in SimplePool() argument
91 if (maxPoolSize <= 0) { in SimplePool()
94 mPool = new Object[maxPoolSize]; in SimplePool()
148 public SynchronizedPool(int maxPoolSize) { in SynchronizedPool() argument
149 super(maxPoolSize); in SynchronizedPool()
/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.cpp543 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) : in PooledInputEventFactory() argument
544 mMaxPoolSize(maxPoolSize) { in PooledInputEventFactory()
/frameworks/native/include/input/
DInput.h664 PooledInputEventFactory(size_t maxPoolSize = 20);