HomeSort by relevance Sort by last modified time
    Searched defs:poll (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
poll.c 10 int poll(struct pollfd *fds, nfds_t nfds, int timeout) { function
  /development/ndk/sources/android/libportable/arch-mips/
poll.c 18 #include <poll.h>
22 *_XOPEN_SOURCE added the ability to not only poll for data coming in or out
23 * but now also the ability to poll for high priority input and output. Though
33 * The DECNet Protocol can set the poll in priority flag, POLLRDBAND.
34 * ATM as well as a whole bunch of other protocols can set the poll out priority flag,
37 * MIPS and SPARC likely assigned the new XOPEN poll out event flags in UNIX well before
48 * Only the Priority poll out flag can be mapped back to portable because MIPS
69 * in DECNet. Also, the poll system call and device poll
107 extern int poll(struct pollfd *, nfds_t, int)
109 int WRAP(poll)(struct pollfd *fds, nfds_t nfds, int timeout) function
    [all...]
  /bionic/libc/bionic/
poll.cpp 29 #include <sys/poll.h>
38 int poll(pollfd* fds, nfds_t fd_count, int ms) { function
  /external/chromium_org/third_party/skia/src/core/
SkMessageBus.h 28 void poll(SkTDArray<Message>* out);
87 void SkMessageBus<Message>::Inbox::poll(SkTDArray<Message>* messages) { function in class:SkMessageBus::Inbox
  /external/chromium_org/third_party/webrtc/tools/loopback_test/
stat_tracker.js 62 function poll() {
65 setTimeout(poll, pollInterval);
75 setTimeout(poll, pollInterval);
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 60 public E poll() { method in class:ForwardingQueue
61 return delegate().poll();
110 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
111 * override {@link #remove}, you may wish to override {@link #poll} to forward
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingBlockingQueue.java 58 @Override public E poll(long timeout, TimeUnit unit) method in class:ForwardingBlockingQueue
60 return delegate().poll(timeout, unit);
  /cts/suite/cts/deviceTests/opengl/
cob_exporter.py 58 def poll(cls, context): member in class:COBExporter
  /external/deqp/execserver/
xsTestDriver.cpp 84 bool TestDriver::poll (ByteBuffer& messageBuffer) function in class:xs::TestDriver
117 // Poll log file and info buffer.
142 // Poll log file and info buffer.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
executive_mock.py 49 def poll(self): member in class:MockProcess
  /art/test/114-ParallelGC/src/
Main.java 119 Boolean receivedB = waitOn.poll(TIMEOUT_VALUE, TimeUnit.MINUTES);
137 checkTimeout(waitOn.poll(TIMEOUT_VALUE, TimeUnit.MINUTES));
  /development/ndk/platforms/android-3/include/linux/
ipmi_smi.h 55 void (*poll)(void *send_info); member in struct:ipmi_smi_handlers
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
GeolocationTest.java 95 poll(new Callable<Boolean>() { method
115 poll(new Callable<Boolean>() { method
123 poll(new Callable<Boolean>() { method
142 poll(new Callable<Boolean>() { method
159 poll(new Callable<Boolean>() { method
193 poll(new Callable<Boolean>() { method
230 poll(new Callable<Boolean>() { method
MediaAccessPermissionRequestTest.java 119 poll(new Callable<Boolean>() { method
AwLegacyQuirksTest.java 205 poll(new Callable<Boolean>() { method
347 poll(new Callable<Boolean>() { method
AwQuotaManagerBridgeTest.java 169 poll(new Callable<Boolean>() { method
177 poll(new Callable<Boolean>() { method
191 poll(new Callable<Boolean>() { method
199 poll(new Callable<Boolean>() { method
212 poll(new Callable<Boolean>() { method
AwContentsClientFaviconTest.java 144 poll(new Callable<Boolean>() { method
LoadDataWithBaseUrlTest.java 287 poll(new Callable<Boolean>() { method
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_unittest.py 76 def poll(self): member in class:MockProc
103 self.assertEqual(proc.poll(), None)
server_process.py 166 def poll(self): member in class:ServerProcess
168 if it still is (wrapper around subprocess.poll)."""
170 return self._proc.poll()
286 if not data and not stopping and (self._treat_no_data_as_crash or self._proc.poll()):
293 if not data and not stopping and (self._treat_no_data_as_crash or self._proc.poll()):
309 while (self._proc.poll() is None) and (now < deadline):
336 if not self._crashed and self.poll():
343 # It might be cleaner to pass in the file descriptor to poll instead.
379 while self._proc.poll() is None and time.time() < deadline:
381 if self._proc.poll() is None
    [all...]
  /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());
QueuesTest.java 125 assertNotNull(q.poll());
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
fuse.h 239 int (*poll)(const char*, member in struct:fuse_operations
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 402 /* Handle case when poll is used to simulate sleep. */
403 inline int poll(struct pollfd* fds, int nfds, int timeout) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 399 /* Handle case when poll is used to simulate sleep. */
400 inline int poll(struct pollfd* fds, int nfds, int timeout) { function

Completed in 954 milliseconds

1 2 3