Searched refs:maxPoolSize (Results 1 – 9 of 9) sorted by relevance
/aosp12/frameworks/base/core/java/android/util/ |
H A D | Pools.java | 95 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()
|
/aosp12/packages/apps/Gallery2/src/android/util/ |
H A D | Pools.java | 89 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()
|
/aosp12/packages/apps/Camera2/src/android/util/ |
H A D | Pools.java | 89 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()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/log/ |
H A D | LogBufferFactory.kt | 29 fun create(name: String, maxPoolSize: Int, flexSize: Int = 10): LogBuffer { 30 val buffer = LogBuffer(name, maxPoolSize, flexSize, logcatEchoTracker)
|
/aosp12/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/ |
H A D | ThreadPool.java | 87 public ThreadPool(int initPoolSize, int maxPoolSize) { in ThreadPool() argument 89 initPoolSize, maxPoolSize, KEEP_ALIVE_TIME, in ThreadPool()
|
/aosp12/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
H A D | BitmapPool.java | 71 SingleSizePool(final int maxPoolSize) { in SingleSizePool() argument 73 mBitmaps = new Bitmap[maxPoolSize]; in SingleSizePool()
|
/aosp12/packages/apps/TV/libs/ |
H A D | javax.annotation-api-1.2.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/annotation/
javax/ ... |
/aosp12/frameworks/native/libs/input/ |
H A D | Input.cpp | 899 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) : in PooledInputEventFactory() argument 900 mMaxPoolSize(maxPoolSize) { in PooledInputEventFactory()
|
/aosp12/frameworks/native/include/input/ |
H A D | Input.h | 985 explicit PooledInputEventFactory(size_t maxPoolSize = 20);
|