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

123456789

/external/kernel-headers/original/asm-x86/
H A Dpoll.h1 #include <asm-generic/poll.h>
/external/kernel-headers/original/asm-mips/
H A Dpoll.h7 #include <asm-generic/poll.h>
/external/valgrind/main/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.reventss) points to unaddressable byte(s)
/external/grub/netboot/
H A Dnic.h19 int (*poll)P((struct nic *)); member in struct:nic
/external/chromium/chrome/browser/sync/sessions/
H A Dtest_util.h36 ACTION_P(SimulatePollIntervalUpdate, poll) {
37 SimulatePollIntervalUpdateImpl(arg0, poll);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingQueue.java60 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/
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.java29 * 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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
H A DReferenceTest.java60 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
64 && (rq.poll() == null));
71 assertTrue("Not properly enqueued2.", rq.poll().get() == obj);
75 && (rq.poll() == null));
125 ref = rq.poll();
155 rq.poll();
H A DReferenceQueueTest.java57 * @tests java.lang.ref.ReferenceQueue#poll()
65 assertTrue("Remove failed.", ((Boolean) rq.poll().get())
86 assertNull("Queue is empty.", rq.poll());
/external/chromium/third_party/libevent/
H A DAndroid.mk14 third_party/libevent/poll.c \
/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/openssh/
H A Datomicio.c36 #include <poll.h>
39 # include <sys/poll.h>
68 (void)poll(&pfd, 1, -1);
124 (void)poll(&pfd, 1, -1);
H A Dmonitor_fdpass.c38 #include <poll.h>
87 (void)poll(&pfd, 1, -1);
143 (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/src/com/google/common/eventbus/
H A DAsyncEventBus.java76 EventWithHandler eventWithHandler = eventsToDispatch.poll();
/external/linux-tools-perf/python/
H A Dtwatch.py30 evlist.poll(timeout = -1)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar ... UpdateCheckThread extends java.lang.Thread { boolean done long poll long delay org.eclipse.equinox.internal. ...
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dserver_process.py104 def poll(self): member in class:ServerProcess
106 if it still is (wrapper around subprocess.poll)."""
108 # poll() is not threadsafe and can throw OSError due to:
110 return self._proc.poll()
170 # poll() is not threadsafe and can throw OSError due to:
172 if self._proc.poll() != None:
218 # poll() is not threadsafe and can throw OSError due to:
220 while self._proc.poll() is None and time.time() < timeout:
222 # poll() is not threadsafe and can throw OSError due to:
224 if self._proc.poll() i
[all...]
/external/chromium/third_party/libjingle/source/talk/p2p/client/
H A Dsocketmonitor.h78 void PollSocket(bool poll);
/external/guava/guava/src/com/google/common/io/
H A DLineReader.java85 return lines.poll();

Completed in 657 milliseconds

123456789