Home
last modified time | relevance | path

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

/packages/apps/Launcher3/iconloaderlib/src_full_lib/com/android/launcher3/icons/
DIconFactory.java28 private static IconFactory sPool; field in IconFactory
38 if (sPool != null) { in obtain()
39 IconFactory m = sPool; in obtain()
40 sPool = m.next; in obtain()
55 sPool = null; in clearPool()
80 next = sPool; in recycle()
81 sPool = this; in recycle()
/packages/apps/Launcher3/src/com/android/launcher3/icons/
DLauncherIcons.java51 private static LauncherIcons sPool; field in LauncherIcons
65 if (sPool != null) { in obtain()
66 LauncherIcons m = sPool; in obtain()
67 sPool = m.next; in obtain()
81 sPool = null; in clearPool()
107 next = sPool; in recycle()
108 sPool = this; in recycle()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DThumbnailCache.java210 private static final Pools.SimplePool<Result> sPool = new Pools.SimplePool<>(1); field in ThumbnailCache.Result
229 Result instance = sPool.acquire(); in obtain()
250 boolean released = sPool.release(this); in recycle()