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

1 2 3 4 5 6 7 8 91011>>

  /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() {
Timeout.java 3 public enum Timeout {
  /external/clang/test/CodeGen/
2003-11-04-OutOfMemory.c 3 void schedule_timeout(signed long timeout)
5 switch (timeout)
  /external/webkit/LayoutTests/fast/dom/Geolocation/
timeout-zero-expected.txt 1 Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.
6 PASS error.code is error.TIMEOUT
7 PASS error.message is "Timeout expired"
timeout-clear-watch-expected.txt 6 PASS error.code is error.TIMEOUT
7 PASS error.message is "Timeout expired"
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
timeout-zero.js 1 description("Tests that when timeout is zero (and maximumAge is too), the error callback is called immediately with code TIMEOUT.");
12 shouldBe('error.code', 'error.TIMEOUT');
13 shouldBe('error.message', '"Timeout expired"');
16 timeout: 0
timeout-clear-watch.js 12 shouldBe('error.code', 'error.TIMEOUT');
13 shouldBe('error.message', '"Timeout expired"');
17 timeout: 0
  /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...]
eloop_win.c 55 struct dl_list timeout; member in struct:eloop_data
78 dl_list_init(&eloop.timeout);
241 struct eloop_timeout *timeout, *tmp; local
244 timeout = os_zalloc(sizeof(*timeout));
245 if (timeout == NULL)
247 if (os_get_time(&timeout->time) < 0) {
248 os_free(timeout);
251 now_sec = timeout->time.sec;
252 timeout->time.sec += secs
295 struct eloop_timeout *timeout, *prev; local
318 struct eloop_timeout *timeout, *prev; local
478 struct eloop_timeout *timeout; local
588 struct eloop_timeout *timeout, *prev; local
    [all...]
  /system/bluetooth/data/
input.conf 7 # Set idle timeout (in minutes) before the connection will
8 # be disconnect (defaults to 0 for no timeout)
  /external/junit/src/org/junit/rules/
Timeout.java 11 * The Timeout Rule applies the same timeout to all test methods in a class:
18 * public MethodRule globalTimeout= new Timeout(20);
36 public class Timeout implements TestRule {
40 * @param millis the millisecond timeout
42 public Timeout(int millis) {
  /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...]
  /cts/libs/util/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/webkit/Source/WebCore/manual-tests/
timeout-test.html 3 <title>10m10s Timeout Test</title>
6 To run this test, both timeout-test.html and timeout-test.php must be served over http.<br>
9 <form action="timeout-test.php" method="post">
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
if_slip.h 22 #define SIOCSKEEPALIVE (SIOCDEVPRIVATE) /* Set keepalive timeout in sec */
23 #define SIOCGKEEPALIVE (SIOCDEVPRIVATE+1) /* Get keepalive timeout */
24 #define SIOCSOUTFILL (SIOCDEVPRIVATE+2) /* Set outfill timeout */
25 #define SIOCGOUTFILL (SIOCDEVPRIVATE+3) /* Get outfill timeout */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_slip.h 22 #define SIOCSKEEPALIVE (SIOCDEVPRIVATE) /* Set keepalive timeout in sec */
23 #define SIOCGKEEPALIVE (SIOCDEVPRIVATE+1) /* Get keepalive timeout */
24 #define SIOCSOUTFILL (SIOCDEVPRIVATE+2) /* Set outfill timeout */
25 #define SIOCGOUTFILL (SIOCDEVPRIVATE+3) /* Get outfill timeout */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
if_slip.h 22 #define SIOCSKEEPALIVE (SIOCDEVPRIVATE) /* Set keepalive timeout in sec */
23 #define SIOCGKEEPALIVE (SIOCDEVPRIVATE+1) /* Get keepalive timeout */
24 #define SIOCSOUTFILL (SIOCDEVPRIVATE+2) /* Set outfill timeout */
25 #define SIOCGOUTFILL (SIOCDEVPRIVATE+3) /* Get outfill timeout */
  /external/mockito/src/org/mockito/verification/
Timeout.java 16 * Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
19 public class Timeout implements VerificationWithTimeout {
26 * Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
29 public Timeout(int millis, VerificationMode delegate) {
36 Timeout(int treshhold, int millis, VerificationMode delegate) {
51 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeast(minNumberOfInvocations));
58 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.atLeastOnce());
73 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(0));
80 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.only());
87 return new Timeout(impl.getTreshhold(), impl.getTimeout(), VerificationModeFactory.times(wantedNumberOfInvocations));
    [all...]
  /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...]
  /external/chromium/base/test/
test_switches.cc 8 const char switches::kLiveOperationTimeout[] = "live-operation-timeout";
12 const char switches::kTestLargeTimeout[] = "test-large-timeout";
13 const char switches::kTestTinyTimeout[] = "test-tiny-timeout";
14 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout";
15 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";
16 const char switches::kUiTestTerminateTimeout[] = "ui-test-terminate-timeout";
17 const char switches::kUiTestTimeout[] = "test-timeout";
test_timeouts.h 18 // Timeout for actions that are expected to finish "almost instantly".
21 // Timeout to wait for something to happen. If you are not sure
22 // which timeout to use, this is the one you want.
25 // Timeout longer than the above, but still suitable to use
26 // multiple times in a single test. Use if the timeout above
30 // Timeout for a large test that may take a few minutes to run.
33 // Timeout for a huge test (like running a layout test inside the browser).
38 // Timeout to wait for a process to terminate.
43 // Timeout to wait for a live operation to complete. Used by tests that access
  /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;
  /external/mockito/src/org/mockito/internal/verification/
VerificationWithTimeoutImpl.java 14 int timeout; field in class:VerificationWithTimeoutImpl
19 this.timeout = millis;
26 while (soFar <= timeout) {
54 return timeout;
  /external/webkit/Source/WebCore/manual-tests/resources/
load-deferrer-script-element.js 3 // Use a big timeout value to ensure that error messages do not show up.
  /frameworks/base/services/common_time/
utils.h 29 class Timeout {
31 Timeout() : mSystemEndTime(0) { }
33 // Set a timeout which should occur msec milliseconds from now.
34 // Negative values will cancel any current timeout;
37 // Return the number of milliseconds until the timeout occurs, or -1 if
38 // no timeout is scheduled.
43 // The systemTime() at which the timeout will be complete, or 0 if no
44 // timeout is currently scheduled.

Completed in 2297 milliseconds

1 2 3 4 5 6 7 8 91011>>