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

1 2 3 45 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingBlockingQueue.java 58 @Override public E poll(long timeout, TimeUnit unit) method in class:ForwardingBlockingQueue
60 return delegate().poll(timeout, unit);
  /external/libdrm/
libsync.h 36 #include <sys/poll.h>
70 ret = poll(&fds, 1, timeout);
  /external/python/cpython2/Lib/test/
test_epoll.py 134 events = ep.poll(1, 4)
135 events2 = ep2.poll(0.9, 4)
141 ep2.poll(1, 4)
157 events = ep.poll(1, 4)
168 events = ep.poll(timeout=2.1, maxevents=4)
175 events = ep.poll(1, 4)
189 events = ep.poll(1, 4)
208 events = ep.poll(1, 4)
  /hardware/qcom/display/msm8909/sdm/libs/utils/
sys.cpp 51 Sys::poll Sys::poll_ = ::poll;
  /hardware/qcom/display/msm8909w_3100/sdm/libs/utils/
sys.cpp 51 Sys::poll Sys::poll_ = ::poll;
  /hardware/qcom/display/msm8996/sdm/libs/utils/
sys.cpp 50 Sys::poll Sys::poll_ = ::poll;
  /hardware/qcom/display/msm8998/sdm/libs/utils/
sys.cpp 51 Sys::poll Sys::poll_ = ::poll;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceTest.java 94 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
98 && (rq.poll() == null));
106 assertTrue("Not properly enqueued2.", rq.poll().get() == obj);
110 && (rq.poll() == null));
115 assertNull("Not properly enqueued3.", rq.poll().get());
119 && (rq.poll() == null));
140 ref = queue.poll();
250 rq.poll();
  /libcore/ojluni/src/main/java/java/util/concurrent/
BlockingDeque.java 168 * <td>{@link #poll() poll()}</td>
176 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
519 * This method differs from {@link #poll poll} only in that it
538 E poll(); method in interface:BlockingDeque
564 E poll(long timeout, TimeUnit unit) method in interface:BlockingDeque
  /packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
SampleQueue.java 39 SampleHolder sampleFromQueue = mQueue.poll();
56 mSamplePool.releaseSample(mQueue.poll());
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
DequeMap.java 55 * @see Deque#poll()
60 public V poll(K key) { method in class:DequeMap
65 return pile.poll();
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_epoll.py 134 events = ep.poll(1, 4)
135 events2 = ep2.poll(0.9, 4)
141 ep2.poll(1, 4)
157 events = ep.poll(1, 4)
170 events = ep.poll(timeout=2.1, maxevents=4)
178 events = ep.poll(1, 4)
192 events = ep.poll(1, 4)
211 events = ep.poll(1, 4)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_epoll.py 134 events = ep.poll(1, 4)
135 events2 = ep2.poll(0.9, 4)
141 ep2.poll(1, 4)
157 events = ep.poll(1, 4)
170 events = ep.poll(timeout=2.1, maxevents=4)
178 events = ep.poll(1, 4)
192 events = ep.poll(1, 4)
211 events = ep.poll(1, 4)
  /prebuilts/go/darwin-x86/src/internal/poll/
hook_cloexec.go 7 package poll package
  /prebuilts/go/linux-x86/src/internal/poll/
hook_cloexec.go 7 package poll package
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_epoll.py 134 events = ep.poll(1, 4)
135 events2 = ep2.poll(0.9, 4)
141 ep2.poll(1, 4)
157 events = ep.poll(1, 4)
170 events = ep.poll(timeout=2.1, maxevents=4)
178 events = ep.poll(1, 4)
192 events = ep.poll(1, 4)
211 events = ep.poll(1, 4)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_epoll.py 134 events = ep.poll(1, 4)
135 events2 = ep2.poll(0.9, 4)
141 ep2.poll(1, 4)
157 events = ep.poll(1, 4)
170 events = ep.poll(timeout=2.1, maxevents=4)
178 events = ep.poll(1, 4)
192 events = ep.poll(1, 4)
211 events = ep.poll(1, 4)
  /system/tpm/attestation/server/
attestationd-seccomp-amd64.policy 44 poll: 1
  /system/tpm/tpm_manager/server/
tpm_managerd-seccomp-amd64.policy 45 poll: 1
  /system/tpm/trunks/
trunksd-seccomp-amd64.policy 35 poll: 1
trunksd-seccomp-x86.policy 35 poll: 1
trunksd-seccomp-x86_64.policy 35 poll: 1
  /tools/tradefederation/core/src/com/android/tradefed/util/
ConditionPriorityBlockingQueue.java 123 public T poll() { method in class:ConditionPriorityBlockingQueue
124 return poll(new AlwaysMatch<T>());
134 public T poll(IMatcher<T> matcher) { method in class:ConditionPriorityBlockingQueue
165 public T poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:ConditionPriorityBlockingQueue
166 return poll(timeout, unit, new AlwaysMatch<T>());
180 public T poll(long timeout, TimeUnit unit, IMatcher<T> matcher) throws InterruptedException { method in class:ConditionPriorityBlockingQueue
207 while ((matchedObj = poll(matcher)) == null && (nanos == null || nanos > 0)) {
392 T removedObj = poll(matcher);
  /prebuilts/go/darwin-x86/src/net/
file_unix.go 10 "internal/poll"
21 poll.CloseFunc(s)
35 poll.CloseFunc(s)
48 poll.CloseFunc(s)
53 poll.CloseFunc(s)
  /prebuilts/go/linux-x86/src/net/
file_unix.go 10 "internal/poll"
21 poll.CloseFunc(s)
35 poll.CloseFunc(s)
48 poll.CloseFunc(s)
53 poll.CloseFunc(s)

Completed in 466 milliseconds

1 2 3 45 6 7 8 91011>>