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

/packages/apps/Camera2/src/com/android/camera/async/
H A DBufferQueue.java39 public T getNext() throws InterruptedException, BufferQueueClosedException; method in interface:BufferQueue
54 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, method in interface:BufferQueue
H A DForwardingBufferQueue.java38 public T getNext() throws InterruptedException, BufferQueueClosedException { method in class:ForwardingBufferQueue
39 return mDelegate.getNext();
43 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, method in class:ForwardingBufferQueue
45 return mDelegate.getNext(timeout, unit);
H A DCountableBufferQueue.java82 public T getNext() throws InterruptedException, BufferQueueClosedException { method in class:CountableBufferQueue
83 T result = mBufferQueue.getNext();
89 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, method in class:CountableBufferQueue
91 T result = mBufferQueue.getNext(timeout, unit);
H A DConcurrentBufferQueue.java44 * are added but never retrieved via {@link #getNext}.
113 // Mark as closed so that no more threads wait in getNext().
128 // to keep waking-up any threads which manage to block in getNext()
168 public T getNext() throws InterruptedException, BufferQueueClosedException { method in class:ConcurrentBufferQueue
174 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, method in class:ConcurrentBufferQueue
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/imagedistributor/
H A DImageStream.java57 public ImageProxy getNext() throws InterruptedException, BufferQueueClosedException; method in interface:ImageStream
73 public ImageProxy getNext(long timeout, TimeUnit unit) throws InterruptedException, method in interface:ImageStream
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DServiceDeclaration.java112 Entry getNext() { method in class:ServiceDeclaration
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ringbuffer/
H A DDynamicRingBuffer.java131 public ImageProxy getNext() throws InterruptedException, BufferQueueClosedException { method in class:DynamicRingBuffer
132 return mQueue.getNext();
136 public ImageProxy getNext(long timeout, TimeUnit unit) throws InterruptedException, method in class:DynamicRingBuffer
138 return mQueue.getNext(timeout, unit);
/packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
H A DSdpManager.java183 SdpSearchInstance getNext() { method in class:SdpManager.SdpSearchTracker
442 SdpSearchInstance inst = sSdpSearchTracker.getNext();
/packages/apps/TV/usbtuner/src/com/android/usbtuner/exoplayer/cache/
H A DSampleCache.java353 public SampleCache getNext() { method in class:SampleCache
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...
/packages/apps/Messaging/build/gcheckstyle/
H A Dgoogle-style-checker_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties com/ com/google/ com/google/ ...

Completed in 404 milliseconds