Searched defs:timeout (Results 1 - 25 of 644) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A D2003-11-04-OutOfMemory.c3 void schedule_timeout(signed long timeout) argument
5 switch (timeout)
/external/jemalloc/test/src/
H A Dmq.c17 struct timespec timeout; local
20 timeout.tv_sec = 0;
21 timeout.tv_nsec = ns;
23 timeout.tv_sec = 1;
24 timeout.tv_nsec = 0;
26 nanosleep(&timeout, NULL);
/external/testng/src/test/java/test/timeout/
H A DTestTimeOutSampleTest.java1 package test.timeout;
H A DTimeOutIntegrationTest.java1 package test.timeout;
H A DTimeOutSample2Test.java1 package test.timeout;
H A DTimeOutWithParallelSample.java1 package test.timeout;
H A DInvocationTimeOutSampleTest.java1 package test.timeout;
H A DTimeOutSampleTest.java1 package test.timeout;
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_IDLETIMER.h37 __u32 timeout; member in struct:idletimer_tg_info
/external/okhttp/okio/okio/src/main/java/okio/
H A DSource.java70 /** Returns the timeout for this source. */
71 Timeout timeout(); method in interface:Source
/external/strace/tests/
H A Doldselect.c45 struct timeval timeout = { .tv_sec = 0, .tv_usec = 42 }; local
47 2, (long) &r, (long) &w, 0, (long) &timeout,
H A Dppoll.c40 const struct timespec timeout = { .tv_sec = 42, .tv_nsec = 999999999 }; local
52 return ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask) == 2 ? 0 : 77;
59 const struct timespec timeout = { .tv_sec = 0, .tv_nsec = 999 }; local
70 return ppoll(fds, sizeof(fds) / sizeof(*fds), &timeout, &mask) == 0 ? 0 : 77;
/external/tpm2/
H A DPolicyTicket.c16 // TPM_RC_EXPIRED timeout value in the ticket is in the past and the ticket has expired
17 // TPM_RC_SIZE timeout or cpHash has invalid size for the
27 UINT64 timeout; local
45 // Restore timeout data. The format of timeout buffer is TPM-specific.
46 // In this implementation, we simply copy the value of timeout to the
48 if(in->timeout.t.size != sizeof(UINT64))
50 timeout = BYTE_ARRAY_TO_UINT64(in->timeout.t.buffer);
52 // Do the normal checks on the cpHashA and timeout value
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ServerSocket.java29 public void setTimeout(int timeout); argument
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionRequest.java49 * the timeout expires, or the connection manager is
57 * @param timeout the timeout, 0 or negative for no timeout
58 * @param tunit the unit for the <code>timeout</code>,
59 * may be <code>null</code> only if there is no timeout
65 * in case of a timeout
69 ManagedClientConnection getConnection(long timeout, TimeUnit tunit) argument
/external/dhcpcd-6.8.2/compat/
H A Dpollts.c45 int r, timeout; local
49 timeout = -1;
53 timeout = INT_MAX;
55 timeout = ts->tv_sec * 1000 + (ts->tv_nsec + 999999) / 1000000;
58 r = poll(fds, nfds, timeout);
/external/guava/guava/src/com/google/common/util/concurrent/
H A DCheckedFuture.java69 * timeout this method throws a normal {@link TimeoutException}.
75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X; argument
/external/iptables/include/linux/netfilter/
H A Dxt_IDLETIMER.h42 __u32 timeout; member in struct:idletimer_tg_info
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DKeepAliveHttpsTransportSE.java30 private final int timeout; field in class:KeepAliveHttpsTransportSE
33 public KeepAliveHttpsTransportSE(String host, int port, String file, int timeout) { argument
34 super(host, port, file, timeout);
38 this.timeout = timeout;
52 file, timeout);
/external/libbrillo/brillo/dbus/
H A Ddbus_connection.cc31 base::TimeDelta timeout) {
35 base::TimeTicks deadline = base::TimeTicks::Now() + timeout;
53 LOG(ERROR) << "Failed to get system bus after " << timeout.InSeconds()
30 ConnectWithTimeout( base::TimeDelta timeout) argument
/external/libbrillo/brillo/message_loops/
H A Dmessage_loop_utils.cc14 base::TimeDelta timeout,
20 timeout);
12 MessageLoopRunUntil( MessageLoop* loop, base::TimeDelta timeout, base::Callback<bool()> terminate) argument
/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/libvncserver/libvncclient/
H A Dlisten.c143 * from servers, but DON'T fork, instead just wait timeout microseconds.
144 * If timeout is negative, block indefinitly.
146 * and we accepted it successfully), -1 on error, 0 on timeout.
150 listenForIncomingConnectionsNoFork(rfbClient* client, int timeout) argument
156 to.tv_sec= timeout / 1000000;
157 to.tv_usec= timeout % 1000000;
197 if (timeout < 0)
225 /* r is now either 0 (timeout) or -1 (error) */
/external/mdnsresponder/mDNSPosix/
H A DExampleClientApp.c53 struct timeval timeout; local
61 // 2. Set up the timeout.
63 // so we set an effectively infinite timeout
64 timeout.tv_sec = 0x3FFFFFFF;
65 timeout.tv_usec = 0;
67 // 3. Give the mDNSPosix layer a chance to add its information to the fd_set and timeout
68 mDNSPosixGetFDSet(m, &nfds, &readfds, &timeout);
71 verbosedebugf("select(%d, %d.%06d)", nfds, timeout.tv_sec, timeout.tv_usec);
72 result = select(nfds, &readfds, NULL, NULL, &timeout);
[all...]
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_fence.c55 uint64_t timeout)
53 softpipe_fence_finish(struct pipe_screen *screen, struct pipe_fence_handle *fence, uint64_t timeout) argument

Completed in 3467 milliseconds

1234567891011>>