Searched refs:poll (Results 76 - 100 of 335) sorted by relevance

1234567891011>>

/external/chromium_org/tools/
H A Dnocompile_driver.py330 if proc.poll() == 0:
337 elif proc.poll() == 0:
368 and output. If no tests can be removed, it will enter a poll-loop until one
395 if proc.poll() is not None:
/external/valgrind/main/auxprogs/
H A Dvalgrind-listener.c52 #include <sys/poll.h>
302 /* enquire, using poll, whether there is any activity available on
310 res = poll(&ufd, 1, 0);
355 res = poll(conn_pollfd, j, 0 /* return immediately. */ );
357 perror("poll(main) failed");
358 panic("poll(main) failed");
/external/tcpdump/
H A Dprint-pgm.c289 struct pgm_poll *poll; local
291 poll = (struct pgm_poll *)(pgm + 1);
292 TCHECK(*poll);
294 EXTRACT_32BITS(&poll->pgmp_seq),
295 EXTRACT_16BITS(&poll->pgmp_round));
296 bp = (u_char *) (poll + 1);
/external/bluetooth/bluedroid/udrv/ulinux/
H A Duipc.c41 #include <sys/poll.h>
185 if (poll(&pfd, 1, 0) == 0)
187 BTIF_TRACE_EVENT("accept poll timeout");
191 //BTIF_TRACE_EVENT("poll revents 0x%x", pfd.revents);
393 ret = poll(&pfd, 1, 1);
780 a read for more than poll timeout */
781 if (poll(&pfd, 1, uipc_main.ch[ch_id].read_poll_tmo_ms) == 0)
783 BTIF_TRACE_EVENT("poll timeout (%d ms)", uipc_main.ch[ch_id].read_poll_tmo_ms);
787 //BTIF_TRACE_EVENT("poll revents %x", pfd.revents);
791 BTIF_TRACE_EVENT("poll
[all...]
/external/chromium-trace/
H A Dupdate.py28 while p.poll() is None:
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwContentsRenderTest.java59 poll(new Callable<Boolean>() {
/external/chromium_org/build/android/
H A Dadb_logcat_monitor.py11 This script will repeatedly poll adb for new devices and save logcats
46 if process.poll() is None:
/external/chromium_org/content/public/android/java/src/org/chromium/content/common/
H A DCleanupReference.java106 while ((ref = (CleanupReference) sGcQueue.poll()) != null) {
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dfuse.h239 int (*poll)(const char*, member in struct:fuse_operations
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dmock_kernel_proxy.h73 MOCK_METHOD3(poll, int(struct pollfd*, nfds_t, int));
/external/chromium_org/testing/
H A Dxvfb.py108 rc = xvfb_proc.poll()
/external/chromium_org/v8/tools/testrunner/local/
H A Dcommands.py101 exit_code = process.poll()
/external/glide/library/src/main/java/com/bumptech/glide/load/model/
H A DModelCache.java25 ModelKey<A> modelKey = KEY_QUEUE.poll();
/external/guava/guava/src/com/google/common/base/internal/
H A DFinalizer.java65 * @return ReferenceQueue which Finalizer will poll
163 } while ((reference = queue.poll()) != null);
/external/javassist/src/main/javassist/scopedpool/
H A DSoftValueHashMap.java71 while ((ref = (SoftValueRef)queue.poll()) != null) {
/external/smack/src/org/jivesoftware/smack/
H A DPacketWriter.java148 while (!done && (packet = queue.poll()) == null) {
/external/valgrind/main/include/
H A Dpub_tool_libcfile.h92 extern SysRes VG_(poll) (struct vki_pollfd *fds, Int nfds, Int timeout);
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java328 while ((key = (WeakKey) queue.poll()) != null) {
341 WeakKey key = (WeakKey) queue.poll();
/external/chromium_org/build/android/pylib/utils/
H A Demulator.py411 self.popen.poll()
429 self.popen.poll()
/external/chromium_org/mojo/embedder/
H A Dplatform_channel_pair_posix_unittest.cc8 #include <poll.h>
39 CHECK_EQ(poll(&pfds, 1, -1), 1);
/external/chromium_org/sandbox/linux/tests/
H A Dunit_tests.cc6 #include <poll.h>
135 // We poll /proc, with an exponential back-off. At most, we'll sleep around
187 // Make sure read() will never block as we'll use poll() to
197 while ((poll_ret = poll(&poll_fd, 1, poll_timeout) > 0)) {
206 ASSERT_NE(poll_ret, -1) << "poll() failed";
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dlinux_netlink.c32 #include <poll.h>
317 while (poll(fds, 2, -1) >= 0) {
H A Dlinux_udev.c30 #include <poll.h>
175 while (poll(fds, 2, -1) >= 0) {
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A D_aix.h44 * To pick up fd_set and the poll events.
47 #include <sys/poll.h>
246 #define _MD_POLL poll
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dwebpagereplay.py159 if self.replay_process.poll() is not None:
227 util.WaitFor(lambda: self.replay_process.poll() is not None, 10)

Completed in 3589 milliseconds

1234567891011>>