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

1 2 3 4 5 6 78 91011>>

  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 125 assertNotNull(q.poll());
ForwardingDequeTest.java 142 forward.poll();
143 assertEquals("[poll]", getCalls());
  /external/python/cpython3/Lib/multiprocessing/
connection.py 253 def poll(self, timeout=0.0): member in class:_ConnectionBase
750 for attr in ('fileno', 'close', 'poll', 'recv_bytes', 'send_bytes'):
889 # poll/select have the advantage of not requiring any extra file
  /external/syslinux/gpxe/src/include/gpxe/
netdevice.h 211 /** Poll for completed and received packets
222 void ( * poll ) ( struct net_device *netdev ); member in struct:net_device_operations
  /external/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/java/com/example/android/tflitecamerademo/
ImageClassifier.java 197 sortedLabels.poll();
203 Map.Entry<String, Float> label = sortedLabels.poll();
  /external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/
TensorFlowMultiBoxDetector.java 265 recognitions.add(pq.poll());
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 175 mHandler.sendMessage(mPendingTasks.poll());
  /frameworks/base/services/core/java/com/android/server/location/
ComprehensiveCountryDetector.java 202 mDebugLogs.poll();
  /frameworks/base/services/usb/java/com/android/server/usb/
UsbMidiDevice.java 182 // last file descriptor returned from nativeOpen() is only used for unblocking Os.poll()
232 // last file descriptor is used only for unblocking Os.poll()
243 Os.poll(mPollFDs, -1 /* infinite timeout */);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ref/
ReferenceQueueTest.java 58 * java.lang.ref.ReferenceQueue#poll()
70 assertNull(rq.poll());
76 assertTrue("Remove failed.", ((Boolean) rq.poll().get())
83 assertEquals("Remove failed.", obj, (rq.poll().get()));
89 assertNull("Remove failed.", rq.poll().get());
94 assertNull(rq.poll());
101 assertNull(rq.poll());
121 assertNull(rq.poll());
148 assertNull(rq.poll());
156 assertNull("Queue should be empty. (poll)", rq.poll())
    [all...]
ReferenceTest.java 94 assertTrue("Not properly enqueued.", rq.poll().get() == obj);
98 && (rq.poll() == null));
106 assertTrue("Not properly enqueued2.", rq.poll().get() == obj);
110 && (rq.poll() == null));
115 assertNull("Not properly enqueued3.", rq.poll().get());
119 && (rq.poll() == null));
140 ref = queue.poll();
250 rq.poll();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractQueueTest.java 87 public E poll() { method in class:AbstractQueueTest
  /libcore/ojluni/src/main/java/sun/nio/ch/
ServerSocketChannelImpl.java 52 // fd value needed for dev/poll. This value will remain valid
313 * Translates native poll revent set into a ready operation set
351 int poll(int events, long timeout) throws IOException { method in class:ServerSocketChannelImpl
363 n = Net.poll(fd, events, timeout);
373 * Translates an interest operation set into a native poll event set
  /packages/services/Telephony/src/com/android/services/telephony/
CdmaConnection.java 269 builder.append(mDtmfQueue.poll());
  /system/core/adb/
sysdeps.h 206 #define poll ___xxx_poll macro
339 #include <poll.h>
607 return TEMP_FAILURE_RETRY(poll(fds, nfds, timeout));
610 #define poll ___xxx_poll
  /external/libcups/cups/
http-support.c 26 # include <poll.h>
44 AvahiSimplePoll *poll; /* Poll state */ member in struct:_http_uribuf_s
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
tcp.h 90 /** Function prototype for tcp poll callback functions. Called periodically as
256 tcp_poll_fn poll; member in struct:tcp_pcb
320 void tcp_poll (struct tcp_pcb *pcb, tcp_poll_fn poll, u8_t interval);
  /external/valgrind/coregrind/
m_libcfile.c 603 SysRes VG_(poll) (struct vki_pollfd *fds, Int nfds, Int timeout) function
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
AmbientBrightnessStatsTracker.java 298 userStats.poll();
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiCecController.java 380 * Poll all remote devices. It sends &lt;Polling Message&gt; to all remote
395 // Extract polling candidates. No need to poll against local devices.
651 mMessageHistory.poll();
  /hardware/libhardware/modules/sensors/
multihal.cpp 36 #include <poll.h>
48 // Used to pause the multihal poll(). Broadcasted by sub-polling tasks if waiting_for_data.
150 // Do blocking poll outside of lock
153 ALOGV("writerTask before poll() - bufferSize = %d", bufferSize);
154 eventsPolled = device->poll(device, buffer, bufferSize);
155 ALOGV("writerTask poll() got %d events.", eventsPolled);
159 ALOGE("ERROR: Fix %s so it does not return error from poll()", device->common.module->name);
197 int poll(sensors_event_t* data, int count);
361 int sensors_poll_context_t::poll(sensors_event_t *data, int maxReads) { function in class:sensors_poll_context_t
362 ALOGV("poll");
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
PriorityQueueTest.java 114 assertEquals(ints[i], q.poll());
129 assertEquals(ints[i], q.poll());
264 assertEquals(new Integer(i), q.poll());
268 * poll succeeds unless empty
273 assertEquals(i, q.poll());
275 assertNull(q.poll());
285 assertEquals(i, q.poll());
299 assertEquals(i, q.poll());
349 q.poll();
425 assertSame(o[i], q.poll());
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 213 @Override public int poll(StructPollfd[] fds, int timeoutMs) throws ErrnoException { method in class:BlockGuardOs
215 // but 0 means "poll and return immediately", which shouldn't be subject to BlockGuard.
219 return os.poll(fds, timeoutMs);
IoBridge.java 158 // 3. loop using poll(2) to decide whether we're connected, whether we should keep
178 // 3. loop using poll(2).
259 int rc = Libcore.os.poll(pollFds, remainingTimeoutMs);
650 * passed. See poll(2) and @link{android.system.Os.Poll}.
652 * @throws SocketException if poll(2) fails.
655 public static void poll(FileDescriptor fd, int events, int timeout) method in class:IoBridge
662 int ret = android.system.Os.poll(pollFds, timeout);
664 throw new SocketTimeoutException("Poll timed out");
  /libcore/ojluni/src/main/java/java/util/
ArrayDeque.java 420 * This method differs from {@link #poll poll} only in that it throws an
442 public E poll() { method in class:ArrayDeque
    [all...]

Completed in 1173 milliseconds

1 2 3 4 5 6 78 91011>>