OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesBuffer
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/data/
BytesBufferPool.java
30
public static class
BytesBuffer
{
35
private
BytesBuffer
(int capacity) {
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) {
ImageCacheRequest.java
24
import com.android.gallery3d.data.BytesBufferPool.
BytesBuffer
;
56
BytesBuffer
buffer = MediaItem.getBytesBufferPool().get();
ImageCacheService.java
24
import com.android.gallery3d.data.BytesBufferPool.
BytesBuffer
;
58
public boolean getImageData(Path path, long timeModified, int type,
BytesBuffer
buffer) {
Completed in 122 milliseconds