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

1 2 3 4 56 7 8 91011>>

  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/go/darwin-x86/src/internal/poll/
fd_poll_runtime.go 7 package poll package
  /prebuilts/go/linux-x86/src/internal/poll/
fd_poll_runtime.go 7 package poll package
  /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
  /system/netd/server/
TcpSocketMonitor.cpp 107 dw.println("running=%d, suspended=%d, last poll %lld ms ago",
189 void TcpSocketMonitor::poll() { function in class:android::net::TcpSocketMonitor
216 ALOGE("Failed to poll TCP socket info: %s", strerror(-ret));
326 poll();
  /tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
TestsPoolPoller.java 91 IRemoteTest poll() { method in class:TestsPoolPoller
111 IRemoteTest test = poll();
  /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());
SynchronizedDequeTest.java 50 public E poll() { method in class:SynchronizedDequeTest.TestDeque
52 return delegate.poll();
261 create().poll();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PriorityQueueTest.java 137 assertEquals(newArray[i], integerQueue.poll());
278 assertEquals(array[i], integerQueue.poll());
327 assertEquals(queue.poll(), constructedQueue.poll());
346 assertEquals(iter.next(), queue.poll());
367 assertEquals(array[i], objectQueue.poll());
396 assertEquals(iter.next(), queue.poll());
424 assertEquals(sortedArray[i], queue.poll());
427 assertNull(queue.poll());
467 * java.util.PriorityQueue#poll()
    [all...]
  /device/google/contexthub/sensorhal/
sensors.cpp 57 device.poll = PollWrapper;
102 int SensorContext::poll(sensors_event_t *data, int count) { function in class:SensorContext
103 ALOGV("poll");
174 return reinterpret_cast<SensorContext *>(dev)->poll(data, count);
  /device/google/marlin/dataservices/datatop/src/
datatop_interface.h 101 * Value of the dp at the most recent poll.
125 * @var dtop_data_point_gatherer::poll
126 * Poll function takes a dtop_data_point_gatherer as parameter.
127 * int equals, DTOP_POLL_IO_ERR - Poll of dpg unsuccessful, or
128 * DTOP_POLL_OK - Poll of dpg successful.
137 int (*poll)(struct dtop_data_point_gatherer *dpg); member in struct:dtop_data_point_gatherer
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
asyncore.py 125 def poll(timeout=0.0, map=None): function
170 # Use the poll() support added to the select module in Python 2.0
176 pollster = select.poll()
190 r = pollster.poll(timeout)
207 if use_poll and hasattr(select, 'poll'):
210 poll_fun = poll
  /external/autotest/scheduler/
agent_task.py 33 task poll
44 -poll: The first poll will start the task, polls thereafter will call the tasks
60 - tick: For as long as a started tasks done bit is not set, a poll will lead
191 def poll(self): member in class:AgentTask
  /external/chromium-trace/catapult/common/battor/battor/
battor_wrapper_unittest.py 37 def poll(self): member in class:PopenMock
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBasedArrayBlockingQueue.java 70 /** items index for next take, poll or remove */
305 public E poll() { method in class:MonitorBasedArrayBlockingQueue
330 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:MonitorBasedArrayBlockingQueue
MonitorBasedPriorityBlockingQueue.java 237 public E poll() { method in class:MonitorBasedPriorityBlockingQueue
241 return q.poll();
252 return q.poll();
259 public E poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:MonitorBasedPriorityBlockingQueue
263 return q.poll();
405 while ( (e = q.poll()) != null) {
434 while (n < maxElements && (e = q.poll()) != null) {
  /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')
77 # When select or poll has indicated that the file is writable,
214 retcode = process.poll()
482 def poll(self): member in class:Popen
724 and self.poll() is not None):
    [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 144 # When select or poll has indicated that the file is writable,
149 # poll/select have the advantage of not requiring any extra file
415 retcode = process.poll()
596 # updated to prevent clobbering returncode if wait() or poll() are
780 if e.errno == errno.EINVAL and self.poll() is not None:
791 if e.errno == errno.EINVAL and self.poll() is not None:
845 def poll(self): member in class:Popen
    [all...]
  /external/syslinux/gpxe/src/include/
nic.h 54 int ( *poll ) ( struct nic *, int retrieve ); member in struct:nic_operations
63 return nic.nic_op->poll ( &nic, retrieve );
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowImageClassifier.java 179 recognitions.add(pq.poll());

Completed in 810 milliseconds

1 2 3 4 56 7 8 91011>>