/packages/apps/Camera2/src/com/android/camera/async/ |
D | ForwardingBufferQueue.java | 38 public T getNext() throws InterruptedException, BufferQueueClosedException { in getNext() method in ForwardingBufferQueue 39 return mDelegate.getNext(); in getNext() 43 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, in getNext() method in ForwardingBufferQueue 45 return mDelegate.getNext(timeout, unit); in getNext()
|
D | CountableBufferQueue.java | 82 public T getNext() throws InterruptedException, BufferQueueClosedException { in getNext() method in CountableBufferQueue 83 T result = mBufferQueue.getNext(); in getNext() 89 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, in getNext() method in CountableBufferQueue 91 T result = mBufferQueue.getNext(timeout, unit); in getNext()
|
D | BufferQueue.java | 39 public T getNext() throws InterruptedException, BufferQueueClosedException; in getNext() method 54 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, in getNext() method
|
D | ConcurrentBufferQueue.java | 168 public T getNext() throws InterruptedException, BufferQueueClosedException { in getNext() method in ConcurrentBufferQueue 174 public T getNext(long timeout, TimeUnit unit) throws InterruptedException, TimeoutException, in getNext() method in ConcurrentBufferQueue
|
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ringbuffer/ |
D | DynamicRingBuffer.java | 131 public ImageProxy getNext() throws InterruptedException, BufferQueueClosedException { in getNext() method in DynamicRingBuffer 132 return mQueue.getNext(); in getNext() 136 public ImageProxy getNext(long timeout, TimeUnit unit) throws InterruptedException, in getNext() method in DynamicRingBuffer 138 return mQueue.getNext(timeout, unit); in getNext()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/imagedistributor/ |
D | ImageStream.java | 57 public ImageProxy getNext() throws InterruptedException, BufferQueueClosedException; in getNext() method 73 public ImageProxy getNext(long timeout, TimeUnit unit) throws InterruptedException, in getNext() method
|
D | ImageDistributorImpl.java | 110 if (mGlobalTimestampBufferQueue.getNext() > timestamp) { in distributeImage()
|
/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/storage/table/packed/read/ |
D | BaseTypedPackedTable.java | 111 public E getNext() { in getNext() method in BaseTypedPackedTable.BasePackedTableEntry 112 PackedTableReader.Entry nextEntry = mEntry.getNext(); in getNext()
|
D | PackedTableReader.java | 271 public Entry getNext() { in getNext() method in PackedTableReader.Entry
|
/packages/apps/DocumentsUI/src/com/android/documentsui/services/ |
D | FileOperations.java | 51 return idBuilder.getNext(); in createJobId() 115 public synchronized String getNext() { in getNext() method in FileOperations.IdBuilder
|
/packages/modules/GeoTZ/s2storage/src/test/java/com/android/storage/table/packed/ |
D | IntValuePackedTableTest.java | 259 assertEquals(two, one.getNext()); in entryNextAndPrevious() 260 assertEquals(four, two.getNext()); in entryNextAndPrevious() 262 assertNull(four.getNext()); in entryNextAndPrevious()
|
D | PackedTableReaderWriterTest.java | 366 currentEntry = currentEntry.getNext(); in findIntValueEntryDuplicateKeys() 460 assertEquals(two, one.getNext()); in entryNextAndPrevious() 461 assertEquals(four, two.getNext()); in entryNextAndPrevious() 464 assertNull(four.getNext()); in entryNextAndPrevious()
|
/packages/modules/GeoTZ/s2storage/src/readonly/java/com/android/storage/table/reader/ |
D | Table.java | 65 T getNext(); in getNext() method
|
/packages/apps/DevCamera/src/com/android/devcamera/ |
D | Api2Camera.java | 872 boolean getNext = false; in getNextMode() 874 if (getNext) { in getNextMode() 878 getNext = true; in getNextMode() 881 if (getNext) { in getNextMode()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/photo/ |
D | SimpleImageCaptureCommand.java | 81 ImageProxy image = imageStream.getNext(); in run()
|
D | ConvergedImageCaptureCommand.java | 255 ImageProxy image = imageStream.getNext(); in captureBurst()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/sdp/ |
D | SdpManager.java | 137 SdpSearchInstance getNext() { in getNext() method in SdpManager.SdpSearchTracker 467 SdpSearchInstance inst = mSdpSearchTracker.getNext(); in startSearch()
|
/packages/apps/Camera2/src/com/android/camera/burst/ |
D | BurstCaptureCommand.java | 159 ringBuffer.insertImage(new MetadataImage(imageStream.getNext(), in run()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/photo/zsl/ |
D | ZslImageCaptureCommand.java | 88 images.add(mZslRingBuffer.getNext(0, TimeUnit.SECONDS)); in getAllAvailableImages()
|
/packages/modules/Uwb/service/java/com/android/server/uwb/ |
D | UwbServiceCore.java | 194 && Objects.equals(mAttributionSource.getNext(), that.mAttributionSource.getNext()); in equals() 200 mAttributionSource.getAttributionTag(), mAttributionSource.getNext()); in hashCode()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/util/ |
D | WifiPermissionsUtil.java | 263 AttributionSource nextAttrib = currentAttrib.getNext(); in enforceNearbyDevicesPermission()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/ |
D | Utils.java | 749 AttributionSource nextAttrib = currentAttrib.getNext(); in hasDisavowedLocationForScan()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiServiceImpl.java | 3857 if (as.getNext() != null) { in addOrUpdateNetwork() 3866 asIt = asIt.getNext(); in addOrUpdateNetwork() 4254 while (asLast.getNext() != null) { in allowAutojoinGlobal() 4255 asLast = asLast.getNext(); in allowAutojoinGlobal() 6733 if (as.getNext() != null) { 6740 asIt = asIt.getNext();
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/util/ |
D | WifiPermissionsUtilTest.java | 1598 when(attributionSource.getNext()).thenReturn(attributionSource2); in testEnforceNearbyDevicesPermission_RenounceLocationBypassLocationCheck()
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | WifiServiceImplTest.java | 8474 when(attributionSource.getNext()).thenReturn(originalCaller); in testAutoJoinGlobalWithAttributionSourceChain() 11029 when(attributionSource.getNext()).thenReturn(originalCaller); in testAddOrUpdateNetworkAttribution_InvalidAttributions() 11108 when(attributionSource.getNext()).thenReturn(originalCaller); in testAddOrUpdateNetworkAttribution_CorrectParsingWithChain() 11144 when(attributionSource.getNext()).thenReturn(originalCaller); in testAddOrUpdateNetworkAttribution_CorrectParsingWithChain_WithUpdateNetwork() 11181 when(attributionSource.getNext()).thenReturn(originalCaller); in testAddOrUpdateNetworkAttribution_CorrectParsingWithChainButNotFromSystemServer() 11217 when(attributionSource.getNext()).thenReturn(originalCaller); in testConnectAttribution_CorrectParsingWithChain() 11258 when(attributionSource.getNext()).thenReturn(originalCaller); in testConnectAttribution_CorrectParsingWithChainButNotFromSystemServer()
|