Home
last modified time | relevance | path

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

/packages/apps/Messaging/tests/src/com/android/messaging/datamodel/
DBitmapPoolTest.java35 private static final int POOL_SIZE = 5; field in BitmapPoolTest
51 for (int i = 0; i < POOL_SIZE; i++) { in fillPoolAndGetPoolContents()
64 final BitmapPool pool = new BitmapPool(POOL_SIZE, NAME); in testCreateAndPutBackInPoolTest()
75 final BitmapPool pool = new BitmapPool(POOL_SIZE, NAME); in testCreateBeyondFullAndCheckReuseTest()
93 final BitmapPool pool = new BitmapPool(POOL_SIZE, NAME); in testDecodeFromResourceBitmap()
/packages/apps/DocumentsUI/src/com/android/documentsui/services/
DFileOperationService.java100 private static final int POOL_SIZE = 2; // "pool size", not *max* "pool size". field in FileOperationService
142 executor = Executors.newFixedThreadPool(POOL_SIZE); in onCreate()