Searched defs:QUEUE (Results 1 - 1 of 1) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DExceptionCatchingInputStream.java18 private static final Queue<ExceptionCatchingInputStream> QUEUE = Util.createQueue(0); field in class:ExceptionCatchingInputStream
25 synchronized (QUEUE) {
26 result = QUEUE.poll();
37 while (!QUEUE.isEmpty()) {
38 QUEUE.remove();
134 synchronized (QUEUE) {
135 QUEUE.offer(this);

Completed in 955 milliseconds