Searched refs:poll (Results 26 - 50 of 103) sorted by relevance

12345

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCaptureCollector.java473 CaptureHolder h = mJpegCaptureQueue.poll();
494 CaptureHolder h = mJpegProduceQueue.poll();
531 CaptureHolder h = mPreviewCaptureQueue.poll();
554 CaptureHolder h = mPreviewProduceQueue.poll();
H A DRequestQueue.java78 BurstHolder next = mRequestQueue.poll();
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java118 return sPool.poll();
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DTrackedGarbage.java56 while ((ref = mRefQueue.poll()) != null) {
/frameworks/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java118 MessageBundle bundle = mQueue.poll();
/frameworks/av/services/audioflinger/
H A DFastCapture.cpp55 const FastThreadState *FastCapture::poll() function in class:android::FastCapture
57 return mSQ.poll();
/frameworks/base/libs/common_time/
H A Ddiag_thread.cpp23 #include <poll.h>
220 int poll_res = poll(poll_fds, NELEM(poll_fds), 50);
/frameworks/base/media/native/midi/
H A Dmidi.cpp19 #include <poll.h>
164 int pollResult = poll(checkFds, 1, 0);
/frameworks/native/cmds/dumpsys/
H A Ddumpsys.cpp36 #include <sys/poll.h>
238 int rc = TEMP_FAILURE_RETRY(poll(&pfd, 1, time_left_ms()));
240 aerr << "Error in poll while dumping service " << service_name << " : "
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DUnrefedPooledCache.java31 * its cache, and instead {@link #poll()} is allowed to return unreferenced cache
121 public V poll() { method in class:UnrefedPooledCache
122 Trace.beginSection("pool poll");
123 final V pooled = mPool.poll();
/frameworks/native/libs/vr/libpdx_uds/
H A Dservice_framework_tests.cpp3 #include <poll.h>
648 int count = poll(&pfd, 1, 0);
653 count = poll(&pfd, 1, 10000 /*10s*/);
669 int count = poll(&pfd, 1, 0);
674 count = poll(&pfd, 1, 10000 /*10s*/);
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java355 * @param poll The amount of time to wait
387 * @param poll The amount of time to wait
394 private int timeoutWait(int currentTotalWaitTime, long poll, long maxTimeoutMillis, argument
397 long end = now + poll;
409 currentTotalWaitTime += poll;
/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp183 if (mTimestampObserver.poll(ets)) {
/frameworks/base/core/java/android/app/
H A DQueuedWork.java182 finisher = sFinishers.poll();
/frameworks/base/core/java/android/metrics/
H A DMetricsReader.java143 final LogMaker next = mPendingQueue.poll();
/frameworks/base/core/java/com/android/internal/os/
H A DZygoteServer.java158 Os.poll(pollFds, -1);
160 throw new RuntimeException("poll failed", ex);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DHighResThumbnailLoader.java210 next = mLoadQueue.poll();
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingStateCallback.java189 while ((nextState = mRecentStates.poll(timeoutLeft, TimeUnit.MILLISECONDS))
/frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
H A DStateWaiter.java138 while ((nextState = mQueuedStates.poll(timeoutLeft, TimeUnit.MILLISECONDS)) != null) {
/frameworks/native/libs/vr/libvrflinger/
H A Ddisplay_manager_service.cpp8 #include <sys/poll.h>
H A Dvr_flinger.cpp5 #include <poll.h>
/frameworks/native/services/sensorservice/
H A DSensorDevice.h80 ssize_t poll(sensors_event_t* buffer, size_t count);
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java413 processTask(session, mPendingTasks.poll(), false);
466 final SpellCheckerParams tmp = mPendingTasks.poll();
/frameworks/base/native/android/
H A Dsensor.cpp32 #include <poll.h>
259 int nfd = poll(&pfd, 1, 0);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskSnapshotPersister.java173 final StoreWriteQueueItem item = mStoreQueueItems.poll();
231 next = mWriteQueue.poll();

Completed in 2447 milliseconds

12345