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

1 23 4 5 6

  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-arm/usr/include/linux/
ipmi_smi.h 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/linux/
ipmi_smi.h 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingQueueTest.java 101 @Override public T poll() { method in class:ForwardingQueueTest.StandardImplForwardingQueue
196 forward.poll();
197 assertEquals("[poll]", getCalls());
QueuesTest.java 125 assertNotNull(q.poll());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PriorityQueueTest.java 133 assertEquals(newArray[i], integerQueue.poll());
274 assertEquals(array[i], integerQueue.poll());
323 assertEquals(queue.poll(), constructedQueue.poll());
342 assertEquals(iter.next(), queue.poll());
363 assertEquals(array[i], objectQueue.poll());
392 assertEquals(iter.next(), queue.poll());
420 assertEquals(sortedArray[i], queue.poll());
423 assertNull(queue.poll());
463 * @tests java.util.PriorityQueue#poll()
    [all...]
AbstractQueueTest.java 85 public E poll() { method in class:AbstractQueueTest
  /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();
  /external/kernel-headers/original/linux/
kobject.h 60 wait_queue_head_t poll; member in struct:kobject
net.h 142 unsigned int (*poll) (struct file *file, struct socket *sock, member in struct:proto_ops
252 SOCKCALL_UWRAP(name, poll, (struct file *file, struct socket *sock, struct poll_table_struct *wait), \
280 .poll = __lock_##name##_poll, \
  /external/qemu/android/
looper.h 218 unsigned (*poll)(void* impl); member in struct:LoopIoClass
262 return io->clazz->poll(io->impl);
  /external/qemu/hw/
i8259.c 44 uint8_t poll; member in struct:PicState
275 s->poll = 0;
308 s->poll = 1;
408 if (s->poll) {
410 s->poll = 0;
465 qemu_put_8s(f, &s->poll);
490 qemu_get_8s(f, &s->poll);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium.py 397 def poll(self): member in class:ChromiumDriver
398 # poll() is not threadsafe and can throw OSError due to:
400 return self._proc.poll()
474 if line == '' and self.poll() is not None:
533 while self._proc.poll() is None and time.time() < timeout:
535 if self._proc.poll() is None:
539 # FIXME: This is sometime none. What is wrong? assert self._proc.poll() is not None
540 if self._proc.poll() is not None:
test.py 427 def poll(self): member in class:TestDriver
webkit.py 389 def poll(self): member in class:WebKitDriver
390 return self._server_process.poll()
  /libcore/luni/src/main/java/java/util/
PriorityQueue.java 202 public E poll() { method in class:PriorityQueue
WeakHashMap.java 174 // cannot poll() as that would change the expectedModCount
260 while (referenceQueue.poll() != null) {
293 poll(); method
351 poll();
432 poll();
473 poll();
496 poll();
528 poll();
567 void poll() {
569 while ((toRemove = (Entry<K, V>) referenceQueue.poll()) != null)
    [all...]
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_wanpipe.h 51 unsigned poll; member in struct:__anon23171
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_wanpipe.h 51 unsigned poll; member in struct:__anon24761
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
info.h 25 #include <linux/poll.h>
60 unsigned int (*poll) (struct snd_info_entry *entry, void *file_private_data, member in struct:snd_info_entry_ops
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_wanpipe.h 51 unsigned poll; member in struct:__anon26273
  /external/libpcap/
pcap-dag.c 508 struct timeval poll; local
571 /* Set up default poll parameters for stream
575 &mindata, &maxwait, &poll) < 0) {
593 mindata, &maxwait, &poll) < 0) {
685 * "select()" and "poll()" don't work on DAG device descriptors.
853 struct timeval poll; local
856 &mindata, &maxwait, &poll) < 0) {
871 mindata, &maxwait, &poll) < 0) {
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 169 mHandler.sendMessage(mPendingTasks.poll());
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 203 mDebugLogs.poll();
  /hardware/libhardware/include/hardware/
sensors.h 37 #define SENSORS_HARDWARE_POLL "poll"
467 int (*poll)(struct sensors_poll_device_t *dev, member in struct:sensors_poll_device_t

Completed in 2762 milliseconds

1 23 4 5 6