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

1 23 4 5

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
TestThread.java 146 assertNull(responseQueue.poll());
165 assertNull(responseQueue.poll());
207 Response response = responseQueue.poll(TIMEOUT_MILLIS, TimeUnit.MILLISECONDS);
  /external/python/cpython2/Lib/
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 73 _has_poll = hasattr(select, 'poll')
81 # When select or poll has indicated that the file is writable,
218 retcode = process.poll()
486 def poll(self): member in class:Popen
    [all...]
  /external/python/cpython3/Lib/
asyncore.py 125 def poll(timeout=0.0, map=None): function
165 # Use the poll() support added to the select module in Python 2.0
171 pollster = select.poll()
183 r = pollster.poll(timeout)
196 if use_poll and hasattr(select, 'poll'):
199 poll_fun = poll
subprocess.py 157 # When select or poll has indicated that the file is writable,
162 # poll/select have the advantage of not requiring any extra file
484 retcode = process.poll()
666 # updated to prevent clobbering returncode if wait() or poll() are
963 def poll(self): member in class:Popen
    [all...]
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowImageClassifier.java 179 recognitions.add(pq.poll());
TensorFlowObjectDetectionAPIModel.java 199 recognitions.add(pq.poll());
TensorFlowYoloDetector.java 238 recognitions.add(pq.poll());
TensorFlowMultiBoxDetector.java 265 recognitions.add(pq.poll());
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/
TFLiteImageClassifier.java 191 recognitions.add(pq.poll());
  /external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
OvicClassifier.java 184 sortedLabels.poll();
197 Map.Entry<Integer, Float> label = sortedLabels.poll();
  /external/u-boot/drivers/net/
dnet.c 172 int pkt_len, poll, i; local
176 poll = 50;
179 if (--poll == 0)
  /frameworks/av/services/audioflinger/
FastMixer.cpp 103 const FastThreadState *FastMixer::poll() function in class:android::FastMixer
105 return mSQ.poll();
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 31 #include <sys/poll.h>
734 Poll a list of file descriptors.
736 The ::poll routine waits for up to timeout milliseconds for an event
741 <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/poll.html">POSIX</a>
755 poll ( function
797 // Poll until an event is detected or the timer fires
803 // Poll the list of file descriptors
817 // Poll the device or file
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 125 assertNotNull(q.poll());
ForwardingDequeTest.java 142 forward.poll();
143 assertEquals("[poll]", getCalls());
MinMaxPriorityQueueTest.java 215 removeMinFromReplica(replica, mmHeap.poll());
258 assertEquals(1, (int) mmHeap.poll());
261 assertEquals(2, (int) mmHeap.poll());
264 assertEquals(3, (int) mmHeap.poll());
267 assertNull(mmHeap.poll());
682 assertEquals("Using seed " + seed, control.poll(), q.pollFirst());
686 assertEquals("Using seed " + seed, control.poll(), q.pollFirst());
703 assertEquals(next, q.poll());
735 assertEquals(next, q.poll());
  /external/python/cpython3/Lib/multiprocessing/
connection.py 253 def poll(self, timeout=0.0): member in class:_ConnectionBase
759 for attr in ('fileno', 'close', 'poll', 'recv_bytes', 'send_bytes'):
898 # poll/select have the advantage of not requiring any extra file
  /external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
ManagedChannelImplIdlenessTest.java 267 MockClientTransportInfo t0 = newTransports.poll();
307 MockClientTransportInfo t0 = newTransports.poll();
313 MockClientTransportInfo t1 = newTransports.poll();
327 MockClientTransportInfo t0 = newTransports.poll();
335 assertNull(newTransports.poll());
376 MockClientTransportInfo oobTransportInfo = newTransports.poll();
397 MockClientTransportInfo t0 = newTransports.poll();
403 MockClientTransportInfo t1 = newTransports.poll();
417 MockClientTransportInfo t0 = newTransports.poll();
425 assertNull(newTransports.poll());
    [all...]
  /external/libcups/cups/
http-support.c 26 # include <poll.h>
44 AvahiSimplePoll *poll; /* Poll state */ member in struct:_http_uribuf_s
    [all...]
  /external/tensorflow/tensorflow/lite/java/demo/app/src/main/java/com/example/android/tflitecamerademo/
ImageClassifier.java 251 sortedLabels.poll();
257 Map.Entry<String, Float> label = sortedLabels.poll();
  /external/u-boot/tools/
moveconfig.py 1100 def poll(self): member in class:Slot
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java 269 bindingPath.poll();
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 50 * #poll()} and {@link #remove()} -- is defined as the <i>least</i> element in
76 * all the forms of {@link #poll} and {@link #remove()}) run in {@code
284 @Override public E poll() { method in class:MinMaxPriorityQueue
318 return poll();
771 lastFromForgetMeNot = forgetMeNot.poll();
  /external/libpcap/
pcap-dag.c 751 struct timeval poll; local
807 /* Set up default poll parameters for stream
811 &mindata, &maxwait, &poll) < 0) {
817 /* Use the poll time as the required select timeout for callers
821 pd->required_select_timeout = poll;
855 mindata, &maxwait, &poll) < 0) {
947 * "select()" and "poll()" don't work on DAG device descriptors.
1202 struct timeval poll; local
1214 &mindata, &maxwait, &poll) < 0) {
    [all...]

Completed in 1104 milliseconds

1 23 4 5