Searched defs:timeout (Results 1 - 25 of 411) 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/libppp/src/
H A Dtun.h32 u_int32_t timeout; member in union:tun_data::__anon8093
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ServerSocket.java30 public void setTimeout(int timeout); argument
H A DSupport_HttpServerSocket.java34 private int timeout = 8000; field in class:Support_HttpServerSocket
48 instance.setSoTimeout(timeout);
55 * timeout for the server.
57 public void setTimeout(int timeout) { argument
58 this.timeout = timeout;
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionRequest.java44 * the timeout expires, or the connection manager is
52 * @param timeout the timeout, 0 or negative for no timeout
53 * @param tunit the unit for the <code>timeout</code>,
54 * may be <code>null</code> only if there is no timeout
60 * in case of a timeout
64 ManagedClientConnection getConnection(long timeout, TimeUnit tunit) argument
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring_pulse.c32 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout) argument
42 // convert the timeout from microseconds to a number of times through
45 unsigned long maxloops = microsecondsToClockCycles(timeout) / 16;
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
H A Dprettyload.js60 function timeout() {
83 } else { timeout(); }
85 } else { timeout(); }
/external/chromium/net/socket/
H A Dclient_socket_pool.cc11 // TODO(ziadh): Change this timeout after getting histogram data on how long it
25 void ClientSocketPool::set_unused_idle_socket_timeout(int timeout) { argument
26 g_unused_idle_socket_timeout = 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
H A DAbstractCheckedFuture.java105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X { argument
107 return get(timeout, unit);
/external/iptables/include/linux/netfilter/
H A Dxt_IDLETIMER.h42 __u32 timeout; member in struct:idletimer_tg_info
/external/kernel-headers/original/linux/netfilter/
H A Dxt_IDLETIMER.h42 __u32 timeout; member in struct:idletimer_tg_info
/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/nist-sip/java/javax/sip/
H A DTimeoutEvent.java7 Timeout timeout) {
9 mTimeout = timeout;
13 Timeout timeout) {
15 mTimeout = timeout;
6 TimeoutEvent(Object source, ServerTransaction serverTransaction, Timeout timeout) argument
12 TimeoutEvent(Object source, ClientTransaction clientTransaction, Timeout timeout) argument
/external/qemu/
H A Dqemu-os-posix.h29 static inline void os_host_main_loop_wait(int *timeout) argument
/external/apache-http/src/org/apache/http/
H A DHttpClientConnection.java53 * implementations may completely ignore the timeout parameter.
55 * @param timeout the maximum time in milliseconds to wait for data
57 * even after waiting for <code>timeout</code> milliseconds.
60 boolean isResponseAvailable(int timeout) argument
H A DHttpConnection.java69 * that by attempting a read with a very small timeout. Thus this
80 * Sets the socket timeout value.
82 * @param timeout timeout value in milliseconds
84 void setSocketTimeout(int timeout); argument
87 * Returns the socket timeout value.
89 * @return positive value in milliseconds if a timeout is set,
90 * <code>0</code> if timeout is disabled or <code>-1</code> if
91 * timeout is undefined.
/external/apache-http/src/org/apache/http/conn/params/
H A DConnManagerParamBean.java48 public void setTimeout (final long timeout) { argument
49 params.setLongParameter(ConnManagerPNames.TIMEOUT, timeout);
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DPoolEntryRequest.java43 * Obtains a pool entry with a connection within the given timeout.
47 * @param timeout the timeout, 0 or negative for no timeout
48 * @param tunit the unit for the <code>timeout</code>,
49 * may be <code>null</code> only if there is no timeout
54 * if the timeout expired
59 long timeout,
58 getPoolEntry( long timeout, TimeUnit tunit) argument
/external/apache-http/src/org/apache/http/impl/io/
H A DSocketInputBuffer.java74 public boolean isDataAvailable(int timeout) throws IOException { argument
79 this.socket.setSoTimeout(timeout);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java59 boolean isDataAvailable(int timeout) throws IOException; argument
/external/bluetooth/bluedroid/bta/sys/
H A Dptim.c127 void ptim_start_timer(tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout) argument
139 p_tle->ticks = timeout;
/external/chromium/base/test/
H A Dtest_timeouts.cc23 int timeout; local
24 base::StringToInt(string_value, &timeout);
25 *value = std::max(*value, timeout);
43 // The timeout values should increase in the order they appear in this block.
77 // The timeout values should be increasing in the right order.
/external/chromium/third_party/libevent/
H A Depoll_sub.c49 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) argument
51 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
/external/chromium/third_party/libevent/sample/
H A Dtime-test.c36 struct event *timeout = arg; local
45 event_add(timeout, &tv);
51 struct event timeout; local
58 evtimer_set(&timeout, timeout_cb, &timeout);
62 event_add(&timeout, &tv);

Completed in 734 milliseconds

1234567891011>>