Searched refs:poll (Results 1 - 25 of 97) sorted by path

1234

/frameworks/av/include/media/
H A DSingleStateQueue.h117 bool poll(T& value) function in class:android::SingleStateQueue::Observer
138 mSequence = before; // mSequence is even after poll success
/frameworks/av/include/private/media/
H A DAudioTrackShared.h329 (void) mTimestampObserver.poll(mTimestamp);
575 // should avoid doing a state queue poll from within framesReady().
634 ssize_t pollPosition(); // poll for state queue update, and return current position
/frameworks/av/media/libaudioclient/
H A DAudioTrackShared.cpp601 if (mPosLoopObserver.poll(mPosLoop)) {
872 mPlaybackRateObserver.poll(mPlaybackRate);
954 if (mObserver.poll(state)) {
/frameworks/av/media/libmedia/include/media/
H A DSingleStateQueue.h117 bool poll(T& value) function in class:android::SingleStateQueue::Observer
138 mSequence = before; // mSequence is even after poll success
/frameworks/av/media/libnbaio/
H A DMonoPipe.cpp183 if (mTimestampObserver.poll(ets)) {
/frameworks/av/services/audioflinger/
H A DFastCapture.cpp55 const FastThreadState *FastCapture::poll() function in class:android::FastCapture
57 return mSQ.poll();
H A DFastCapture.h41 virtual const FastThreadState *poll();
H A DFastMixer.cpp99 const FastThreadState *FastMixer::poll() function in class:android::FastMixer
101 return mSQ.poll();
H A DFastMixer.h48 virtual const FastThreadState *poll();
H A DFastThread.cpp108 // poll for state change
109 const FastThreadState *next = poll();
H A DFastThread.h43 virtual const FastThreadState *poll() = 0;
H A DStateQueue.cpp60 template<typename T> const T* StateQueue<T>::poll() function in class:android::StateQueue
H A DStateQueue.h51 // - observer must always be able to poll for and view the latest pushed state; it must never be
110 unsigned mStateChanges; // incremented each time poll() detects a state change
137 // If a new state has not pushed by mutator since the previous poll,
141 const T* poll();
195 const T* mCurrent; // most recent value returned by poll()
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp23 #include <sys/poll.h>
1154 ssize_t pollResult = poll(&pfd, 1, 1000);
1159 ALOGE("Could not poll inotify events");
/frameworks/base/cmds/incidentd/src/
H A DFdBuffer.cpp25 #include <poll.h>
83 int count = poll(&pfds, 1, remainingTime);
/frameworks/base/core/java/android/app/
H A DActivityView.java108 if ((mActive = mTasks.poll()) != null) {
H A DQueuedWork.java182 finisher = sFinishers.poll();
/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 DPerfMeasurement.java188 NO_DURATION_YET : mTimestampQueue.poll());
190 NO_DURATION_YET : mCpuDurationsQueue.poll());
195 mTimestampQueue.poll();
198 mCpuDurationsQueue.poll();
H A DRequestQueue.java56 BurstHolder next = mRequestQueue.poll();
/frameworks/base/core/java/android/metrics/
H A DMetricsReader.java143 final LogMaker next = mPendingQueue.poll();
/frameworks/base/core/java/android/os/
H A DAsyncTask.java257 if ((mActive = mTasks.poll()) != null) {
/frameworks/base/core/java/android/speech/
H A DSpeechRecognizer.java175 mHandler.sendMessage(mPendingTasks.poll());
/frameworks/base/core/java/android/speech/tts/
H A DSynthesisPlaybackQueueItem.java221 ProgressMarker marker = markerList.poll();
279 ListEntry entry = mDataBufferList.poll();
/frameworks/base/core/java/android/view/
H A DAccessibilityInteractionController.java860 AccessibilityNodeInfo current = fringe.poll();

Completed in 418 milliseconds

1234