Home
last modified time | relevance | path

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

/packages/apps/Launcher3/src/com/android/launcher3/icons/
DLauncherIcons.java32 private static LauncherIcons sPool; field in LauncherIcons
51 if (sPool != null) { in obtain()
52 LauncherIcons m = sPool; in obtain()
53 sPool = m.next; in obtain()
67 sPool = null; in clearPool()
93 next = sPool; in recycle()
94 sPool = this; in recycle()
/packages/apps/DocumentsUI/src/com/android/documentsui/
DThumbnailCache.java214 private static final Pools.SimplePool<Result> sPool = new Pools.SimplePool<>(1); field in ThumbnailCache.Result
233 Result instance = sPool.acquire(); in obtain()
254 boolean released = sPool.release(this); in recycle()