Searched refs:timeout (Results 376 - 400 of 1718) sorted by relevance

<<11121314151617181920>>

/external/curl/tests/libtest/
H A Dlib1515.c79 struct timeval timeout; local
86 timeout.tv_sec = 1;
87 timeout.tv_usec = 0;
90 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
H A Dlib555.c118 struct timeval timeout; local
122 timeout.tv_sec = 0;
123 timeout.tv_usec = 100000L; /* 100 ms */
144 select_test(maxfd+1, &fdread, &fdwrite, &fdexcep, &timeout);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractExecutionThreadService.java203 @Override public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException { argument
204 delegate.awaitRunning(timeout, unit);
217 @Override public final void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException { argument
218 delegate.awaitTerminated(timeout, unit);
H A DAbstractIdleService.java157 @Override public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException { argument
158 delegate.awaitRunning(timeout, unit);
171 @Override public final void awaitTerminated(long timeout, TimeUnit unit) throws TimeoutException { argument
172 delegate.awaitTerminated(timeout, unit);
H A DCheckedFuture.java69 * timeout this method throws a normal {@link TimeoutException}.
75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X; argument
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CT.h35 char timeout[32]; member in struct:xt_ct_target_info_v1
/external/libbrillo/brillo/dbus/
H A Ddbus_connection.h27 // |timeout|. If the connection can't be established after the timeout, fails
29 scoped_refptr<dbus::Bus> ConnectWithTimeout(base::TimeDelta timeout);
/external/libese/libese-hw/nxp/include/ese/hw/nxp/pn80t/
H A Dcommon.h38 int nxp_pn80t_poll(struct EseInterface *ese, uint8_t poll_for, float timeout,
/external/libmicrohttpd/src/microspdy/
H A Ddaemon.h87 * Obtain timeout value for select for this daemon. The returned value
89 * should at most block, not the timeout value set for connections.
91 * @param daemon daemon to query for timeout
92 * @param timeout set to the timeout (in milliseconds)
94 * would necessiate the use of a timeout right now
98 unsigned long long *timeout);
/external/ltp/testcases/kernel/containers/pidns/
H A Dpidns13.c77 struct timespec timeout; local
119 /* Set timeout for sigtimedwait */
120 timeout.tv_sec = 10;
121 timeout.tv_nsec = 0;
128 if (sigtimedwait(&newset, &info, &timeout) != SIGUSR1) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
H A D2-2.c38 struct timespec timeout; local
55 timeout.tv_sec = curtime.tv_sec + TIMEOUT;
56 timeout.tv_nsec = curtime.tv_usec * 1000;
60 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
H A D2-2.c38 struct timespec timeout; local
55 timeout.tv_sec = curtime.tv_sec + TIMEOUT;
56 timeout.tv_nsec = curtime.tv_usec * 1000;
61 rc = pthread_cond_timedwait(&td.cond, &td.mutex, &timeout);
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlock_timedrdlock/
H A D1-1.c12 * shall be terminated when the specified timeout expires.
55 struct timespec timeout; local
61 timeout.tv_sec = currsec1.tv_sec + TIMEOUT;
62 timeout.tv_nsec = currsec1.tv_usec * 1000;
65 rc = pthread_rwlock_timedrdlock(&rwlock, &timeout);
157 /* we expect rd_thread2 to block and timeout. */
174 ("Test FAILED: the timer expired and thread terminated, but the timeout is not correct: start time %ld.%06ld, end time %ld.%06ld\n",
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_sync.h43 EGLint flags, EGLTimeKHR timeout);
/external/openssh/openbsd-compat/
H A Dbsd-poll.c43 poll(struct pollfd *fds, nfds_t nfds, int timeout) argument
84 /* poll timeout is msec, select is timeval (sec + usec) */
85 if (timeout >= 0) {
86 tv.tv_sec = timeout / 1000;
87 tv.tv_usec = (timeout % 1000) * 1000;
/external/strace/mpers-m32/
H A Dstruct_sg_io_hdr.h14 uint32_t timeout; member in struct:__anon17689
/external/strace/mpers-mx32/
H A Dstruct_sg_io_hdr.h14 uint32_t timeout; member in struct:__anon17838
/external/syslinux/com32/gplinclude/dmi/
H A Ddmi_system.h50 char timeout[8]; member in struct:__anon19280::__anon19281
/external/tpm2/
H A DPolicyTicket_fp.h14 TPM2B_TIMEOUT timeout; member in struct:__anon21185
H A DTicket_fp.h13 UINT64 timeout, // IN: timeout
/external/vogar/test/vogar/target/
H A DTestRunnerProperties.java49 int timeout() default 0;
/external/webrtc/talk/app/webrtc/objctests/
H A DRTCPeerConnectionSyncObserver.h58 - (BOOL)waitForAllExpectationsToBeSatisfiedWithTimeout:(NSTimeInterval)timeout;
/external/autotest/client/common_lib/cros/
H A Dcfm_util.py40 timeout=DEFAULT_TIMEOUT,
62 timeout=DEFAULT_TIMEOUT,
73 timeout=DEFAULT_TIMEOUT)
85 timeout=DEFAULT_TIMEOUT)
98 timeout=DEFAULT_TIMEOUT,
128 timeout=DEFAULT_TIMEOUT,
136 timeout=DEFAULT_TIMEOUT,
150 timeout=DEFAULT_TIMEOUT,
204 timeout=DIAGNOSTIC_RUN_TIMEOUT,
/external/autotest/client/deps/lansim/src/py/
H A Dsimulator_unittest.py102 self._sim.run(timeout=0.1)
106 """Tests that the Simulator can remove unfired timeout calls."""
110 self._sim.run(timeout=0.1)
123 self._sim.run(timeout=5.0, until=lambda: tasks_done)
134 self._sim.run(timeout=0.1)
148 # 20 seconds timeout for unittest completion (they should run in about
150 self._sim = simulator.SimulatorThread(self._tap, timeout=20)
240 ret = self._sim.wait_for_condition(condition, timeout=1.5)
245 ret = self._sim.wait_for_condition(condition, timeout=10.)
248 # Without timeout
[all...]
/external/autotest/client/site_tests/p2p_ConsumeFiles/
H A Dp2p_ConsumeFiles.py74 def _run_p2p_client(self, args, timeout=10., ignore_status=False):
78 @param timeout: Timeout for p2p-client in seconds before it's killed.
83 P2P_CLIENT, args=['-v=1'] + list(args), timeout=timeout,
91 raise error.TestFail('p2p-client %s timeout.' % ' '.join(args))
160 args=('--get-url=only-a',), timeout=10.)
168 timeout=10.)
177 timeout=10.)
186 timeout=10., ignore_status=True)
203 timeout
[all...]

Completed in 1791 milliseconds

<<11121314151617181920>>