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

1 2 3 4 5

  /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
  /bionic/libc/arch-sh/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...]
Deque.java 97 * <td>{@link java.util.Queue#poll poll()}</td>
402 * This method differs from {@link #poll poll} only in that it throws an
422 E poll(); method in interface:Deque
  /development/tools/emulator/opengl/tests/event_injector/
EventInjector.cpp 48 void EventInjector::poll(void) function in class:EventInjector
  /external/grub/netboot/
nic.h 19 int (*poll)P((struct nic *)); member in struct:nic
  /external/guava/src/com/google/common/collect/
ForwardingQueue.java 43 public E poll() { method in class:ForwardingQueue
44 return delegate().poll();
  /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...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatMessageList.java 79 mQ.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 55 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:__anon10082
139 #define PIPE_CMD_POLL 3 /* poll read/write status */
  /frameworks/base/services/sensorservice/
SensorDevice.cpp 167 ssize_t SensorDevice::poll(sensors_event_t* buffer, size_t count) { function in class:android::SensorDevice
171 c = mSensorDevice->poll(mSensorDevice, buffer, count);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 113 @Override public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { method in class:BlockGuardOs
115 // but 0 means "poll and return immediately", which shouldn't be subject to BlockGuard.
119 return os.poll(fds, timeoutMs);

Completed in 986 milliseconds

1 2 3 4 5