HomeSort by relevance Sort by last modified time
    Searched defs:poll (Results 1 - 25 of 143) sorted by null

1 2 3 4 5 6

  /bionic/libc/arch-arm/syscalls/
poll.S 5 ENTRY(poll) function
14 END(poll)
  /bionic/libc/arch-x86/syscalls/
poll.S 5 .type poll, @function
6 .globl poll
9 poll: label
  /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
BlockingQueue.java 50 * <td>{@link #poll poll()}</td>
52 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
67 * <tt>poll</tt> operations.
248 E poll(long timeout, TimeUnit unit) method in interface:BlockingQueue
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);
BlockingDeque.java 132 * <td>{@link #poll() poll()}</td>
140 * <td>{@link #poll(long, TimeUnit) poll(time, unit)}</td>
479 * This method differs from {@link #poll poll} only in that it
498 E poll(); method in interface:BlockingDeque
524 E poll(long timeout, TimeUnit unit) method in interface:BlockingDeque
DelayQueue.java 21 * past. If no delay has expired there is no head and <tt>poll</tt>
25 * removed using <tt>take</tt> or <tt>poll</tt>, they are otherwise
53 * poll(...), unless some other thread becomes leader in the
152 public E poll() { method in class:DelayQueue
160 return q.poll();
184 return q.poll();
216 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:DelayQueue
231 return q.poll();
259 * <tt>poll</tt>, if no expired elements are available in the queue,
305 c.add(q.poll());
    [all...]
  /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...]
  /external/grub/netboot/
nic.h 19 int (*poll)P((struct nic *)); member in struct:nic
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 60 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/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/openssh/openbsd-compat/
bsd-poll.c 1 /* $Id: bsd-poll.c,v 1.4 2008/08/29 21:32:38 dtucker Exp $ */
28 #include "bsd-poll.h"
31 * A minimal implementation of poll(2), built on top of select(2).
40 poll(struct pollfd *fds, nfds_t nfds, int timeout) function
81 /* poll timeout is msec, select is timeval (sec + usec) */
91 /* scan through select results and set poll() flags */
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_unittest.py 56 def poll(self): member in class:MockProc
dryrun.py 116 def poll(self): member in class:DryrunDriver
server_process.py 104 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() is None
    [all...]
  /frameworks/av/services/audioflinger/
StateQueue.cpp 58 template<typename T> const T* StateQueue<T>::poll() function in class:android::StateQueue
  /sdk/emulator/opengl/tests/event_injector/
EventInjector.cpp 48 void EventInjector::poll(void) function in class:EventInjector
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatMessageList.java 79 mQ.poll();
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
LwjglKeyInput.java 79 Keyboard.poll();
  /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();
  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 203 mTasks.poll();
  /bionic/libc/kernel/common/linux/
ipmi_smi.h 56 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /development/ndk/platforms/android-3/include/linux/
ipmi_smi.h 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /external/kernel-headers/original/linux/
ipmi_smi.h 114 /* Called to poll for work to do. This is so upper layers can
115 poll for operations during things like crash dumps. */
116 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /external/qemu/hw/
goldfish_pipe.h 87 /* Called when guest wants to poll the read/write status for the pipe.
90 unsigned (*poll)( void* pipe ); member in struct:__anon11188
160 #define PIPE_CMD_POLL 3 /* poll read/write status */

Completed in 738 milliseconds

1 2 3 4 5 6