Searched refs:TIMEOUT (Results 1 - 25 of 178) sorted by relevance

12345678

/external/strace/tests/
H A Drun.sh8 TIMEOUT="timeout -s 9 $TIMEOUT_DURATION"
9 $TIMEOUT true > /dev/null 2>&1 ||
10 TIMEOUT=
12 exec $TIMEOUT "$@"
H A Dredirect.test50 echo TIMEOUT >> "$OUT"
71 echo TIMEOUT >> "$OUT"
/external/strace/tests-m32/
H A Drun.sh8 TIMEOUT="timeout -s 9 $TIMEOUT_DURATION"
9 $TIMEOUT true > /dev/null 2>&1 ||
10 TIMEOUT=
12 exec $TIMEOUT "$@"
H A Dredirect.test50 echo TIMEOUT >> "$OUT"
71 echo TIMEOUT >> "$OUT"
/external/strace/tests-mx32/
H A Drun.sh8 TIMEOUT="timeout -s 9 $TIMEOUT_DURATION"
9 $TIMEOUT true > /dev/null 2>&1 ||
10 TIMEOUT=
12 exec $TIMEOUT "$@"
H A Dredirect.test50 echo TIMEOUT >> "$OUT"
71 echo TIMEOUT >> "$OUT"
/external/ltp/testcases/open_posix_testsuite/functional/threads/tools/
H A Dwatchdogtimer.sh7 TIMEOUT=600
12 sleep $TIMEOUT
/external/testng/src/test/java/test/thread/
H A DThreadPoolSampleBugTest.java6 private static final long TIMEOUT = 500; field in class:ThreadPoolSampleBugTest
10 Thread.sleep(TIMEOUT);
15 Thread.sleep(TIMEOUT);
20 Thread.sleep(TIMEOUT);
25 Thread.sleep(TIMEOUT);
/external/apache-http/src/org/apache/http/conn/params/
H A DConnManagerPNames.java56 public static final String TIMEOUT = "http.conn-manager.timeout"; field in interface:ConnManagerPNames
/external/vogar/src/vogar/
H A DTestProperties.java44 public static final String TIMEOUT = "timeout"; field in class:TestProperties
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_timedlock/
H A D1-1.c36 #define TIMEOUT 3 /* 3 seconds of timeout time for macro
89 if (time_diff.tv_sec < TIMEOUT) {
92 TIMEOUT);
118 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
123 TIMEOUT, (long)currsec1.tv_sec, (long)currsec1.tv_usec);
H A D2-1.c39 #define TIMEOUT 3 /* 3 seconds of timeout time for macro
92 if (time_diff.tv_sec < TIMEOUT) {
95 TIMEOUT);
131 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
136 TIMEOUT, (long)currsec1.tv_sec, (long)currsec1.tv_usec);
H A D4-1.c29 #define TIMEOUT 3 /* 3 seconds of timeout time for macro
80 timeout.tv_sec = time(NULL) + TIMEOUT;
H A D5-1.c37 #define TIMEOUT 3 /* 3 seconds of timeout time for macro
97 timeout.tv_sec = time(NULL) + TIMEOUT;
H A D5-2.c37 #define TIMEOUT 3 /* 3 seconds of timeout time for macro
97 timeout.tv_sec = time(NULL) + TIMEOUT;
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
H A D2-1.c30 #define TIMEOUT 5 /* Timeout value of 5 seconds. */ macro
45 sleep(TIMEOUT);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
H A D6-1.c57 #define TIMEOUT 5 macro
92 abs_timeout.tv_sec += TIMEOUT;
94 printf("thread: attempt timed read lock, %d seconds\n", TIMEOUT);
137 } while (thread_state != ENTERED_THREAD && cnt++ < TIMEOUT);
150 /* wait at most 2*TIMEOUT seconds */
154 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
156 if (cnt >= 2 * TIMEOUT) {
175 if (wait_time.tv_sec < TIMEOUT) {
178 TIMEOUT, (long int)wait_time.tv_sec,
H A D6-2.c48 #define TIMEOUT 2 macro
63 sleep_time_req.tv_sec = TIMEOUT * 2;
99 abs_timeout.tv_sec = before_wait.tv_sec + TIMEOUT;
104 printf("thread: attempt timed read lock, %d seconds\n", TIMEOUT);
150 } while (thread_state != ENTERED_THREAD && cnt++ < TIMEOUT);
169 sleep(TIMEOUT);
191 /* wait at most 4*TIMEOUT seconds for thread to exit */
195 } while (thread_state != EXITING_THREAD && cnt++ < 4 * TIMEOUT);
197 if (cnt >= 4 * TIMEOUT) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedwrlock/
H A D6-1.c57 #define TIMEOUT 5 macro
90 abs_timeout.tv_sec = before_wait.tv_sec + TIMEOUT;
93 printf("thread: attempt timed write lock, %d seconds\n", TIMEOUT);
137 } while (thread_state != ENTERED_THREAD && cnt++ < TIMEOUT);
150 /* wait at most 2*TIMEOUT seconds */
154 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
156 if (cnt >= 2 * TIMEOUT) {
175 if (time_diff.tv_sec < TIMEOUT) {
178 TIMEOUT, (long)time_diff.tv_sec, (long)time_diff.tv_usec);
H A D6-2.c48 #define TIMEOUT 2 macro
63 sleep_time_req.tv_sec = TIMEOUT * 2;
99 abs_timeout.tv_sec = before_wait.tv_sec + TIMEOUT;
104 printf("thread: attempt timed write lock, %d seconds\n", TIMEOUT);
150 } while (thread_state != ENTERED_THREAD && cnt++ < TIMEOUT);
169 sleep(TIMEOUT);
191 /* wait at most 4*TIMEOUT seconds for thread to exit */
195 } while (thread_state != EXITING_THREAD && cnt++ < 4 * TIMEOUT);
197 if (cnt >= 4 * TIMEOUT) {
H A D1-1.c38 #define TIMEOUT 3 macro
64 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
67 printf("thread: attempt timed write lock, %d secs\n", TIMEOUT);
115 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
153 /* If the shared data is not altered by child after TIMEOUT*2 seconds,
160 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
171 if (time_diff.tv_sec < TIMEOUT) {
174 TIMEOUT, (long)time_diff.tv_sec,
217 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
228 if (time_diff.tv_sec < TIMEOUT) {
[all...]
H A D3-1.c40 #define TIMEOUT 3 macro
74 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
77 printf("thread: attempt timed write lock, %d secs\n", TIMEOUT);
135 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
173 /* If the shared data is not altered by child after TIMEOUT*2 seconds,
180 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
191 if (time_diff.tv_sec < TIMEOUT) {
195 TIMEOUT, (long)time_diff.tv_sec,
238 } while (thread_state != EXITING_THREAD && cnt++ < 2 * TIMEOUT);
249 if (time_diff.tv_sec < TIMEOUT) {
[all...]
/external/python/cpython2/Lib/test/
H A Dthreaded_import_hangers.py4 # thread doesn't complete in TIMEOUT seconds, an "appeared to hang" message
8 TIMEOUT = 10 variable
40 t.join(TIMEOUT)
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
H A DMonitorWaitAndWaitedDebuggee.java26 public static long TIMEOUT = 500; field in class:MonitorWaitAndWaitedDebuggee
41 monitor.wait(TIMEOUT);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
H A D3-1.c31 #define TIMEOUT 10 macro
42 sleep(TIMEOUT);

Completed in 1049 milliseconds

12345678