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

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowObjectDetectionAPIModel.java 199 recognitions.add(pq.poll());
TensorFlowYoloDetector.java 238 recognitions.add(pq.poll());
  /frameworks/av/services/audioflinger/
FastMixer.cpp 99 const FastThreadState *FastMixer::poll() function in class:android::FastMixer
101 return mSQ.poll();
  /frameworks/base/core/java/com/android/internal/os/
ZygoteServer.java 188 Os.poll(pollFds, -1);
190 throw new RuntimeException("poll failed", ex);
  /frameworks/native/services/sensorservice/
SensorDevice.cpp 102 // system server, it will kill itself. There is no intention to handle the poll result,
104 if(mSensors->poll(0, [](auto, const auto &, const auto &) {}).isOk()) {
118 // not need to check mSensors because this is is only called after successful poll()
173 ssize_t SensorDevice::poll(sensors_event_t* buffer, size_t count) { function in class:android::SensorDevice
181 auto ret = mSensors->poll(
  /frameworks/opt/bitmap/src/com/android/bitmap/
ContiguousFIFOAggregator.java 208 mExpected.poll();
UnrefedPooledCache.java 31 * its cache, and instead {@link #poll()} is allowed to return unreferenced cache
121 public V poll() { method in class:UnrefedPooledCache
122 Trace.beginSection("pool poll");
123 final V pooled = mPool.poll();
  /libcore/jsr166-tests/src/test/java/jsr166/
SynchronousQueueTest.java 215 * poll return null if no active putter
221 assertNull(q.poll());
225 * timed poll with zero timeout times out if no active putter
231 try { assertNull(q.poll(0, MILLISECONDS)); }
236 * timed poll with nonzero timeout times out if no active putter
243 try { assertNull(q.poll(timeoutMillis(), MILLISECONDS)); }
249 * timed poll before a delayed offer times out, returning null;
261 assertNull(q.poll(timeoutMillis(), MILLISECONDS));
266 assertSame(zero, q.poll(LONG_DELAY_MS, MILLISECONDS));
270 q.poll(LONG_DELAY_MS, MILLISECONDS)
    [all...]
  /libcore/ojluni/src/main/java/java/net/
PlainDatagramSocketImpl.java 150 IoBridge.poll(fd, POLLIN | POLLERR, timeout);
PlainSocketImpl.java 186 // poll() with a timeout of 0 means "poll for zero millis", but a Socket timeout == 0 means
187 // "wait forever". When timeout == 0 we pass -1 to poll.
189 IoBridge.poll(fd, POLLIN | POLLERR, -1);
191 IoBridge.poll(fd, POLLIN | POLLERR, timeout);
  /libcore/ojluni/src/main/java/sun/nio/ch/
EPollPort.java 42 // maximum number of events to poll at a time
60 // address of the poll array passed to epoll_wait
103 // allocate the poll array
187 * event is used to signal one consumer to re-poll when all events have
191 private Event poll() throws IOException { method in class:EPollPort.EventHandlerTask
242 // to ensure that some thread will poll when all events have
265 // poll for more.
268 ev = poll();
  /packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ticketpool/
ReservableTicketPool.java 366 mTicketWaiters.poll();
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/go/darwin-x86/src/internal/poll/
fd_windows.go 5 package poll package
  /prebuilts/go/linux-x86/src/internal/poll/
fd_windows.go 5 package poll package
  /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...]
  /system/core/liblog/
logger.h 77 int (*poll)(struct android_log_logger_list* logger_list, member in struct:android_log_transport_read
  /tools/tradefederation/core/src/com/android/tradefed/util/
ConditionPriorityBlockingQueue.java 123 public T poll() { method in class:ConditionPriorityBlockingQueue
124 return poll(new AlwaysMatch<T>());
134 public T poll(IMatcher<T> matcher) { method in class:ConditionPriorityBlockingQueue
165 public T poll(long timeout, TimeUnit unit) throws InterruptedException { method in class:ConditionPriorityBlockingQueue
166 return poll(timeout, unit, new AlwaysMatch<T>());
180 public T poll(long timeout, TimeUnit unit, IMatcher<T> matcher) throws InterruptedException { method in class:ConditionPriorityBlockingQueue
207 while ((matchedObj = poll(matcher)) == null && (nanos == null || nanos > 0)) {
392 T removedObj = poll(matcher);
  /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...]

Completed in 1121 milliseconds

1 2 3 4 5 67 8 91011>>