HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 1 - 25 of 1184) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2003-11-04-OutOfMemory.c 3 void schedule_timeout(signed long timeout)
5 switch (timeout)
  /cts/libs/deviceutil/src/android/cts/util/
PollingCheck.java 30 public PollingCheck(long timeout) {
31 mTimeout = timeout;
41 long timeout = mTimeout; local
42 while (timeout > 0) {
53 timeout -= TIME_SLICE;
56 Assert.fail("unexpected timeout");
59 public static void check(CharSequence message, long timeout, Callable<Boolean> condition)
61 while (timeout > 0) {
67 timeout -= TIME_SLICE;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
poll.c 10 int poll(struct pollfd *fds, nfds_t nfds, int timeout) {
11 return ki_poll(fds, nfds, timeout);
select.c 9 fd_set* exceptfds, struct timeval* timeout) {
10 return ki_select(nfds, readfds, writefds, exceptfds, timeout);
  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 4 private Timeout mTimeout;
7 Timeout timeout) {
9 mTimeout = timeout;
13 Timeout timeout) {
15 mTimeout = timeout;
18 public Timeout getTimeout() {
  /external/chromium_org/third_party/webrtc/base/
gunit.h 22 // Wait until "ex" is true, or "timeout" expires.
23 #define WAIT(ex, timeout) \
25 !(ex) && rtc::Time() < start + timeout;) \
31 #define WAIT_(ex, timeout, res) \
35 while (!res && rtc::Time() < start + timeout) { \
41 // The typical EXPECT_XXXX and ASSERT_XXXXs, but done until true or a timeout.
42 #define EXPECT_TRUE_WAIT(ex, timeout) \
45 WAIT_(ex, timeout, res); \
49 #define EXPECT_EQ_WAIT(v1, v2, timeout) \
52 WAIT_(v1 == v2, timeout, res);
    [all...]
  /external/chromium_org/net/socket/
client_socket_pool.cc 13 // TODO(ziadh): Change this timeout after getting histogram data on how long it
30 void ClientSocketPool::set_unused_idle_socket_timeout(base::TimeDelta timeout) {
31 DCHECK_GT(timeout.InSeconds(), 0);
32 g_unused_idle_socket_timeout_s = timeout.InSeconds();
41 void ClientSocketPool::set_used_idle_socket_timeout(base::TimeDelta timeout) {
42 DCHECK_GT(timeout.InSeconds(), 0);
43 g_used_idle_socket_timeout_s = timeout.InSeconds();
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
KeepAliveHttpsTransportSE.java 30 private final int timeout; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) {
34 super(host, port, file, timeout);
38 this.timeout = timeout;
52 file, timeout);
HttpsServiceConnectionSEIgnoringConnectionClose.java 9 int timeout)
11 super(host, port, file, timeout);
  /bionic/libc/bionic/
epoll_wait.cpp 31 int epoll_wait(int fd, struct epoll_event* events, int max_events, int timeout) {
32 return epoll_pwait(fd, events, max_events, timeout, NULL);
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpServerSocket.java 34 private int timeout = 8000; field in class:Support_HttpServerSocket
48 instance.setSoTimeout(timeout);
55 * timeout for the server.
57 public void setTimeout(int timeout) {
58 this.timeout = timeout;
  /external/chromium_org/tools/telemetry/telemetry/core/
web_contents.py 29 timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
31 'document.readyState == "complete"', timeout)
34 timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
37 'document.readyState == "complete"', timeout)
39 def WaitForJavaScriptExpression(self, expr, timeout):
48 # If the main thread is busy for longer than Evaluate's timeout, we
50 # timeout of this method.
53 util.WaitFor(IsJavaScriptExpressionTrue, timeout)
96 def ExecuteJavaScript(self, statement, timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
102 statement, context_id=None, timeout=timeout
    [all...]
  /external/chromium_org/build/android/pylib/device/
adb_wrapper.py 50 def _RunAdbCmd(cls, arg_list, timeout=None, retries=None, check_error=True):
65 def _DeviceAdbCmd(self, arg_list, timeout, retries, check_error=True):
70 timeout: Timeout in seconds.
79 ['-s', self._device_serial] + arg_list, timeout=timeout,
106 def GetDevices(cls, timeout=_DEFAULT_TIMEOUT, retries=_DEFAULT_RETRIES):
110 timeout: (optional) Timeout per try in seconds.
116 output = cls._RunAdbCmd(['devices'], timeout=timeout, retries=retries
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
ChromeClient.java 40 public synchronized ConsoleMessage.MessageLevel getMessageLevel(int timeout) {
41 for(; timeout > 0; timeout -= 1000) {
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowTimers.cpp 43 int setTimeout(EventTarget& eventTarget, PassOwnPtr<ScheduledAction> action, int timeout)
45 return DOMTimer::install(eventTarget.executionContext(), action, timeout, true);
48 int setInterval(EventTarget& eventTarget, PassOwnPtr<ScheduledAction> action, int timeout)
50 return DOMTimer::install(eventTarget.executionContext(), action, timeout, false);
DOMWindowTimers.h 44 int setTimeout(EventTarget&, PassOwnPtr<ScheduledAction>, int timeout);
45 int setInterval(EventTarget&, PassOwnPtr<ScheduledAction>, int timeout);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_input.py 34 def __init__(self, test_name, timeout=None, requires_lock=None, reference_files=None, should_run_pixel_tests=None, should_add_missing_baselines=True):
39 self.timeout = timeout # in msecs; should rename this for consistency
46 return "TestInput('%s', timeout=%s, requires_lock=%s, reference_files=%s, should_run_pixel_tests=%s, should_add_missing_baselines%s)" % (self.test_name, self.timeout, self.requires_lock, self.reference_files, self.should_run_pixel_tests, self.should_add_missing_baselines)
  /external/chromium_org/tools/site_compare/scrapers/chrome/
chrome011010.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
27 timeout: amount of time to wait for page to load
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
chrome01970.py 19 def Scrape(urls, outdir, size, pos, timeout=20, **kwargs):
27 timeout: amount of time to wait for page to load
35 return chromebase.Scrape(urls, outdir, size, pos, timeout, kwargs)
38 def Time(urls, size, timeout, **kwargs):
42 return chromebase.Time(urls, size, timeout, kwargs)
  /external/fio/os/windows/posix/include/sys/
poll.h 13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
  /external/libcxx/test/thread/thread.condition/
cv_status.pass.cpp 12 // enum class cv_status { no_timeout, timeout };
20 assert(static_cast<int>(std::cv_status::timeout) == 1);
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
Test.java 23 public Test(String name, int timeout) {
25 mTimeout = timeout;
  /development/ndk/sources/android/libportable/arch-mips/
epoll.c 25 int WRAP(epoll_wait)(int epfd, struct epoll_event *events, int max, int timeout)
27 return REAL(epoll_wait)(epfd, events, max, timeout);
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
ScalableTimeout.java 16 public static long scaleTimeout(long timeout) {
26 return (long) (timeout * sTimeoutScale);
  /external/chromium_org/build/android/pylib/utils/
watchdog_timer.py 5 """WatchdogTimer timeout objects."""
11 """A resetable timeout-based watchdog.
16 def __init__(self, timeout):
20 timeout: The timeout in seconds. If timeout is None it will never timeout.
23 self._timeout = timeout
26 """Resets the timeout countdown."""

Completed in 2195 milliseconds

1 2 3 4 5 6 7 8 91011>>