Searched refs:timeout (Results 76 - 100 of 1792) sorted by relevance

1234567891011>>

/external/ltp/testcases/commands/tpm-tools/tpm/tpm_takeownership/
H A Dtpm_takeownership_tests_exp01.sh22 set timeout 30
34 expect timeout
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_init/
H A Dtpmtoken_init_tests_exp00.sh22 set timeout 30
34 expect timeout
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_protect/
H A Dtpmtoken_protect_tests_exp01.sh25 set timeout 30
31 expect timeout
H A Dtpmtoken_protect_tests_exp02.sh25 set timeout 30
31 expect timeout
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_setpasswd/
H A Dtpmtoken_setpasswd_tests_exp01.sh24 set timeout 30
34 expect timeout
H A Dtpmtoken_setpasswd_tests_exp02.sh24 set timeout 30
34 expect timeout
H A Dtpmtoken_setpasswd_tests_exp03.sh24 set timeout 30
34 expect timeout
H A Dtpmtoken_setpasswd_tests_exp04.sh24 set timeout 30
34 expect timeout
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_timedlock/
H A D4-1.c29 #define TIMEOUT 3 /* 3 seconds of timeout time for
78 struct timespec timeout; local
80 timeout.tv_sec = time(NULL) + TIMEOUT;
81 timeout.tv_nsec = 0;
85 ret = pthread_mutex_timedlock(&mutex, &timeout);
H A D5-1.c37 #define TIMEOUT 3 /* 3 seconds of timeout time for
87 struct timespec timeout; local
97 timeout.tv_sec = time(NULL) + TIMEOUT;
98 timeout.tv_nsec = INVALID_TIME;
101 ret = pthread_mutex_timedlock(&mutex, &timeout);
H A D5-2.c37 #define TIMEOUT 3 /* 3 seconds of timeout time for
87 struct timespec timeout; local
97 timeout.tv_sec = time(NULL) + TIMEOUT;
98 timeout.tv_nsec = INVALID_TIME;
101 ret = pthread_mutex_timedlock(&mutex, &timeout);
H A D5-3.c12 * [ETIMEDOUT] - The timeout expried and the mutex could not be locked.
33 #define TIMEOUT 3 /* 3 seconds of timeout time for
101 struct timespec timeout; local
103 timeout.tv_sec = time(NULL);
104 timeout.tv_nsec = 0;
108 ret = pthread_mutex_timedlock(&mutex, &timeout);
/external/okhttp/okio/okio/src/main/java/okio/
H A DForwardingTimeout.java41 @Override public Timeout timeout(long timeout, TimeUnit unit) { argument
42 return delegate.timeout(timeout, unit);
H A DSource.java70 /** Returns the timeout for this source. */
71 Timeout timeout(); method in interface:Source
/external/syslinux/core/thread/
H A Dtimeout.c2 * timeout.c
21 mstime_t timeout; local
26 if ((block = t->blocked) && (timeout = block->timeout)) {
27 if ((mstimediff_t)(timeout - now) <= 0) {
/external/testng/src/main/java/org/testng/internal/thread/
H A DIExecutor.java13 boolean awaitTermination(long timeout); argument
/external/testng/src/test/java/test/timeout/
H A DTestTimeOutSampleTest.java1 package test.timeout;
H A DTimeOutSample2Test.java1 package test.timeout;
H A DTimeOutWithParallelSample.java1 package test.timeout;
/external/toolchain-utils/cros_utils/
H A Dlocks.py13 def AcquireLock(machines, chromeos_root, timeout=1200):
14 """Acquire lock for machine(s) with timeout, using AFE server for locking."""
17 sleep_time = min(10, timeout / 10.0)
24 if time.time() - start_time > timeout:
28 repr(machines), timeout, str(e)))
/external/junit/src/main/java/org/junit/internal/runners/statements/
H A DFailOnTimeout.java16 private final long timeout; field in class:FailOnTimeout
28 * Creates an instance wrapping the given statement with the given timeout in milliseconds.
31 * @param timeoutMillis the timeout in milliseconds
41 timeout = builder.timeout;
51 private long timeout = 0; field in class:FailOnTimeout.Builder
60 * <p>If this is not called, or is called with a {@code timeout} of
66 * @param timeout the maximum time to wait
67 * @param unit the time unit of the {@code timeout} argument
70 public Builder withTimeout(long timeout, TimeUni argument
[all...]
/external/chromium-trace/catapult/devil/devil/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."""
/external/chromium-trace/catapult/systrace/profile_chrome/
H A Dui.py15 def WaitForEnter(timeout):
16 select.select([sys.stdin], [], [], timeout)
/external/curl/docs/examples/
H A Dimap-multi.c92 struct timeval timeout; local
107 /* Set a suitable timeout to play around with */
108 timeout.tv_sec = 1;
109 timeout.tv_usec = 0;
113 timeout.tv_sec = curl_timeo / 1000;
114 if(timeout.tv_sec > 1)
115 timeout.tv_sec = 1;
117 timeout.tv_usec = (curl_timeo % 1000) * 1000;
145 /* Note that on some platforms 'timeout' may be modified by select().
147 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]
H A Dmulti-post.c87 struct timeval timeout; local
102 /* set a suitable timeout to play around with */
103 timeout.tv_sec = 1;
104 timeout.tv_usec = 0;
108 timeout.tv_sec = curl_timeo / 1000;
109 if(timeout.tv_sec > 1)
110 timeout.tv_sec = 1;
112 timeout.tv_usec = (curl_timeo % 1000) * 1000;
140 /* Note that on some platforms 'timeout' may be modified by select().
142 rc = select(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
[all...]

Completed in 441 milliseconds

1234567891011>>