Searched refs:Pool (Results 1 – 11 of 11) sorted by relevance
26 public static <T extends Poolable<T>> Pool<T> simplePool(PoolableManager<T> manager) { in simplePool()30 … public static <T extends Poolable<T>> Pool<T> finitePool(PoolableManager<T> manager, int limit) { in finitePool()34 public static <T extends Poolable<T>> Pool<T> synchronizedPool(Pool<T> pool) { in synchronizedPool()38 public static <T extends Poolable<T>> Pool<T> synchronizedPool(Pool<T> pool, Object lock) { in synchronizedPool()
23 class SynchronizedPool<T extends Poolable<T>> implements Pool<T> {24 private final Pool<T> mPool;27 public SynchronizedPool(Pool<T> pool) { in SynchronizedPool()32 public SynchronizedPool(Pool<T> pool, Object lock) { in SynchronizedPool()
22 public interface Pool<T extends Poolable<T>> { interface
22 class FinitePool<T extends Poolable<T>> implements Pool<T> {
20 import android.util.Pool;35 private static final Pool<VelocityTracker> sPool = Pools.synchronizedPool(
27 import android.util.Pool;43 private static final Pool<GLES20RecordingCanvas> sPool = Pools.synchronizedPool(
55 import android.util.Pool;4541 private final Pool<SomeArgs> mPool = Pools.synchronizedPool(Pools.finitePool(
53 import android.util.Pool;14261 private static final Pool<InvalidateInfo> sPool = Pools.synchronizedPool(
147 * **String Pool** (OBCC_StringPool) - A collection of serialized variable
33 import android.util.Pool;1436 private static final Pool<Node> sPool = Pools.synchronizedPool(
744 android.util.Pool