HomeSort by relevance Sort by last modified time
    Searched refs:timeout (Results 1 - 25 of 2223) 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)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
poll.c 8 int poll(struct pollfd *fds, nfds_t nfds, int timeout) {
9 return ki_poll(fds, nfds, timeout);
select.c 9 fd_set* exceptfds, struct timeval* timeout) {
10 return ki_select(nfds, readfds, writefds, exceptfds, 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/net/socket/
client_socket_pool.cc 11 // TODO(ziadh): Change this timeout after getting histogram data on how long it
25 void ClientSocketPool::set_unused_idle_socket_timeout(int timeout) {
26 g_unused_idle_socket_timeout = timeout;
  /frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
Configurator.java 35 // This short timeout to make sure we get the very last in cases where the above isn't true.
62 * Sets the timeout for waiting for the user interface to go into an idle
68 * timeout elapses (whichever occurs first), the object will start to wait
72 * @param timeout Timeout value in milliseconds
76 public Configurator setWaitForIdleTimeout(long timeout) {
77 mWaitForIdleTimeout = timeout;
82 * Gets the current timeout used for waiting for the user interface to go
88 * timeout elapses (whichever occurs first), the object will start to wait
92 * @return Current timeout value in millisecond
    [all...]
  /frameworks/uiautomator/src/com/android/uiautomator/core/
Configurator.java 35 // This short timeout to make sure we get the very last in cases where the above isn't true.
62 * Sets the timeout for waiting for the user interface to go into an idle
68 * timeout elapses (whichever occurs first), the object will start to wait
72 * @param timeout Timeout value in milliseconds
76 public Configurator setWaitForIdleTimeout(long timeout) {
77 mWaitForIdleTimeout = timeout;
82 * Gets the current timeout used for waiting for the user interface to go
88 * timeout elapses (whichever occurs first), the object will start to wait
92 * @return Current timeout value in millisecond
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
FocusIndicator.java 21 public void showSuccess(boolean timeout);
22 public void showFail(boolean timeout);
  /packages/apps/Camera2/src/com/android/camera/ui/
FocusIndicator.java 21 public void showSuccess(boolean timeout);
22 public void showFail(boolean 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() {
  /system/core/debuggerd/
getevent.h 22 int get_event(struct input_event* event, int timeout);
  /external/chromium_org/third_party/libjingle/source/talk/base/
gunit.h 44 // Wait until "ex" is true, or "timeout" expires.
45 #define WAIT(ex, timeout) \
47 !(ex) && talk_base::Time() < start + timeout;) \
53 #define WAIT_(ex, timeout, res) \
57 while (!res && talk_base::Time() < start + timeout) { \
63 // The typical EXPECT_XXXX and ASSERT_XXXXs, but done until true or a timeout.
64 #define EXPECT_TRUE_WAIT(ex, timeout) \
67 WAIT_(ex, timeout, res); \
71 #define EXPECT_EQ_WAIT(v1, v2, timeout) \
74 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();
  /packages/apps/Stk/src/com/android/stk/
StkApp.java 39 // UI timeout, 30 seconds - used for menues and input
42 // Tone default timeout - 2 seconds
52 int timeout = 0; local
56 timeout = 1000 * 60;
59 timeout = 1000 / 10;
63 timeout = 1000;
66 timeout *= duration.timeInterval;
68 return timeout;
  /system/core/init/
watchdogd.c 35 int timeout; local
48 timeout = interval + margin;
56 ret = ioctl(fd, WDIOC_SETTIMEOUT, &timeout);
58 ERROR("watchdogd: Failed to set timeout to %d: %s\n", timeout, strerror(errno));
59 ret = ioctl(fd, WDIOC_GETTIMEOUT, &timeout);
61 ERROR("watchdogd: Failed to get timeout: %s\n", strerror(errno));
63 if (timeout > margin)
64 interval = timeout - margin;
67 ERROR("watchdogd: Adjusted interval to timeout returned by driver: timeout %d, interval %d, margin %d\n"
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop_none.c 42 struct dl_list timeout; member in struct:eloop_data
59 dl_list_init(&eloop.timeout);
115 struct eloop_timeout *timeout, *tmp; local
118 timeout = os_zalloc(sizeof(*timeout));
119 if (timeout == NULL)
121 if (os_get_time(&timeout->time) < 0) {
122 os_free(timeout);
125 now_sec = timeout->time.sec;
126 timeout->time.sec += secs
169 struct eloop_timeout *timeout, *prev; local
192 struct eloop_timeout *timeout, *prev; local
325 struct eloop_timeout *timeout; local
387 struct eloop_timeout *timeout, *prev; local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
inspector_network.py 9 def ClearCache(self, timeout=60):
13 }, timeout)
17 }, timeout)
  /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;
  /cts/tests/tests/webkit/src/android/webkit/cts/
ChromeClient.java 40 public synchronized ConsoleMessage.MessageLevel getMessageLevel(int timeout) {
41 for(; timeout > 0; timeout -= 1000) {
  /system/netd/
IdletimerController.h 27 int addInterfaceIdletimer(const char *iface, uint32_t timeout,
29 int removeInterfaceIdletimer(const char *iface, uint32_t timeout,
40 int modifyInterfaceIdletimer(IptOp op, const char *iface, uint32_t timeout,
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMWindowTimers.cpp 43 int setTimeout(EventTarget* eventTarget, PassOwnPtr<ScheduledAction> action, int timeout)
45 return DOMTimer::install(eventTarget->scriptExecutionContext(), action, timeout, true);
48 int setInterval(EventTarget* eventTarget, PassOwnPtr<ScheduledAction> action, int timeout)
50 return DOMTimer::install(eventTarget->scriptExecutionContext(), action, timeout, false);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionOptions.h 41 int timeout() const function in class:WebCore::PositionOptions
46 void setTimeout(int timeout)
48 ASSERT(timeout >= 0);
50 m_timeout = 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)

Completed in 6266 milliseconds

1 2 3 4 5 6 7 8 91011>>