Home
last modified time | relevance | path

Searched refs:ExceptionCatchingInputStream (Results 1 – 2 of 2) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/util/
DExceptionCatchingInputStream.java16 public class ExceptionCatchingInputStream extends InputStream { class
18 private static final Queue<ExceptionCatchingInputStream> QUEUE = Util.createQueue(0);
23 public static ExceptionCatchingInputStream obtain(RecyclableBufferedInputStream toWrap) { in obtain()
24 ExceptionCatchingInputStream result; in obtain()
29 result = new ExceptionCatchingInputStream(); in obtain()
42 ExceptionCatchingInputStream() { in ExceptionCatchingInputStream() method in ExceptionCatchingInputStream
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
DDownsampler.java12 import com.bumptech.glide.util.ExceptionCatchingInputStream;
110 final ExceptionCatchingInputStream stream = in decode()
111ExceptionCatchingInputStream.obtain(new RecyclableBufferedInputStream(is, bytesForStream)); in decode()
190 …private Bitmap downsampleWithSize(ExceptionCatchingInputStream is, BitmapFactory.Options options, … in downsampleWithSize()
285 public int[] getDimensions(ExceptionCatchingInputStream is, BitmapFactory.Options options) { in getDimensions()
292 …private static Bitmap decodeStream(ExceptionCatchingInputStream is, BitmapFactory.Options options)… in decodeStream()