Searched refs:poll (Results 126 - 150 of 335) sorted by path

1234567891011>>

/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js214 d.poll = new Delayed();
2197 cm.display.poll.set(cm.options.pollInterval, function() {
2204 // something in the input textarea, we poll faster, to ensure that
2211 if (!changed && !missed) {missed = true; cm.display.poll.set(60, p);}
2214 cm.display.poll.set(20, p);
2401 // structures. Here we poll to unregister it when the editor is no
3184 var i = 0, poll = function() {
3187 else if (i++ < 10) detectingSelectAll = setTimeout(poll, 500);
3190 detectingSelectAll = setTimeout(poll, 200);
/external/chromium_org/third_party/skia/src/core/
H A DSkMessageBus.h28 void poll(SkTDArray<Message>* out);
87 void SkMessageBus<Message>::Inbox::poll(SkTDArray<Message>* messages) { function in class:SkMessageBus::Inbox
/external/chromium_org/third_party/skia/src/gpu/
H A DGrLayerCache.cpp422 fPictDeletionInbox.poll(&deletedPictures);
H A DGrResourceCache.cpp359 fInvalidationInbox.poll(&invalidated);
/external/chromium_org/third_party/skia/tests/
H A DMessageBusTest.cpp29 inbox1.poll(&messages);
37 inbox1.poll(&messages);
42 inbox1.poll(&messages);
46 inbox2.poll(&messages);
/external/chromium_org/third_party/skia/tools/
H A Dmerge_static_libs.py39 if proc.poll() == 0:
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-table.cc51 #include <poll.h>
H A Dsymbolize.cc49 #include <poll.h>
198 poll(0, 0, 1);
201 // SIGPIPE.) For systems without poll.h, we'll just skip this
204 if (!poll(&pfd, 1, 0) || !(pfd.revents & POLLOUT) ||
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker_unittest.cc62 #include <poll.h>
262 poll(NULL, 0, 77); // time for thread activity in HeapBusyThreadBody
928 poll(NULL, 0, random() % 100);
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dport.h402 /* 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/
H A Dconfigure15206 for ac_header in poll.h
15208 ac_fn_c_check_header_mongrel "$LINENO" "poll.h" "ac_cv_header_poll_h" "$ac_includes_default"
H A Dconfigure.ac146 AC_CHECK_HEADERS(poll.h) # optional; for forking out to symbolizer
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-profile-table.cc51 #include <poll.h>
H A Dsymbolize.cc49 #include <poll.h>
203 poll(0, 0, 1);
206 // SIGPIPE.) For systems without poll.h, we'll just skip this
209 if (!poll(&pfd, 1, 0) || !(pfd.revents & POLLOUT) ||
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker_unittest.cc62 #include <poll.h>
262 poll(NULL, 0, 77); // time for thread activity in HeapBusyThreadBody
928 poll(NULL, 0, random() % 100);
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dport.h399 /* Handle case when poll is used to simulate sleep. */
400 inline int poll(struct pollfd* fds, int nfds, int timeout) { function
/external/chromium_org/third_party/webrtc/tools/loopback_test/
H A Dstat_tracker.js62 function poll() {
65 setTimeout(poll, pollInterval);
75 setTimeout(poll, pollInterval);
/external/chromium_org/tools/accessibility/nvda/
H A Dnvda_chrome_tests.py83 self._chrome_proc.poll()
100 self._nvda_proc.poll()
121 self._chrome_proc.poll()
128 self._nvda_proc.poll()
/external/chromium_org/tools/flakiness/
H A Dfind_flakiness.py63 if proc.poll() is not None:
107 if proc.poll() is not None:
131 if proc.poll() is not None:
/external/chromium_org/tools/gyp/test/lib/
H A DTestGyp.py585 while proc.poll() is None and not timed_out:
/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/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Ddesktop_browser_backend.py217 return self._proc and self._proc.poll() == None
/external/chromium_org/tools/telemetry/telemetry/core/backends/remote/
H A Dtrybot_browser_finder.py53 returncode = proc.poll()
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dlocal_server.py90 while self._subprocess.poll() == None:
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 1166 milliseconds

1234567891011>>