Searched refs:timeout (Results 1 - 25 of 1159) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-11-04-OutOfMemory.c3 void schedule_timeout(signed long timeout) argument
5 switch (timeout)
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dpoll.c10 int poll(struct pollfd *fds, nfds_t nfds, int timeout) { argument
11 return ki_poll(fds, nfds, timeout);
H A Dselect.c9 fd_set* exceptfds, struct timeval* timeout) {
10 return ki_select(nfds, readfds, writefds, exceptfds, timeout);
8 select(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout) argument
/external/nist-sip/java/javax/sip/
H A DTimeoutEvent.java7 Timeout timeout) {
9 mTimeout = timeout;
13 Timeout timeout) {
15 mTimeout = timeout;
6 TimeoutEvent(Object source, ServerTransaction serverTransaction, Timeout timeout) argument
12 TimeoutEvent(Object source, ClientTransaction clientTransaction, Timeout timeout) argument
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dgunit.h39 // Wait until "ex" is true, or "timeout" expires.
40 #define WAIT(ex, timeout) \
42 !(ex) && talk_base::Time() < start + timeout;) \
48 #define WAIT_(ex, timeout, res) \
52 while (!res && talk_base::Time() < start + timeout) { \
58 // The typical EXPECT_XXXX and ASSERT_XXXXs, but done until true or a timeout.
59 #define EXPECT_TRUE_WAIT(ex, timeout) \
62 WAIT_(ex, timeout, res); \
66 #define EXPECT_EQ_WAIT(v1, v2, timeout) \
69 WAIT_(v1 == v2, timeout, re
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dgunit.h22 // 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, re
[all...]
/external/chromium_org/net/socket/
H A Dclient_socket_pool.cc13 // TODO(ziadh): Change this timeout after getting histogram data on how long it
30 void ClientSocketPool::set_unused_idle_socket_timeout(base::TimeDelta timeout) { argument
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) { argument
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/
H A DKeepAliveHttpsTransportSE.java30 private final int timeout; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) { argument
34 super(host, port, file, timeout);
38 this.timeout = timeout;
52 file, timeout);
/external/chromium_org/tools/site_compare/scrapers/chrome/
H A Dchrome011010.py19 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)
H A Dchrome01970.py19 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/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpServerSocket.java34 private int timeout = 8000; field in class:Support_HttpServerSocket
48 instance.setSoTimeout(timeout);
55 * timeout for the server.
57 public void setTimeout(int timeout) { argument
58 this.timeout = timeout;
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dweb_contents.py29 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)
87 def ExecuteJavaScript(self, statement, timeout=DEFAULT_WEB_CONTENTS_TIMEOUT):
93 statement, context_id=None, timeout
[all...]
/external/chromium_org/tools/telemetry/telemetry/page/actions/
H A Dwait.py9 timeout=60):
14 self.timeout = timeout
21 wait=True, timeout=self.timeout)
/external/chromium_org/build/android/pylib/device/
H A Dadb_wrapper.py50 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)
129 def Push(self, local, remote, timeout
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DThrottler.js7 * @param {number} timeout
9 WebInspector.Throttler = function(timeout)
11 this._timeout = timeout;
64 var timeout = this._asSoonAsPossible ? 0 : this._timeout;
65 this._processTimeout = this._setTimeout(this._onTimeout.bind(this), timeout);
78 * @param {number} timeout
81 _setTimeout: function(operation, timeout)
83 return setTimeout(operation, timeout);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DDOMWindowTimers.cpp43 int setTimeout(EventTarget& eventTarget, PassOwnPtr<ScheduledAction> action, int timeout) argument
45 return DOMTimer::install(eventTarget.executionContext(), action, timeout, true);
48 int setInterval(EventTarget& eventTarget, PassOwnPtr<ScheduledAction> action, int timeout) argument
50 return DOMTimer::install(eventTarget.executionContext(), action, timeout, false);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
H A Dtest_input.py34 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/telemetry/telemetry/core/backends/chrome/
H A Dinspector_page.py12 def __init__(self, inspector_backend, timeout=60):
23 self._EnablePageNotifications(timeout=timeout)
66 def _EnablePageNotifications(self, timeout=60):
70 res = self._inspector_backend.SyncRequest(request, timeout)
73 def WaitForNavigate(self, timeout=60):
77 when the navigation is complete or when the timeout has been exceeded.
80 remaining_time = timeout
84 remaining_time = max(timeout - (time.time() - start_time), 0.0)
88 # list the full timeout tim
[all...]
H A Dtab_list_backend.py19 def New(self, timeout):
21 self._browser_backend.Request('new', timeout=timeout)
24 def CloseTab(self, debugger_url, timeout=None):
30 self.New(timeout)
33 timeout=timeout,
38 util.WaitFor(lambda: tab_id not in self, timeout=5)
40 def ActivateTab(self, debugger_url, timeout=None):
46 timeout
[all...]
/external/fio/os/windows/posix/include/sys/
H A Dpoll.h13 int poll(struct pollfd fds[], nfds_t nfds, int timeout);
/external/libcxx/test/thread/futures/futures.overview/
H A Dfuture_status.pass.cpp15 // timeout,
24 static_assert(static_cast<int>(std::future_status::timeout) == 1, "");
/external/libcxx/test/thread/thread.condition/
H A Dcv_status.pass.cpp12 // enum class cv_status { no_timeout, timeout };
20 assert(static_cast<int>(std::cv_status::timeout) == 1);
/external/strace/test/
H A Dselect.c14 struct timeval timeout; local
29 timeout.tv_sec = 0;
30 timeout.tv_usec = 100;
31 select(FD_SETSIZE + 1, (fd_set *)buffer, NULL, NULL, &timeout);
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DScalableTimeout.java16 public static long scaleTimeout(long timeout) { argument
26 return (long)(timeout * sTimeoutScale);
/external/chromium_org/build/android/pylib/utils/
H A Dwatchdog_timer.py5 """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 772 milliseconds

1234567891011>>