HomeSort by relevance Sort by last modified time
    Searched defs:poll (Results 101 - 125 of 203) sorted by null

1 2 3 45 6 7 8 9

  /libcore/luni/src/test/java/tests/api/java/lang/ref/
ReferenceQueueTest.java 61 * java.lang.ref.ReferenceQueue#poll()
73 assertNull(rq.poll());
79 assertNull("Remove failed.", rq.poll().get());
85 assertEquals("Remove failed.", obj, (rq.poll().get()));
91 assertTrue("Remove failed.", ((Boolean) rq.poll().get())
96 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...]
ReferenceTest.java 117 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
121 && (rq.poll() == null));
129 assertTrue("Not properly enqueued2.", rq.poll().get() == obj);
133 && (rq.poll() == null));
138 assertNull("Not properly enqueued3.", rq.poll().get());
142 && (rq.poll() == null));
163 ref = queue.poll();
272 rq.poll();
  /packages/apps/UnifiedEmail/src/com/android/bitmap/
ContiguousFIFOAggregator.java 203 mExpected.poll();
  /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:__anon37594
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_wanpipe.h 51 unsigned poll; member in struct:__anon39185
  /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:__anon40699
  /prebuilts/gcc/linux-x86/host/x86_64-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/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 131 def poll(self, flag=os.WNOHANG): member in class:.Popen
154 return self.poll(0)
158 res = self.poll()
306 def poll(self): member in class:.Popen
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 131 def poll(self, flag=os.WNOHANG): member in class:.Popen
154 return self.poll(0)
158 res = self.poll()
306 def poll(self): member in class:.Popen
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractQueueTest.java 85 public E poll() { method in class:AbstractQueueTest
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_glibc.cc 136 OP(poll);\
240 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout, int* count) { function
  /external/chromium_org/sync/engine/
sync_scheduler_impl.cc 232 AdjustPolling(UPDATE_INTERVAL); // Will kick start poll timer if needed.
461 // Don't run poll job till the next time poll timer fires.
505 // Don't run poll job till the next time poll timer fires.
552 SDVLOG(2) << "Unable to run a poll job right now.";
557 SDVLOG(2) << "Not running poll job in configure mode.";
571 SDVLOG(2) << "Poll request got us throttled.";
605 TimeDelta poll = GetPollInterval(); local
607 poll != poll_timer_.GetCurrentDelay()
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 402 /* Handle case when poll is used to simulate sleep. */
403 inline int poll(struct pollfd* fds, int nfds, int timeout) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 399 /* Handle case when poll is used to simulate sleep. */
400 inline int poll(struct pollfd* fds, int nfds, int timeout) { function
  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 125 assertNotNull(q.poll());
  /external/kernel-headers/original/linux/
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/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 175 mHandler.sendMessage(mPendingTasks.poll());
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 203 mDebugLogs.poll();
  /libcore/luni/src/main/java/java/lang/
ProcessManager.java 71 while ((reference = referenceQueue.poll()) != null) {
328 public ProcessReference poll() { method in class:ProcessManager.ProcessReferenceQueue
330 Object reference = super.poll();
  /libcore/luni/src/main/java/java/util/
ArrayDeque.java 404 * This method differs from {@link #poll poll} only in that it throws an
426 public E poll() { method in class:ArrayDeque
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentLinkedQueue.java 103 * poll() that has lost its time slice.
130 * poll() and remove(Object) where the same element would appear
324 public E poll() { method in class:ConcurrentLinkedQueue
368 * This is yet another variant of poll/peek; here returning the
372 * of losing a race to a concurrent poll().
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractQueueTest.java 87 public E poll() { method in class:AbstractQueueTest
  /packages/apps/Nfc/nxp/jni/
com_android_nfc_NativeNfcTag.cpp 292 * Utility to recover poll bytes from target infos
485 // Success, set poll & act bytes
1065 jbyte* poll = e->GetByteArrayElements(pollBytes, NULL); local
    [all...]

Completed in 1232 milliseconds

1 2 3 45 6 7 8 9