/external/qemu/distrib/sdl-1.2.12/src/timer/macos/ |
FastTimes.c | 52 68K and (b) poll for a VIA event. 151 /* Poll the selected timer and prepare it (since we have time) */ 159 /* Poll the selected timer again and prepare it */ 199 /* On a recent PowerPC, we poll the TBR directly */ 204 /* On a 601, we can poll the RTC instead */ 241 /* On a recent PowerPC, we poll the TBR directly */ 246 /* On a 601, we can poll the RTC instead */ 280 /* On a recent PowerPC, we poll the TBR directly */ 284 /* On a 601, we can poll the RTC instead */
|
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
PriorityQueueTest.java | 164 assertEquals(newArray[i], integerQueue.poll()); 349 assertEquals(array[i], integerQueue.poll()); 416 assertEquals(queue.poll(), constructedQueue.poll()); 441 assertEquals(iter.next(), queue.poll()); 468 assertEquals(array[i], objectQueue.poll()); 516 assertEquals(iter.next(), queue.poll()); 556 assertEquals(sortedArray[i], queue.poll()); 559 assertNull(queue.poll()); 611 * @tests java.util.PriorityQueue#poll() [all...] |
/dalvik/libcore/luni/src/main/java/java/util/ |
AbstractQueue.java | 22 * {@code element} are based on {@code offer, poll}, and {@code peek} except 95 E o = poll(); 124 o = poll();
|
/external/bluetooth/glib/glib/ |
gpoll.h | 1 /* gpoll.h - poll(2) support 39 * Note that on systems with a working poll(2), that function is used 41 * poll(), meaning GPollFD must have the same layout as struct pollfd.
|
/external/kernel-headers/original/linux/ |
poll.h | 4 #include <asm/poll.h> 26 * structures and helpers for f_op->poll implementations
|
/packages/apps/Camera/src/com/android/camera/gallery/ |
LruCache.java | 57 Entry<K, V> entry = (Entry<K, V>) mQueue.poll(); 60 entry = (Entry<K, V>) mQueue.poll();
|
/packages/apps/Gallery/src/com/android/camera/gallery/ |
LruCache.java | 53 Entry<K, V> entry = (Entry<K, V>) mQueue.poll(); 56 entry = (Entry<K, V>) mQueue.poll();
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
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...] |
ExecutorCompletionService.java | 161 public Future<V> poll() { method in class:ExecutorCompletionService 162 return completionQueue.poll(); 165 public Future<V> poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:ExecutorCompletionService 166 return completionQueue.poll(timeout, unit);
|
/bionic/libc/kernel/common/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/external/qemu/ |
charpipe.h | 30 /* must be called from the main event loop to poll all charpipes */
|
/ndk/build/platforms/android-3/arch-arm/usr/include/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/ndk/build/platforms/android-4/arch-arm/usr/include/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/ndk/build/platforms/android-5/arch-arm/usr/include/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/ndk/build/platforms/android-5/arch-x86/usr/include/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/ndk/build/platforms/android-8/arch-arm/usr/include/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/ndk/build/platforms/android-8/arch-x86/usr/include/linux/ |
ipmi_smi.h | 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
|
relay.h | 20 #include <linux/poll.h>
|
/frameworks/base/tests/CoreTests/android/core/ |
LinkedListTest.java | 468 element = list.poll(); 469 element = list.poll(); 470 element = list.poll(); 471 element = list.poll(); 472 element = list.poll(); 473 element = list.poll(); 474 element = list.poll(); 475 element = list.poll(); 476 element = list.poll(); 477 element = list.poll(); [all...] |