/bionic/libc/arch-arm/syscalls/ |
poll.S | 6 ENTRY(poll) function 15 END(poll)
|
/bionic/libc/arch-mips/syscalls/ |
poll.S | 4 .globl poll 6 .ent poll 8 poll: label 22 .end poll
|
/bionic/libc/arch-x86/syscalls/ |
poll.S | 6 ENTRY(poll) function 27 END(poll)
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/ |
poll.c | 8 int poll(struct pollfd *fds, nfds_t nfds, int timeout) { function
|
/development/ndk/sources/android/libportable/arch-mips/ |
poll.c | 18 #include <poll.h> 22 *_XOPEN_SOURCE added the ability to not only poll for data coming in or out 23 * but now also the ability to poll for high priority input and output. Though 33 * The DECNet Protocol can set the poll in priority flag, POLLRDBAND. 34 * ATM as well as a whole bunch of other protocols can set the poll out priority flag, 37 * MIPS and SPARC likely assigned the new XOPEN poll out event flags in UNIX well before 48 * Only the Priority poll out flag can be mapped back to portable because MIPS 69 * in DECNet. Also, the poll system call and device poll 107 extern int poll(struct pollfd *, nfds_t, long) 109 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, long timeout) function [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
CompletionService.java | 78 Future<V> poll(); method in interface:CompletionService 94 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 * {@code poll} operations. 247 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);
|
/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...] |
/packages/apps/UnifiedEmail/src/com/android/bitmap/ |
PooledCache.java | 24 V poll(); method in interface:PooledCache
|
/external/chromium_org/third_party/skia/src/core/ |
SkMessageBus.h | 28 void poll(SkTDArray<Message>* out); 78 void SkMessageBus<Message>::Inbox::poll(SkTDArray<Message>* messages) { function in class:SkMessageBus::Inbox
|
/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/skia/src/core/ |
SkMessageBus.h | 28 void poll(SkTDArray<Message>* out); 78 void SkMessageBus<Message>::Inbox::poll(SkTDArray<Message>* messages) { function in class:SkMessageBus::Inbox
|
/external/smack/src/org/jivesoftware/smackx/muc/ |
ConnectionDetachedPacketCollector.java | 72 return resultQueue.poll(); 100 return resultQueue.poll(timeout, TimeUnit.MILLISECONDS); 119 // Since we know the queue is full, this poll should never actually block. 120 resultQueue.poll();
|
/frameworks/av/media/libmedia/ |
SingleStateQueue.cpp | 63 template<typename T> bool SingleStateQueue<T>::Observer::poll(T& value) function in class:android::SingleStateQueue::Observer
|
/frameworks/av/services/audioflinger/ |
StateQueue.cpp | 59 template<typename T> const T* StateQueue<T>::poll() function in class:android::StateQueue
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 76 def poll(self, timeout=0.0): member in class:Connection
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 76 def poll(self, timeout=0.0): member in class:Connection
|
/sdk/emulator/opengl/tests/event_injector/ |
EventInjector.cpp | 48 void EventInjector::poll(void) function in class:EventInjector
|
/cts/suite/cts/deviceTests/opengl/ |
cob_exporter.py | 58 def poll(cls, context): member in class:COBExporter
|
/external/smack/src/org/jivesoftware/smack/ |
PacketCollector.java | 107 return resultQueue.poll(); 135 return resultQueue.poll(timeout, TimeUnit.MILLISECONDS); 155 // Since we know the queue is full, this poll should never actually block. 156 resultQueue.poll();
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
DequeMap.java | 55 * @see Deque#poll() 60 public V poll(K key) { method in class:DequeMap 65 return pile.poll();
|