HomeSort by relevance Sort by last modified time
    Searched defs:MAX_POOL_SIZE (Results 1 - 25 of 51) sorted by null

1 2 3

  /frameworks/base/core/java/android/app/servertransaction/
ObjectPool.java 33 private static final int MAX_POOL_SIZE = 50;
72 if (size < MAX_POOL_SIZE) {
  /frameworks/base/core/java/android/widget/
ExpandableListPosition.java 30 private static final int MAX_POOL_SIZE = 5;
32 new ArrayList<ExpandableListPosition>(MAX_POOL_SIZE);
134 if (sPool.size() < MAX_POOL_SIZE) {
  /frameworks/base/core/java/com/android/internal/statusbar/
NotificationVisibility.java 29 private static final int MAX_POOL_SIZE = 25;
30 private static ArrayDeque<NotificationVisibility> sPool = new ArrayDeque<>(MAX_POOL_SIZE);
143 if (sPool.size() < MAX_POOL_SIZE) {
  /frameworks/minikin/tests/unittest/
WordBreakerTests.cpp 562 using ICULineBreakerPoolImpl::MAX_POOL_SIZE;
616 const size_t MAX_POOL_SIZE = TestableICULineBreakerPoolImpl::MAX_POOL_SIZE;
621 ICULineBreakerPool::Slot slots[MAX_POOL_SIZE * 2];
624 for (size_t i = 0; i < MAX_POOL_SIZE * 2; i++) {
629 for (size_t i = 0; i < MAX_POOL_SIZE; i++) {
634 for (size_t i = MAX_POOL_SIZE; i < MAX_POOL_SIZE * 2; i++) {
636 EXPECT_EQ(MAX_POOL_SIZE, pool.getPoolSize());
  /cts/tests/tests/telephony/src/android/telephony/embms/cts/
SomeArgs.java 24 private static final int MAX_POOL_SIZE = 10;
93 if (sPoolSize < MAX_POOL_SIZE) {
  /frameworks/base/core/java/android/view/
MagnificationSpec.java 29 private static final int MAX_POOL_SIZE = 20;
31 new SynchronizedPool<>(MAX_POOL_SIZE);
WindowInfo.java 36 private static final int MAX_POOL_SIZE = 10;
39 new Pools.SynchronizedPool<WindowInfo>(MAX_POOL_SIZE);
  /frameworks/base/core/java/com/android/internal/os/
SomeArgs.java 28 private static final int MAX_POOL_SIZE = 10;
97 if (sPoolSize < MAX_POOL_SIZE) {
  /frameworks/minikin/libs/minikin/
WordBreaker.h 76 static constexpr size_t MAX_POOL_SIZE = 4;
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/
WorkManagerImplLargeExecutorTest.java 74 private static final int MAX_POOL_SIZE = 150;
106 MIN_POOL_SIZE, MAX_POOL_SIZE, KEEP_ALIVE_TIME, SECONDS, queue);
  /developers/build/prebuilts/gradle/MidiScope/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /developers/build/prebuilts/gradle/MidiSynth/Application/src/main/java/com/example/android/common/midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /developers/samples/android/common/src/java/com/example/android/common/midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /development/samples/browseable/MidiScope/src/com.example.android.common.midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
EventScheduler.java 39 private static final int MAX_POOL_SIZE = 200;
143 } else if (mEventPool.size() < MAX_POOL_SIZE) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Mem/
Pool.c 63 #define MAX_POOL_SIZE (MAX_ADDRESS - POOL_OVERHEAD)
235 if (Size > MAX_POOL_SIZE) {
  /frameworks/base/core/java/android/os/
Message.java 118 private static final int MAX_POOL_SIZE = 50;
311 if (sPoolSize < MAX_POOL_SIZE) {
  /frameworks/base/graphics/java/android/graphics/
Region.java 25 private static final int MAX_POOL_SIZE = 10;
28 new SynchronizedPool<Region>(MAX_POOL_SIZE);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
KeyEventDispatcher.java 53 private static final int MAX_POOL_SIZE = 10;
55 private final Pool<PendingKeyEvent> mPendingEventPool = new Pools.SimplePool<>(MAX_POOL_SIZE);
KeyboardInterceptor.java 151 private static final int MAX_POOL_SIZE = 32;
153 new Pools.SimplePool<>(MAX_POOL_SIZE);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RILRequest.java 43 private static final int MAX_POOL_SIZE = 4;
159 if (sPoolSize < MAX_POOL_SIZE) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
ThreadPool.java 30 private static final int MAX_POOL_SIZE = 8;
84 this(CORE_POOL_SIZE, MAX_POOL_SIZE);
  /developers/build/prebuilts/gradle/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 67 private static final int MAX_POOL_SIZE = 10;
69 new SimplePool<TouchHistory>(MAX_POOL_SIZE);
  /developers/samples/android/input/multitouch/BasicMultitouch/Application/src/main/java/com/example/android/basicmultitouch/
TouchDisplayView.java 67 private static final int MAX_POOL_SIZE = 10;
69 new SimplePool<TouchHistory>(MAX_POOL_SIZE);
  /development/samples/browseable/BasicMultitouch/src/com.example.android.basicmultitouch/
TouchDisplayView.java 67 private static final int MAX_POOL_SIZE = 10;
69 new SimplePool<TouchHistory>(MAX_POOL_SIZE);

Completed in 1362 milliseconds

1 2 3