HomeSort by relevance Sort by last modified time
    Searched defs:poll (Results 226 - 250 of 475) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/concurrent/
LinkedBlockingDeque.java 663 * This method differs from {@link #poll poll} only in that it throws an
675 public E poll() { method in class:LinkedBlockingDeque
683 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:LinkedBlockingDeque
    [all...]
LinkedTransferQueue.java 278 * of offer, put, poll, take, or transfer (each possibly with
302 * poll/offer, (argument "how" is NOW) return.
377 * calls to poll repeatedly time out but never otherwise fall off
584 private static final int NOW = 0; // for untimed poll, tryTransfer
587 private static final int TIMED = 3; // for timed poll, tryTransfer
1355 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:LinkedTransferQueue
1362 public E poll() { method in class:LinkedTransferQueue
    [all...]
ScheduledThreadPoolExecutor.java 1100 public RunnableScheduledFuture<?> poll() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
1147 public RunnableScheduledFuture<?> poll(long timeout, TimeUnit unit) method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
    [all...]
SynchronousQueue.java 64 * {@code poll()} will return {@code null}. For purposes of other
432 * SynchronousQueue.{poll/offer} don't check interrupts
936 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:SynchronousQueue
950 public E poll() { method in class:SynchronousQueue
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramChannelImpl.java 80 // fd value needed for dev/poll. This value will remain valid
1150 int poll(int events, long timeout) throws IOException { method in class:DatagramChannelImpl
    [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/exoplayer/buffer/
BufferManager.java 305 private SampleChunk poll(String key, long startPositionUs) { method in class:BufferManager.EvictChunkQueueMap
311 return queue.poll();
463 while ((chunk = mPendingDelete.poll(id, earlierThanPositionUs)) != null) {
  /packages/services/Car/car-usb-handler/src/android/car/usb/handler/
UsbDeviceHandlerResolver.java 512 context.mActiveDeviceOptions.poll();
566 context.mActiveDeviceOptions.poll();
  /tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
ModuleDefinition.java 163 IRemoteTest poll() { method in class:ModuleDefinition
355 IRemoteTest test = poll();
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerInternalMapTest.java     [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalCacheTest.java     [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
kvm.h 74 __u8 poll; member in struct:kvm_pic_state
  /external/kernel-headers/original/uapi/asm-x86/asm/
kvm.h 72 __u8 poll; member in struct:kvm_pic_state
  /hardware/libhardware/include/hardware/
sensors.h 56 #define SENSORS_HARDWARE_POLL "poll"
559 int (*poll)(struct sensors_poll_device_t *dev, member in struct:sensors_poll_device_t
582 * been picked up by poll() should be abandoned so that application
610 int (*poll)(struct sensors_poll_device_t *dev, member in struct:sensors_poll_device_1::__anon48341::__anon48342
  /libcore/jsr166-tests/src/test/java/jsr166/
ArrayBlockingQueueTest.java 147 assertEquals(ints[i], q.poll());
258 assertEquals(ints[i], q.poll());
414 * poll succeeds unless empty
419 assertEquals(i, q.poll());
421 assertNull(q.poll());
425 * timed poll with zero timeout succeeds when non-empty, else times out
430 assertEquals(i, q.poll(0, MILLISECONDS));
432 assertNull(q.poll(0, MILLISECONDS));
437 * timed poll with nonzero timeout succeeds when non-empty, else times out
443 assertEquals(i, q.poll(LONG_DELAY_MS, MILLISECONDS))
    [all...]
ArrayDequeTest.java 369 * poll() succeeds unless empty
374 assertEquals(i, q.poll());
376 assertNull(q.poll());
435 assertEquals(i, q.poll());
463 assertEquals(i, q.poll());
656 assertEquals(i, q.poll());
661 assertEquals(SIZE + i, q.poll());
709 assertEquals(i, q.poll());
714 assertEquals(SIZE + i, q.poll());
ConcurrentLinkedDequeTest.java 99 assertEquals(ints[i], q.poll());
358 assertEquals(ints[i], q.poll());
384 * poll() succeeds unless empty
389 assertEquals(i, q.poll());
391 assertNull(q.poll());
401 assertEquals(i, q.poll());
415 assertEquals(i, q.poll());
584 q.poll();
659 assertSame(o[i], q.poll());
671 assertSame(ints[i], q.poll());
    [all...]
LinkedTransferQueueTest.java 128 assertEquals(ints[i], q.poll());
188 assertEquals(ints[i], q.poll());
248 * poll succeeds unless empty
253 assertEquals(i, (int) q.poll());
255 assertNull(q.poll());
260 * timed poll with zero timeout succeeds when non-empty, else times out
265 assertEquals(i, (int) q.poll(0, MILLISECONDS));
267 assertNull(q.poll(0, MILLISECONDS));
272 * timed poll with nonzero timeout succeeds when non-empty, else times out
278 assertEquals(i, (int) q.poll(LONG_DELAY_MS, MILLISECONDS))
    [all...]
  /libcore/luni/src/main/java/android/system/
Os.java 368 * See <a href="http://man7.org/linux/man-pages/man2/poll.2.html">poll(2)</a>.
374 public static int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { return Libcore.os.poll(fds, timeoutMs); } method in class:Os
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 139 public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { return os.poll(fds, timeoutMs); } method in class:ForwardingOs
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java 789 info = mAdapterInfos.poll();
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 586 fadeAway(mOnTable.poll(), false);
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/setting/usb/
UsbDeviceHandlerResolver.java 569 mActiveDeviceOptions.poll();
597 mActiveDeviceOptions.poll();
708 mActiveDeviceOptions.poll();
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
kvm.h 48 __u8 poll; member in struct:kvm_pic_state
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
kvm.h 48 __u8 poll; member in struct:kvm_pic_state
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 880 public Object poll() {
3160 public ReferenceEntry<K, V> poll() { method in class:MapMakerInternalMap.EvictionQueue
    [all...]

Completed in 1631 milliseconds

1 2 3 4 5 6 7 8 91011>>