Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/gallery3d/data/
DBytesBufferPool.java30 public static class BytesBuffer { class in BytesBufferPool
35 private BytesBuffer(int capacity) { in BytesBuffer() method in BytesBufferPool.BytesBuffer
66 private final ArrayList<BytesBuffer> mList;
69 mList = new ArrayList<BytesBuffer>(poolSize); in BytesBufferPool()
74 public synchronized BytesBuffer get() { in get()
76 return n > 0 ? mList.remove(n - 1) : new BytesBuffer(mBufferSize); in get()
79 public synchronized void recycle(BytesBuffer buffer) { in recycle()
DImageCacheService.java24 import com.android.gallery3d.data.BytesBufferPool.BytesBuffer;
58 public boolean getImageData(Path path, long timeModified, int type, BytesBuffer buffer) { in getImageData()
DImageCacheRequest.java24 import com.android.gallery3d.data.BytesBufferPool.BytesBuffer;
56 BytesBuffer buffer = MediaItem.getBytesBufferPool().get(); in run()