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

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

Completed in 117 milliseconds