HomeSort by relevance Sort by last modified time
    Searched refs:poll (Results 276 - 300 of 1256) sorted by null

<<11121314151617181920>>

  /frameworks/opt/bitmap/src/com/android/bitmap/
PooledCache.java 24 V poll(); method in interface:PooledCache
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 7 # Also ensure poll() handles an errno.ECHILD appropriately.
10 while p.poll() is None:
15 raise RuntimeError('poll should have returned 0 within 30 seconds')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/subprocessdata/
sigchild_ignore.py 7 # Also ensure poll() handles an errno.ECHILD appropriately.
10 while p.poll() is None:
15 raise RuntimeError('poll should have returned 0 within 30 seconds')
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 60 public E poll() { method in class:ForwardingQueue
61 return delegate().poll();
110 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
111 * override {@link #remove}, you may wish to override {@link #poll} to forward
  /external/netcat/
atomicio.c 32 #include <poll.h>
57 (void)poll(&pfd, 1, -1);
  /external/strace/test/
procpollable.c 6 #include <poll.h>
33 if (poll(&pfd, 1, 0) < 0)
  /system/core/fastbootd/
socket_client.c 34 #include <poll.h>
66 if (poll(fds, 2, -1) <= 0) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/pipe/
pipe_event_emitter.h 8 #include <poll.h>
  /external/valgrind/main/memcheck/tests/
badpoll.stderr.exp 1 Syscall param poll(ufds.fd) points to uninitialised byte(s)
8 Syscall param poll(ufds.revents) points to unaddressable byte(s)
  /hardware/qcom/display/msm8084/libqdutils/
qd_utils.h 42 #include <sys/poll.h>
  /libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 47 public synchronized Reference<? extends T> poll() { method in class:ReferenceQueue
95 return poll();
103 return poll();
125 return poll();
  /libcore/luni/src/main/java/java/util/concurrent/
ExecutorCompletionService.java 167 public Future<V> poll() { method in class:ExecutorCompletionService
168 return completionQueue.poll();
171 public Future<V> poll(long timeout, TimeUnit unit) method in class:ExecutorCompletionService
173 return completionQueue.poll(timeout, unit);
BlockingQueue.java 50 * <td>{@link #poll poll()}</td>
52 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
67 * {@code poll} operations.
247 E poll(long timeout, TimeUnit unit) method in interface:BlockingQueue
  /sdk/emulator/opengl/tests/event_injector/
EventInjector.h 31 void poll( void );
  /external/chromium_org/third_party/webrtc/tools/loopback_test/
stat_tracker.js 62 function poll() {
65 setTimeout(poll, pollInterval);
75 setTimeout(poll, pollInterval);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
QueuePollTester.java 29 * A generic JUnit test which tests {@code poll()} operations on a queue.
42 assertNull("emptyQueue.poll() should return null", getQueue().poll());
49 assertEquals("size1Queue.poll() should return first element",
50 samples.e0, getQueue().poll());
57 assertEquals("sizeManyQueue.poll() should return first element",
58 samples.e0, getQueue().poll());
  /external/smack/src/org/jivesoftware/smack/
PacketCollector.java 107 return resultQueue.poll();
135 return resultQueue.poll(timeout, TimeUnit.MILLISECONDS);
155 // Since we know the queue is full, this poll should never actually block.
156 resultQueue.poll();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceQueueTest.java 61 * java.lang.ref.ReferenceQueue#poll()
73 assertNull(rq.poll());
79 assertTrue("Remove failed.", ((Boolean) rq.poll().get())
86 assertEquals("Remove failed.", obj, (rq.poll().get()));
92 assertNull("Remove failed.", rq.poll().get());
97 assertNull(rq.poll());
104 assertNull(rq.poll());
124 assertNull(rq.poll());
151 assertNull(rq.poll());
159 assertNull("Queue should be empty. (poll)", rq.poll())
    [all...]
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
GeolocationTest.java 95 poll(new Callable<Boolean>() { method
115 poll(new Callable<Boolean>() { method
123 poll(new Callable<Boolean>() { method
142 poll(new Callable<Boolean>() { method
159 poll(new Callable<Boolean>() { method
193 poll(new Callable<Boolean>() { method
230 poll(new Callable<Boolean>() { method
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/stream/
stream_event_emitter.cc 7 #include <poll.h>
  /external/chromium_org/sync/sessions/
test_util.h 50 // Poll successes and failures.
67 // Works with poll cycles.
88 ACTION_P(SimulatePollIntervalUpdate, poll) {
89 SimulatePollIntervalUpdateImpl(arg0, arg1, poll);
92 ACTION_P(SimulateSessionsCommitDelayUpdate, poll) {
93 SimulateSessionsCommitDelayUpdateImpl(arg0, arg1, arg2, poll);
  /external/mockito/src/org/mockito/internal/stubbing/answers/
ReturnsElementsOf.java 49 return elements.poll();
  /frameworks/base/core/java/android/app/
QueuedWork.java 87 while ((toFinish = sPendingWorkFinishers.poll()) != null) {
  /frameworks/base/core/java/android/hardware/camera2/legacy/
PerfMeasurement.java 183 // Poll to see if GL timing results have arrived; if so
189 NO_DURATION_YET : mTimestampQueue.poll());
191 NO_DURATION_YET : mCpuDurationsQueue.poll());
196 mTimestampQueue.poll();
199 mCpuDurationsQueue.poll();
216 * will only be available some time after the {@link #stopTimer} call is made. Poll this method
  /hardware/qcom/display/msm8226/libqdutils/
qd_utils.h 42 #include <sys/poll.h>

Completed in 2826 milliseconds

<<11121314151617181920>>