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

1 2 3 4 56 7 8 9

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
asyncore.py 125 def poll(timeout=0.0, map=None): function
171 # Use the poll() support added to the select module in Python 2.0
177 pollster = select.poll()
192 r = pollster.poll(timeout)
209 if use_poll and hasattr(select, 'poll'):
212 poll_fun = poll
subprocess.py 171 poll()
430 _has_poll = hasattr(select, 'poll')
434 # When select or poll has indicated that the file is writable,
570 retcode = process.poll()
809 def poll(self): member in class:Popen
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
asyncore.py 125 def poll(timeout=0.0, map=None): function
171 # Use the poll() support added to the select module in Python 2.0
177 pollster = select.poll()
192 r = pollster.poll(timeout)
209 if use_poll and hasattr(select, 'poll'):
212 poll_fun = poll
subprocess.py 171 poll()
430 _has_poll = hasattr(select, 'poll')
434 # When select or poll has indicated that the file is writable,
570 retcode = process.poll()
809 def poll(self): member in class:Popen
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.updatechecker_1.1.101.R36x_v20100823.jar 
  /external/chromium/chrome/browser/sync/engine/
syncer_thread.cc 93 // will drop out of *all* forward progress sync loops (it won't poll and it
160 AdjustPolling(NULL); // Will kick start poll timer if needed.
180 if (job.purpose == SyncSessionJob::POLL)
518 case SyncSessionJob::POLL:
660 // For all other purposes(nudge and poll) we schedule a retry nudge.
672 TimeDelta poll = (!session_context_->notifications_enabled()) ? local
676 poll != poll_timer_.GetCurrentDelay();
678 if (old_job && old_job->purpose != SyncSessionJob::POLL && !rate_changed)
684 // Adjust poll rate.
686 poll_timer_.Start(poll, this, &SyncerThread::PollTimerCallback)
    [all...]
  /external/tcpdump/
print-pgm.c 100 PGM_POLL = 1, /* POLL Request */
101 PGM_POLR = 2, /* POLL Response */
283 struct pgm_poll *poll; local
285 poll = (struct pgm_poll *)(pgm + 1);
286 TCHECK(*poll);
287 (void)printf("POLL seq %u round %u",
288 EXTRACT_32BITS(&poll->pgmp_seq),
289 EXTRACT_16BITS(&poll->pgmp_round));
290 bp = (u_char *) (poll + 1);
  /external/valgrind/main/coregrind/
m_libcfile.c 459 Int VG_(poll) (struct vki_pollfd *fds, Int nfds, Int timeout) function
    [all...]
  /libcore/luni/src/main/java/java/util/
LinkedList.java 894 public E poll() { method in class:LinkedList
  /libcore/luni/src/main/java/java/util/concurrent/
LinkedBlockingDeque.java 632 * This method differs from {@link #poll poll} only in that it throws an
644 public E poll() { method in class:LinkedBlockingDeque
652 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:LinkedBlockingDeque
    [all...]
LinkedBlockingQueue.java 122 /** Lock held by take, poll, etc */
149 * Signals a waiting put. Called only from take/poll.
424 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:LinkedBlockingQueue
449 public E poll() { method in class:LinkedBlockingQueue
PriorityBlockingQueue.java 281 * Mechanics for poll(). Call only while holding lock.
494 public E poll() { method in class:PriorityBlockingQueue
517 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:PriorityBlockingQueue
ArrayBlockingQueue.java 65 /** items index for next take, poll, peek or remove */
358 public E poll() { method in class:ArrayBlockingQueue
380 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:ArrayBlockingQueue
    [all...]
ConcurrentLinkedDeque.java 163 * When a node is dequeued at either end, e.g. via poll(), we would
999 public E poll() { return pollFirst(); } method in class:ConcurrentLinkedDeque
    [all...]
LinkedTransferQueue.java 247 * of offer, put, poll, take, or transfer (each possibly with
271 * poll/offer, (argument "how" is NOW) return.
346 * calls to poll repeatedly time out but never otherwise fall off
555 private static final int NOW = 0; // for untimed poll, tryTransfer
558 private static final int TIMED = 3; // for timed poll, tryTransfer
1115 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:LinkedTransferQueue
1122 public E poll() { method in class:LinkedTransferQueue
    [all...]
ScheduledThreadPoolExecutor.java 818 * poll(...), unless some other thread becomes leader in the
1029 public RunnableScheduledFuture<?> poll() { method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
1077 public RunnableScheduledFuture<?> poll(long timeout, TimeUnit unit) method in class:ScheduledThreadPoolExecutor.DelayedWorkQueue
    [all...]
SynchronousQueue.java 29 * {@code poll()} will return {@code null}. For purposes of other
401 * SynchronousQueue.{poll/offer} don't check interrupts
909 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:SynchronousQueue
923 public E poll() { method in class:SynchronousQueue
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Os.java 93 public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException; method in interface:Os
Posix.java 94 public native int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException; method in class:Posix
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PicasaSource.java 460 mRecycleBin.poll();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayDequeTest.java 450 * @tests {@link java.util.ArrayDeque#poll()}
457 assertEquals(testObjOne, testQue.poll());
459 assertEquals(testObjTwo, testQue.poll());
460 assertEquals(testObjThree, testQue.poll());
462 assertNull(testQue.poll());
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_proxy.cc 11 #include <poll.h>
916 // Raise an event so that select/poll get interrupted.
1051 int result = poll(&pollfds[0], pollfds.size(), ms_timeout);
1084 int KernelProxy::poll(struct pollfd *fds, nfds_t nfds, int timeout) { function in class:nacl_io::KernelProxy
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 49 * #poll()} and {@link #remove()} -- is defined as the <i>least</i> element in
75 * all the forms of {@link #poll} and {@link #remove()}) run in {@code
283 @Override public E poll() { method in class:MinMaxPriorityQueue
317 return poll();
771 lastFromForgetMeNot = forgetMeNot.poll();
  /external/guava/guava-tests/test/com/google/common/collect/
MinMaxPriorityQueueTest.java 214 removeMinFromReplica(replica, mmHeap.poll());
257 assertEquals(1, (int) mmHeap.poll());
260 assertEquals(2, (int) mmHeap.poll());
263 assertEquals(3, (int) mmHeap.poll());
266 assertNull(mmHeap.poll());
671 assertEquals("Using seed " + seed, control.poll(), q.pollFirst());
675 assertEquals("Using seed " + seed, control.poll(), q.pollFirst());
704 assertEquals(next, q.poll());
  /hardware/libhardware/include/hardware/
sensors.h 45 #define SENSORS_HARDWARE_POLL "poll"
977 int (*poll)(struct sensors_poll_device_t *dev, member in struct:sensors_poll_device_t
1059 int (*poll)(struct sensors_poll_device_t *dev, member in struct:sensors_poll_device_1::__anon31173::__anon31174
    [all...]

Completed in 472 milliseconds

1 2 3 4 56 7 8 9