HomeSort by relevance Sort by last modified time
    Searched refs:poll (Results 76 - 100 of 511) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r7/platforms/android-5/arch-arm/usr/include/
poll.h 32 #include <linux/poll.h>
39 extern int poll(struct pollfd *, nfds_t, long);
  /prebuilt/ndk/android-ndk-r7/platforms/android-5/arch-x86/usr/include/
poll.h 32 #include <linux/poll.h>
39 extern int poll(struct pollfd *, nfds_t, long);
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-arm/usr/include/
poll.h 32 #include <linux/poll.h>
39 extern int poll(struct pollfd *, nfds_t, long);
  /prebuilt/ndk/android-ndk-r7/platforms/android-8/arch-x86/usr/include/
poll.h 32 #include <linux/poll.h>
39 extern int poll(struct pollfd *, nfds_t, long);
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/
poll.h 32 #include <linux/poll.h>
39 extern int poll(struct pollfd *, nfds_t, long);
  /prebuilt/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/
poll.h 32 #include <linux/poll.h>
39 extern int poll(struct pollfd *, nfds_t, long);
  /external/bluetooth/bluez/src/
ppoll.h 11 return poll(fds, nfds, -1);
13 return poll(fds, nfds, 500);
15 return poll(fds, nfds, timeout->tv_sec * 1000);
  /bionic/libc/arch-arm/syscalls/
poll.S 5 ENTRY(poll) function
14 END(poll)
  /external/valgrind/main/memcheck/tests/
badpoll.c 3 #include <sys/poll.h>
5 // At one point, poll()'s checking was not done accurately. This test
22 poll(ufds, 2, 200);
badpoll.stderr.exp 1 Syscall param poll(ufds.fd) points to uninitialised byte(s)
7 Syscall param poll(ufds.reventss) points to unaddressable byte(s)
  /libcore/luni/src/main/java/java/util/concurrent/
CompletionService.java 80 Future<V> poll(); method in interface:CompletionService
96 Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException; method in interface:CompletionService
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);
  /bionic/libc/arch-sh/syscalls/
poll.S 5 .type poll, @function
6 .globl poll
9 poll: label
  /bionic/libc/arch-x86/syscalls/
poll.S 5 .type poll, @function
6 .globl poll
9 poll: label
  /libcore/luni/src/main/java/java/util/
Queue.java 40 * <td>{@link #poll poll()}</td>
56 * {@link #poll()}. In a FIFO queue, all new elements are inserted at
69 * <p>The {@link #remove()} and {@link #poll()} methods remove and
74 * <tt>poll()</tt> methods differ only in their behavior when the
76 * while the <tt>poll()</tt> method returns <tt>null</tt>.
92 * used as a special return value by the <tt>poll</tt> method to
155 * from {@link #poll poll} only in that it throws an exception if this
169 E poll(); method in interface:Queue
    [all...]
AbstractQueue.java 19 * #poll poll}, and {@link #peek peek}, respectively, but throw
26 * Queue#peek}, {@link Queue#poll}, {@link Collection#size}, and
74 * from {@link #poll poll} only in that it throws an exception if this
77 * <p>This implementation returns the result of <tt>poll</tt>
84 E x = poll();
114 * <p>This implementation repeatedly invokes {@link #poll poll} until it
118 while (poll() != null
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
poll.h 1 /* Compatibility definitions for System V `poll' interface.
25 /* Get the platform dependent bits of `poll'. */
26 #include <bits/poll.h>
42 int fd; /* File descriptor to poll. */
50 /* Poll the file descriptors described by the NFDS structures starting at
58 extern int poll (struct pollfd *__fds, nfds_t __nfds, int __timeout);
61 /* Like poll, but before waiting the threads signal mask is replaced
74 #endif /* sys/poll.h */
  /external/guava/src/com/google/common/collect/
ForwardingQueue.java 43 public E poll() { method in class:ForwardingQueue
44 return delegate().poll();
  /external/grub/netboot/
nic.h 19 int (*poll)P((struct nic *)); member in struct:nic
  /libcore/luni/src/main/java/java/lang/ref/
ReferenceQueue.java 46 public synchronized Reference<? extends T> poll() { method in class:ReferenceQueue
96 return poll();
104 return poll();
126 return poll();
  /bootable/bootloader/legacy/libboot/
Android.mk 9 poll.c \
  /external/chromium/chrome/browser/sync/sessions/
test_util.h 36 ACTION_P(SimulatePollIntervalUpdate, poll) {
37 SimulatePollIntervalUpdateImpl(arg0, poll);
  /development/tools/emulator/opengl/tests/event_injector/
EventInjector.h 31 void poll( void );
  /libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceQueueTest.java 60 * java.lang.ref.ReferenceQueue#poll()
72 assertNull(rq.poll());
78 assertNull("Remove failed.", rq.poll().get());
84 assertEquals("Remove failed.", obj, (rq.poll().get()));
90 assertTrue("Remove failed.", ((Boolean) rq.poll().get())
95 assertNull(rq.poll());
103 assertNull(rq.poll());
123 assertNull(rq.poll());
150 assertNull(rq.poll());
158 assertNull("Queue should be empty. (poll)", rq.poll())
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ref/
ReferenceTest.java 60 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();

Completed in 223 milliseconds

1 2 34 5 6 7 8 91011>>