Home
last modified time | relevance | path

Searched refs:poll (Results 1 – 25 of 273) sorted by relevance

1234567891011

/external/skia/tests/
DMessageBusTest.cpp29 inbox1.poll(&messages); in DEF_TEST()
37 inbox1.poll(&messages); in DEF_TEST()
42 inbox1.poll(&messages); in DEF_TEST()
46 inbox2.poll(&messages); in DEF_TEST()
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
DMonitorBasedPriorityBlockingQueue.java237 public E poll() { in poll() method in MonitorBasedPriorityBlockingQueue
241 return q.poll(); in poll()
252 return q.poll(); in take()
259 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll() method in MonitorBasedPriorityBlockingQueue
263 return q.poll(); in poll()
405 while ( (e = q.poll()) != null) { in drainTo()
434 while (n < maxElements && (e = q.poll()) != null) { in drainTo()
/external/jetty/src/java/org/eclipse/jetty/io/
DPooledBuffers.java50 Buffer buffer = _headers.poll(); in getHeader()
61 Buffer buffer = _buffers.poll(); in getBuffer()
78 Buffer buffer = _others.poll(); in getBuffer()
84 buffer = _others.poll(); in getBuffer()
/external/llvm/test/Transforms/PlaceSafepoints/
Dcall-in-loop.ll2 ; don't need a safepoint poll (since the callee must contain a
3 ; poll test).
24 ; This function is inlined when inserting a poll.
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
DUpdateControl.java72 AppTask<?> task = taskQueue.poll(); in controlUpdate()
76 task = taskQueue.poll(); in controlUpdate()
80 } while (((task = taskQueue.poll()) != null)); in controlUpdate()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DQueuePollTester.java42 assertNull("emptyQueue.poll() should return null", getQueue().poll()); in testPoll_empty()
50 samples.e0, getQueue().poll()); in testPoll_size1()
58 samples.e0, getQueue().poll()); in testPoll_sizeMany()
/external/compiler-rt/test/asan/TestCases/
Dinit-order-pthread-create.cc20 void *poll(void *arg) { in poll() function
34 pthread_create(&p, 0, poll, &glob); in GlobalPollerStarter()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar ... extends java.lang.Thread { boolean done long poll long delay org.eclipse.equinox.internal. ...
/external/valgrind/memcheck/tests/
Dbadpoll.stderr.exp1 Syscall param poll(ufds.fd) points to uninitialised byte(s)
8 Syscall param poll(ufds.revents) points to unaddressable byte(s)
Dbadpoll.c22 poll(ufds, 2, 200); in main()
/external/guava/guava/src/com/google/common/collect/
DForwardingQueue.java59 public E poll() { in poll() method in ForwardingQueue
60 return delegate().poll(); in poll()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DDeque.java85 return ll.poll(); in pollFirst()
150 public E poll() { in poll() method in Deque
151 return ll.poll(); in poll()
/external/guava/guava/src/com/google/common/util/concurrent/
DForwardingBlockingQueue.java58 @Override public E poll(long timeout, TimeUnit unit) in poll() method in ForwardingBlockingQueue
60 return delegate().poll(timeout, unit); in poll()
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedQueueTest.java50 public E poll() { in poll() method in SynchronizedQueueTest.TestQueue
52 return delegate.poll(); in poll()
159 create().poll(); in testHoldsLockOnAllOperations()
DMinMaxPriorityQueueTest.java215 removeMinFromReplica(replica, mmHeap.poll()); in testHeapIntact()
258 assertEquals(1, (int) mmHeap.poll()); in testSmallMinHeap()
261 assertEquals(2, (int) mmHeap.poll()); in testSmallMinHeap()
264 assertEquals(3, (int) mmHeap.poll()); in testSmallMinHeap()
267 assertNull(mmHeap.poll()); in testSmallMinHeap()
682 assertEquals("Using seed " + seed, control.poll(), q.pollFirst()); in testCorrectOrdering_randomAccess()
686 assertEquals("Using seed " + seed, control.poll(), q.pollFirst()); in testCorrectOrdering_randomAccess()
703 assertEquals(next, q.poll()); in testExhaustive_pollAndPush()
735 assertEquals(next, q.poll()); in testRegression_dataCorruption()
DForwardingQueueTest.java101 @Override public T poll() { in poll() method in ForwardingQueueTest.StandardImplForwardingQueue
196 forward.poll(); in testPoll()
/external/jetty/src/java/org/eclipse/jetty/server/
DAsyncNCSARequestLog.java79 String log = _queue.poll(10,TimeUnit.SECONDS); in run()
85 log=_queue.poll(); in run()
/external/tcpdump/
Dprint-pgm.c289 struct pgm_poll *poll; in pgm_print() local
291 poll = (struct pgm_poll *)(pgm + 1); in pgm_print()
292 TCHECK(*poll); in pgm_print()
294 EXTRACT_32BITS(&poll->pgmp_seq), in pgm_print()
295 EXTRACT_16BITS(&poll->pgmp_round)); in pgm_print()
296 bp = (u_char *) (poll + 1); in pgm_print()
/external/skia/src/core/
DSkMessageBus.h29 void poll(SkTArray<Message>* out);
90 void SkMessageBus<Message>::Inbox::poll(SkTArray<Message>* messages) { in poll() function
/external/openssh/
Datomicio.c72 (void)poll(&pfd, 1, -1); in atomicio6()
129 (void)poll(&pfd, 1, -1); in atomiciov6()
Dmonitor_fdpass.c93 (void)poll(&pfd, 1, -1); in mm_send_fd()
150 (void)poll(&pfd, 1, -1); in mm_receive_fd()
/external/guava/guava-tests/benchmark/com/google/common/collect/
DMinMaxPriorityQueueBenchmark.java61 queue.add(queue.poll() ^ random.nextInt()); in pollAndAdd()
92 public T poll() { in poll() method in MinMaxPriorityQueueBenchmark.InvertedMinMaxPriorityQueue
/external/fio/os/windows/posix/include/sys/
Dpoll.h13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
/external/openssh/openbsd-compat/
Dbsd-poll.h59 int poll(struct pollfd *, nfds_t, int);
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
DGifResourceDecoder.java121 GifDecoder result = pool.poll(); in obtain()
139 GifHeaderParser result = pool.poll(); in obtain()

1234567891011