HomeSort by relevance Sort by last modified time
    Searched refs:ByteArrayPool (Results 1 - 17 of 17) sorted by null

  /external/volley/src/test/java/com/android/volley/toolbox/
PoolingByteArrayOutputStreamTest.java 28 ByteArrayPool pool = new ByteArrayPool(32768);
35 ByteArrayPool pool = new ByteArrayPool(32768);
42 ByteArrayPool pool = new ByteArrayPool(0);
49 ByteArrayPool pool = new ByteArrayPool(0);
55 private void writeOneBuffer(ByteArrayPool pool) throws IOException {
66 private void writeBytesIndividually(ByteArrayPool pool)
    [all...]
ByteArrayPoolTest.java 28 ByteArrayPool pool = new ByteArrayPool(32);
44 ByteArrayPool pool = new ByteArrayPool(32);
65 ByteArrayPool pool = new ByteArrayPool(32);
BasicNetworkTest.java 275 new BasicNetwork(mockHttpStack, new ByteArrayPool(4096));
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ByteArrayPool.java 10 public final class ByteArrayPool {
11 private static final String TAG = "ByteArrayPool";
19 private static final ByteArrayPool BYTE_ARRAY_POOL = new ByteArrayPool();
24 public static ByteArrayPool get() {
28 private ByteArrayPool() { }
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
ByteArrayPool.java 24 public final class ByteArrayPool {
29 private final static ByteArrayPool sChunk16K = new ByteArrayPool(CHUNK16K, DEFAULT_MAX_NUM);
35 private ByteArrayPool(int chunkSize, int maxNum) {
44 public static ByteArrayPool get16KBPool() {
CachedInputStream.java 34 private static final int CHUNK_SIZE = ByteArrayPool.CHUNK16K;
113 ByteArrayPool.get16KBPool().releaseChunks(bufs);
117 return ByteArrayPool.get16KBPool().allocateChunk();
BitmapWorkerTask.java 166 bitmapOptions.inTempStorage = ByteArrayPool.get16KBPool().allocateChunk();
208 ByteArrayPool.get16KBPool().releaseChunk(bitmapOptions.inTempStorage);
DrawableLoader.java 191 bitmapOptions.inTempStorage = ByteArrayPool.get16KBPool().allocateChunk();
258 ByteArrayPool.get16KBPool().releaseChunk(bitmapOptions.inTempStorage);
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
StreamEncoder.java 6 import com.bumptech.glide.util.ByteArrayPool;
20 byte[] buffer = ByteArrayPool.get().getBytes();
33 ByteArrayPool.get().releaseBytes(buffer);
  /external/volley/src/main/java/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 28 * If the {@link #PoolingByteArrayOutputStream(ByteArrayPool)} constructor is called, this is
33 private final ByteArrayPool mPool;
39 public PoolingByteArrayOutputStream(ByteArrayPool pool) {
51 public PoolingByteArrayOutputStream(ByteArrayPool pool, int size) {
ByteArrayPool.java 26 * ByteArrayPool is a source and repository of <code>byte[]</code> objects. Its purpose is to
54 public class ByteArrayPool {
79 public ByteArrayPool(int sizeLimit) {
BasicNetwork.java 70 protected final ByteArrayPool mPool;
81 this(httpStack, new ByteArrayPool(DEFAULT_POOL_SIZE));
87 * @deprecated use {@link #BasicNetwork(BaseHttpStack, ByteArrayPool)} instead to avoid
92 public BasicNetwork(HttpStack httpStack, ByteArrayPool pool) {
104 this(httpStack, new ByteArrayPool(DEFAULT_POOL_SIZE));
111 public BasicNetwork(BaseHttpStack httpStack, ByteArrayPool pool) {
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
GifBitmapWrapperResourceDecoder.java 13 import com.bumptech.glide.util.ByteArrayPool;
56 ByteArrayPool pool = ByteArrayPool.get();
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
Downsampler.java 11 import com.bumptech.glide.util.ByteArrayPool;
104 final ByteArrayPool byteArrayPool = ByteArrayPool.get();
105 final byte[] bytesForOptions = byteArrayPool.getBytes();
106 final byte[] bytesForStream = byteArrayPool.getBytes();
163 byteArrayPool.releaseBytes(bytesForOptions);
164 byteArrayPool.releaseBytes(bytesForStream);
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.10/
library-1.0.10.jar 
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.18/
library-1.0.18.jar 
  /prebuilts/tools/common/m2/repository/com/github/bumptech/glide/glide/3.6.1/
glide-3.6.1.jar 

Completed in 589 milliseconds