Home
last modified time | relevance | path

Searched refs:POOL_SIZE (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
DBitmapPoolTest.java36 private static final int POOL_SIZE = 5; field in BitmapPoolTest
52 for (int i = 0; i < POOL_SIZE; i++) { in fillPoolAndGetPoolContents()
65 final BitmapPool pool = new BitmapPool(POOL_SIZE, NAME); in testCreateAndPutBackInPoolTest()
76 final BitmapPool pool = new BitmapPool(POOL_SIZE, NAME); in testCreateBeyondFullAndCheckReuseTest()
94 final BitmapPool pool = new BitmapPool(POOL_SIZE, NAME); in testDecodeFromResourceBitmap()
/packages/apps/Launcher3/src/com/android/launcher3/util/
DExecutors.java38 private static final int POOL_SIZE = field in Executors
49 POOL_SIZE, POOL_SIZE, KEEP_ALIVE, TimeUnit.SECONDS, new LinkedBlockingQueue<>());
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DFileOperationService.java103 private static final int POOL_SIZE = 1; // Allow only 1 executor operation field in FileOperationService
145 executor = Executors.newFixedThreadPool(POOL_SIZE); in onCreate()