Searched refs:poll (Results 1 - 25 of 243) sorted by relevance

12345678910

/external/kernel-headers/original/uapi/linux/
H A Dpoll.h1 #include <asm/poll.h>
/external/kernel-headers/original/uapi/asm-arm/asm/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/uapi/asm-arm64/asm/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/uapi/asm-x86/asm/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dpoll.h7 #include <asm-generic/poll.h>
/external/fio/os/windows/posix/include/sys/
H A Dpoll.h13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
/external/valgrind/memcheck/tests/
H A Dbadpoll.c3 #include <sys/poll.h>
5 // At one point, poll()'s checking was not done accurately. This test
22 poll(ufds, 2, 200);
H A Dbadpoll.stderr.exp1 Syscall param poll(ufds.fd) points to uninitialised byte(s)
8 Syscall param poll(ufds.revents) points to unaddressable byte(s)
/external/compiler-rt/test/asan/TestCases/
H A Dinit-order-pthread-create.cc20 void *poll(void *arg) { function
34 pthread_create(&p, 0, poll, &glob);
/external/skia/tests/
H A DMessageBusTest.cpp29 inbox1.poll(&messages);
37 inbox1.poll(&messages);
42 inbox1.poll(&messages);
46 inbox2.poll(&messages);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingQueue.java59 public E poll() { method in class:ForwardingQueue
60 return delegate().poll();
109 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
110 * override {@link #remove}, you may wish to override {@link #poll} to forward
/external/netcat/
H A Datomicio.c32 #include <poll.h>
57 (void)poll(&pfd, 1, -1);
/external/openssh/openbsd-compat/
H A Dbsd-poll.h1 /* $OpenBSD: poll.h,v 1.11 2003/12/10 23:10:08 millert Exp $ */
28 /* OPENBSD ORIGINAL: sys/sys/poll.h */
59 int poll(struct pollfd *, nfds_t, int);
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DQueuePollTester.java30 * 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/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DUpdateControl.java72 AppTask<?> task = taskQueue.poll();
76 task = taskQueue.poll();
80 } while (((task = taskQueue.poll()) != null));
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DBaseKeyPool.java12 T result = keyPool.poll();
/external/jetty/src/java/org/eclipse/jetty/io/
H A DPooledBuffers.java50 Buffer buffer = _headers.poll();
61 Buffer buffer = _buffers.poll();
78 Buffer buffer = _others.poll();
84 buffer = _others.poll();
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEventFactory.java45 PhysicsCollisionEvent event = eventBuffer.poll();
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEventFactory.java46 PhysicsCollisionEvent event = eventBuffer.poll();
/external/mockito/src/org/mockito/internal/stubbing/answers/
H A DReturnsElementsOf.java49 return elements.poll();
/external/openssh/
H A Datomicio.c36 #include <poll.h>
39 # include <sys/poll.h>
72 (void)poll(&pfd, 1, -1);
129 (void)poll(&pfd, 1, -1);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingBlockingQueue.java58 @Override public E poll(long timeout, TimeUnit unit) method in class:ForwardingBlockingQueue
60 return delegate().poll(timeout, unit);
/external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
H A DMonitorBasedPriorityBlockingQueue.java237 public E poll() { method in class:MonitorBasedPriorityBlockingQueue
241 return q.poll();
252 return q.poll();
259 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:MonitorBasedPriorityBlockingQueue
263 return q.poll();
405 while ( (e = q.poll()) != null) {
434 while (n < maxElements && (e = q.poll()) != null) {
/external/deqp/execserver/
H A DxsTestDriver.hpp46 bool poll (ByteBuffer& messageBuffer);
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DByteArrayPool.java46 result = tempQueue.poll();

Completed in 2429 milliseconds

12345678910