Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/util/
H A 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()
/aosp12/packages/apps/Gallery2/src/android/util/
H A 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()
/aosp12/packages/apps/Camera2/src/android/util/
H A 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()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/log/
H A DLogBufferFactory.kt29 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 DThreadPool.java87 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 DBitmapPool.java71 SingleSizePool(final int maxPoolSize) { in SingleSizePool() argument
73 mBitmaps = new Bitmap[maxPoolSize]; in SingleSizePool()
/aosp12/packages/apps/TV/libs/
H A Djavax.annotation-api-1.2.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/annotation/ javax/ ...
/aosp12/frameworks/native/libs/input/
H A DInput.cpp899 PooledInputEventFactory::PooledInputEventFactory(size_t maxPoolSize) : in PooledInputEventFactory() argument
900 mMaxPoolSize(maxPoolSize) { in PooledInputEventFactory()
/aosp12/frameworks/native/include/input/
H A DInput.h985 explicit PooledInputEventFactory(size_t maxPoolSize = 20);