Searched refs:timeout (Results 176 - 200 of 1718) sorted by relevance

1234567891011>>

/external/libmicrohttpd/src/microhttpd/
H A Dconnection_https.c134 unsigned int timeout; local
142 timeout = connection->connection_timeout;
143 if ( (timeout != 0) && (timeout <= (MHD_monotonic_time() - connection->last_activity)))
/external/ltp/testcases/commands/tpm-tools/tpm/tpm_changeauth/
H A Dtpm_changeauth_tests_exp03.sh24 set timeout 30
39 expect timeout
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
H A Dtpmtoken_import_tests_exp01.sh27 set timeout 30
35 expect timeout
H A Dtpmtoken_import_tests_exp02.sh27 set timeout 30
42 expect timeout
H A Dtpmtoken_import_tests_exp03.sh27 set timeout 30
37 expect timeout
H A Dtpmtoken_import_tests_exp04.sh27 set timeout 30
33 expect timeout
H A Dtpmtoken_import_tests_exp05.sh27 set timeout 30
40 expect timeout
H A Dtpmtoken_import_tests_exp06.sh27 set timeout 30
35 expect timeout
H A Dtpmtoken_import_tests_exp07.sh27 set timeout 30
40 expect timeout
H A Dtpmtoken_import_tests_exp08.sh27 set timeout 30
39 expect timeout
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_init/
H A Dtpmtoken_init_tests_exp01.sh22 set timeout 30
50 expect timeout
H A Dtpmtoken_init_tests_exp02.sh22 set timeout 30
53 expect timeout
H A Dtpmtoken_init_tests_exp03.sh22 set timeout 30
48 expect timeout
/external/ltp/testcases/lib/
H A Dtst_checkpoint.c30 printf(" TIMEOUT - timeout in ms\n");
55 unsigned int id, timeout, nr_wake; local
81 if (get_val("TIMEOUT", argv[2], &timeout)
89 ret = tst_checkpoint_wake(id, nr_wake, timeout);
91 ret = tst_checkpoint_wait(id, timeout);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
H A D4-1.c33 struct timespec timeout; local
48 timeout.tv_sec = curtime.tv_sec + TIMEOUT;
49 timeout.tv_nsec = curtime.tv_usec * 1000;
53 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_timedlock/
H A D1-1.c11 * available. The wait will end when the specified timeout time has expired.
13 * The timeout expires when the absolute time 'abs_timeout' passes, or if 'abs_timeout'
36 #define TIMEOUT 3 /* 3 seconds of timeout time for
112 struct timespec timeout; local
118 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
119 timeout.tv_nsec = currsec1.tv_usec * 1000;
124 if (pthread_mutex_timedlock(&mutex, &timeout) != ETIMEDOUT) {
/external/ltp/testcases/open_posix_testsuite/tools/
H A Dt0.c17 * This utility software allows to run any executable file with a timeout limit.
20 * where n is the timeout duration in seconds,
32 * as if it has been timedout. This is usefull to check a timeout return code value.
65 int status, timeout; local
79 printf(" n is the timeout duration in seconds,\n");
84 (" The second use case will emulate an immediate timeout.\n\n");
88 timeout = atoi(argv[1]);
89 if (timeout < 1) {
91 "Invalid timeout value \"%s\". Timeout must be a positive integer.\n",
101 alarm(timeout);
[all...]
/external/okhttp/okio/okio/src/main/java/okio/
H A DSink.java58 /** Returns the timeout for this sink. */
59 Timeout timeout(); method in interface:Sink
/external/strace/tests/
H A Dppoll.c37 const struct timespec timeout = { .tv_sec = 42, .tv_nsec = 999999999 }; local
50 int rc = ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask);
59 const struct timespec timeout = { .tv_sec = 0, .tv_nsec = 999 }; local
71 int rc = ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask);
/external/strace/tests-m32/
H A Dppoll.c37 const struct timespec timeout = { .tv_sec = 42, .tv_nsec = 999999999 }; local
50 int rc = ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask);
59 const struct timespec timeout = { .tv_sec = 0, .tv_nsec = 999 }; local
71 int rc = ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask);
/external/strace/tests-mx32/
H A Dppoll.c37 const struct timespec timeout = { .tv_sec = 42, .tv_nsec = 999999999 }; local
50 int rc = ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask);
59 const struct timespec timeout = { .tv_sec = 0, .tv_nsec = 999 }; local
71 int rc = ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask);
/external/syslinux/com32/include/
H A Dcli.h14 extern int mygetkey(clock_t timeout);
/external/syslinux/core/thread/
H A Dmbox.c25 int mbox_post(struct mailbox *mbox, void *msg, mstime_t timeout) argument
29 if (sem_down(&mbox->prod_sem, timeout) == (mstime_t)-1)
43 mstime_t mbox_fetch(struct mailbox *mbox, void **msg, mstime_t timeout) argument
49 t = sem_down(&mbox->cons_sem, timeout);
/external/testng/src/main/java/org/testng/remote/adapter/
H A DIMasterAdapter.java36 * @param timeout the maximum time to wait for all the suites to return a result.
39 public void awaitTermination(long timeout) throws InterruptedException; argument
H A DIWorkerAdapter.java28 * @param timeout the maximum time to wait for the next suite.
29 * @return the next suite avaliable or <code>null</code> if the timeout has reached.
33 XmlSuite getSuite( long timeout) throws InterruptedException, IOException; argument

Completed in 390 milliseconds

1234567891011>>