Home
last modified time | relevance | path

Searched refs:poll (Results 1 – 25 of 120) sorted by relevance

12345

/frameworks/base/core/java/android/hardware/camera2/legacy/
DPerfMeasurement.java188 NO_DURATION_YET : mTimestampQueue.poll()); in stopTimer()
190 NO_DURATION_YET : mCpuDurationsQueue.poll()); in stopTimer()
195 mTimestampQueue.poll(); in stopTimer()
198 mCpuDurationsQueue.poll(); in stopTimer()
DCaptureCollector.java473 CaptureHolder h = mJpegCaptureQueue.poll(); in jpegCaptured()
494 CaptureHolder h = mJpegProduceQueue.poll(); in jpegProduced()
531 CaptureHolder h = mPreviewCaptureQueue.poll(); in previewCaptured()
554 CaptureHolder h = mPreviewProduceQueue.poll(); in previewProduced()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DBlockingQueueIntentReceiver.java35 return mQueue.poll(10, TimeUnit.SECONDS); in waitForIntent()
39 return mQueue.poll(3, TimeUnit.SECONDS); in waitForIntentShortDelay()
/frameworks/base/core/tests/coretests/src/android/app/
DDownloadManagerBaseTest.java677 protected void waitForDownloadOrTimeout(long id, long poll, long timeoutMillis) in waitForDownloadOrTimeout() argument
679 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis); in waitForDownloadOrTimeout()
691 protected void waitForDownloadsOrTimeout(long poll, long timeoutMillis) throws TimeoutException, in waitForDownloadsOrTimeout() argument
693 doWaitForDownloadsOrTimeout(new Query(), poll, timeoutMillis); in waitForDownloadsOrTimeout()
706 protected boolean waitForDownloadOrTimeoutNoThrow(long id, long poll, long timeoutMillis) { in waitForDownloadOrTimeoutNoThrow() argument
708 doWaitForDownloadsOrTimeout(new Query().setFilterById(id), poll, timeoutMillis); in waitForDownloadOrTimeoutNoThrow()
727 protected int timeoutWait(int currentTotalWaitTime, long poll, long maxTimeoutMillis, in timeoutWait() argument
730 long end = now + poll; in timeoutWait()
742 currentTotalWaitTime += poll; in timeoutWait()
756 protected void doWaitForDownloadsOrTimeout(Query query, long poll, long timeoutMillis) in doWaitForDownloadsOrTimeout() argument
[all …]
/frameworks/base/tests/RollbackTest/RollbackTest/src/com/android/tests/rollback/
DRollbackBroadcastReceiver.java61 Intent poll(long timeout, TimeUnit unit) throws InterruptedException { in poll() method in RollbackBroadcastReceiver
62 return mRollbackBroadcasts.poll(timeout, unit); in poll()
/frameworks/base/core/java/android/view/accessibility/
DWeakSparseArray.java48 for (Reference ref = mRefQueue.poll(); ref != null; ref = mRefQueue.poll()) { in removeUnreachableValues()
/frameworks/opt/bitmap/src/com/android/bitmap/
DUnrefedBitmapCache.java83 public ReusableBitmap poll() { in poll() method in UnrefedBitmapCache
86 while ((bitmap = super.poll()) == null && mBlocking) { in poll()
DPooledCache.java24 V poll(); in poll() method
DUnrefedPooledCache.java121 public V poll() { in poll() method in UnrefedPooledCache
123 final V pooled = mPool.poll(); in poll()
/frameworks/native/services/sensorservice/
DSensorsWrapper.h82 virtual Return<void> poll(int32_t maxCount, ISensors::poll_cb _hidl_cb) { in poll() function
165 Return<void> poll(int32_t maxCount, in poll() function
167 return mSensors->poll(maxCount, _hidl_cb); in poll()
/frameworks/base/services/tests/servicestests/utils/com/android/server/testutils/
DTestHandler.java88 dispatch(mMessages.poll()); in timeAdvance()
99 while ((msg = mMessages.poll()) != null) { in flush()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/model/
DTaskResourceLoadQueue.java44 return mQueue.poll(); in nextTask()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/
DFrameSourceFilter.java48 return mFrames.poll(); in obtainFrame()
/frameworks/av/services/audioflinger/
DFastCapture.h41 virtual const FastThreadState *poll();
DFastCapture.cpp56 const FastThreadState *FastCapture::poll() in poll() function in android::FastCapture
58 return mSQ.poll(); in poll()
DFastThread.h43 virtual const FastThreadState *poll() = 0;
DStateQueue.h141 const T* poll();
/frameworks/base/core/java/android/speech/tts/
DSynthesisPlaybackQueueItem.java245 ProgressMarker marker = markerList.poll(); in onMarkerReached()
303 ListEntry entry = mDataBufferList.poll(); in take()
/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
DMyAutofillService.java84 request = sFillRequests.poll(TIMEOUT_MS, TimeUnit.MILLISECONDS); in getLastFillRequest()
114 CannedResponse response = sCannedResponses.poll(TIMEOUT_MS, TimeUnit.MILLISECONDS); in handleRequest()
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DDownloadManagerBaseTest.java394 private int timeoutWait(int currentTotalWaitTime, long poll, long maxTimeoutMillis, in timeoutWait() argument
397 long end = now + poll; in timeoutWait()
409 currentTotalWaitTime += poll; in timeoutWait()
/frameworks/rs/
DrsFifoSocket.cpp95 int r = poll(&p, 1, 0); in isEmpty()
/frameworks/base/core/tests/coretests/src/android/os/
DBinderWorkSourceNestedService.java70 service = blockingQueue.poll(30, TimeUnit.SECONDS);
/frameworks/base/cmds/incidentd/src/
DFdBuffer.cpp71 int count = TEMP_FAILURE_RETRY(poll(&pfds, 1, remainingTime)); in read()
177 int count = TEMP_FAILURE_RETRY(poll(pfds, 3, remainingTime)); in readProcessedDataInStream()
/frameworks/base/packages/Shell/tests/src/com/android/shell/
DActionSendMultipleConsumerActivity.java118 bundle = mQueue.poll(2 * TIMEOUT, TimeUnit.SECONDS); in getExtras()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
DWeakIdentityHashMap.java37 while ((ref = mRefQueue.poll()) != null) { in cleanUp()

12345