HomeSort by relevance Sort by last modified time
    Searched defs:poll (Results 101 - 125 of 475) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/java/android/hardware/camera2/legacy/
PerfMeasurement.java 182 // Poll to see if GL timing results have arrived; if so
188 NO_DURATION_YET : mTimestampQueue.poll());
190 NO_DURATION_YET : mCpuDurationsQueue.poll());
195 mTimestampQueue.poll();
198 mCpuDurationsQueue.poll();
215 * will only be available some time after the {@link #stopTimer} call is made. Poll this method
  /libcore/ojluni/src/main/java/java/util/concurrent/
DelayQueue.java 57 * past. If no delay has expired there is no head and {@code poll}
61 * removed using {@code take} or {@code poll}, they are otherwise
90 * poll(...), unless some other thread becomes leader in the
189 public E poll() { method in class:DelayQueue
196 : q.poll();
220 return q.poll();
253 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:DelayQueue
268 return q.poll();
297 * {@code poll}, if no expired elements are available in the queue,
352 q.poll();
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
ConditionPriorityBlockingQueueTest.java 42 * Test {@link ConditionPriorityBlockingQueue#poll()} when queue is empty.
45 assertNull(mQueue.poll());
55 assertNull(mQueue.poll());
69 assertNull(mQueue.poll());
73 * Test {@link ConditionPriorityBlockingQueue#poll()} when using FIFO ordering.
84 assertNull(fifoQueue.poll());
98 assertNull(mQueue.poll());
119 assertNull(mQueue.poll());
143 assertNull(mQueue.poll(new OneMatcher()));
144 assertEquals(two, mQueue.poll());
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/collect/
MinMaxPriorityQueueBenchmark.java 61 queue.add(queue.poll() ^ random.nextInt());
77 * a MinMaxPriorityQueue, except poll, which is forwarded to pollMax. That way
78 * we can benchmark pollMax using the same code that benchmarks poll.
92 public T poll() { method in class:MinMaxPriorityQueueBenchmark.InvertedMinMaxPriorityQueue
  /external/guava/guava-tests/test/com/google/common/collect/
EvictingQueueTest.java 62 assertNull(queue.poll());
SynchronizedQueueTest.java 50 public E poll() { method in class:SynchronizedQueueTest.TestQueue
52 return delegate.poll();
159 create().poll();
  /external/libese/libese/include/ese/
ese_hw_api.h 73 * provided and often requires the poll operation below.
159 ese_poll_op_t *poll; member in struct:EseOperations
  /external/python/cpython2/Lib/multiprocessing/
forking.py 131 def poll(self, flag=os.WNOHANG): member in class:.Popen
154 return self.poll(0)
158 res = self.poll()
306 def poll(self): member in class:.Popen
  /external/toolchain-utils/cros_utils/
command_executer.py 116 my_poll = select.poll()
132 l = my_poll.poll(100)
153 if p.poll() is not None:
611 poll = select.poll() variable in class:CommandExecuter.RunCommand2.StreamHandler
613 poll.register(outfd, select.POLLIN | select.POLLPRI)
619 poll.register(errfd, select.POLLIN | select.POLLPRI)
623 readables = poll.poll(300)
630 poll.unregister(fd
    [all...]
  /frameworks/av/services/audioflinger/
FastCapture.cpp 55 const FastThreadState *FastCapture::poll() function in class:android::FastCapture
57 return mSQ.poll();
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationLoggerTest.java 119 throw mErrorQueue.poll();
  /frameworks/base/services/tests/servicestests/src/com/android/server/testutils/
TestHandler.java 88 dispatch(mMessages.poll());
99 while ((msg = mMessages.poll()) != null) {
  /frameworks/opt/bitmap/src/com/android/bitmap/
UnrefedBitmapCache.java 26 * This subclass provides custom pool behavior. The pool can be set to block on {@link #poll()} if
55 * Declare that {@link #poll()} should now block until it can return something.
83 public ReusableBitmap poll() { method in class:UnrefedBitmapCache
86 while ((bitmap = super.poll()) == null && mBlocking) {
  /hardware/interfaces/sensors/1.0/default/
Sensors.cpp 160 Return<void> Sensors::poll(int32_t maxCount, poll_cb _hidl_cb) { function in class:android::hardware::sensors::V1_0::implementation::Sensors
170 // This enforces a single client, meaning that a maximum of one client can call poll().
182 "ISensors::poll() re-entry. I do not know what to do except killing myself.";
191 err = mSensorDevice->poll(
  /hardware/qcom/display/msm8909/sdm/include/utils/
sys.h 33 #include <poll.h>
60 typedef int (*poll)(struct pollfd *, nfds_t, int); typedef in class:sdm::Sys
75 static poll poll_;
  /hardware/qcom/display/msm8909w_3100/sdm/include/utils/
sys.h 33 #include <poll.h>
60 typedef int (*poll)(struct pollfd *, nfds_t, int); typedef in class:sdm::Sys
75 static poll poll_;
  /hardware/qcom/display/msm8996/sdm/include/utils/
sys.h 33 #include <poll.h>
55 typedef int (*poll)(struct pollfd *, nfds_t, int); typedef in class:sdm::Sys
69 static poll poll_;
  /hardware/qcom/display/msm8998/sdm/include/utils/
sys.h 33 #include <poll.h>
60 typedef int (*poll)(struct pollfd *, nfds_t, int); typedef in class:sdm::Sys
75 static poll poll_;
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueueTest.java 36 public Integer poll() { return one; } method in class:AbstractQueueTest.Succeed
47 public Integer poll() { return null; } method in class:AbstractQueueTest.Fail
83 * remove returns normally if poll succeeds
91 * remove throws NSEE if poll returns null
ExecutorCompletionServiceTest.java 119 * If poll returns non-null, the returned task is completed
125 assertNull(ecs.poll());
131 while ((f = ecs.poll()) == null) {
142 * If timed poll returns non-null, the returned task is completed
148 assertNull(ecs.poll());
151 Future f = ecs.poll(SHORT_DELAY_MS, MILLISECONDS);
177 assertNull(ecs.poll());
208 assertNull(ecs.poll());
  /libcore/luni/src/test/java/libcore/java/util/
OldPriorityQueueTest.java 119 assertEquals(i, (int) q.poll());
121 assertNull(q.poll());
  /libcore/ojluni/src/main/java/java/lang/ref/
ReferenceQueue.java 148 public Reference<? extends T> poll() { method in class:ReferenceQueue
  /libcore/ojluni/src/main/java/java/util/
Deque.java 122 * <td>{@link java.util.Queue#poll poll()}</td>
432 * This method differs from {@link #poll poll} only in that it throws an
452 E poll(); method in interface:Deque
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/
SearchResultAggregator.java 103 searchResults.add(heap.poll());
  /platform_testing/libraries/metrics-helper/src/android/support/test/metricshelper/
MetricsAsserts.java 89 LogMaker b = queue.poll();
126 public LogMaker poll() { method in class:MetricsAsserts.ReaderQueue

Completed in 525 milliseconds

1 2 3 45 6 7 8 91011>>