Searched defs:timeout (Results 1 - 25 of 615) 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/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dpoll.c8 int poll(struct pollfd *fds, nfds_t nfds, int timeout) { argument
9 return ki_poll(fds, nfds, timeout);
H A Dselect.c9 fd_set* exceptfds, struct timeval* timeout) {
10 return ki_select(nfds, readfds, writefds, exceptfds, timeout);
8 select(int nfds, fd_set* readfds, fd_set* writefds, fd_set* exceptfds, struct timeval* timeout) argument
/external/libppp/src/
H A Dtun.h32 u_int32_t timeout; member in union:tun_data::__anon20471
/external/chromium_org/chrome/browser/notifications/
H A Dmessage_center_notification_manager_win.cc18 base::TimeDelta timeout) {
19 first_run_idle_timeout_ = timeout;
17 SetFirstRunTimeoutForTest( base::TimeDelta timeout) argument
/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/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DScalableTimeout.java16 public static long ScaleTimeout(long timeout) { argument
26 return (long)(timeout * sTimeoutScale);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DPingLoader.h77 void timeout(Timer<PingLoader>*) { delete this; } function in class:WebCore::PingLoader
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDOMWindowTimers.cpp43 int setTimeout(EventTarget* eventTarget, PassOwnPtr<ScheduledAction> action, int timeout) argument
45 return DOMTimer::install(eventTarget->scriptExecutionContext(), action, timeout, true);
48 int setInterval(EventTarget* eventTarget, PassOwnPtr<ScheduledAction> action, int timeout) argument
50 return DOMTimer::install(eventTarget->scriptExecutionContext(), action, timeout, false);
/external/chromium_org/third_party/mesa/src/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
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprtpool.h54 PRIntervalTime timeout; member in struct:PRJobIoDesc
92 PR_QueueJob_Timer(PRThreadPool *tpool, PRIntervalTime 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/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/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
/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/smack/src/org/jivesoftware/smack/util/
H A DSyncPacketSend.java35 static public Packet getReply(Connection connection, Packet packet, long timeout) argument
44 Packet result = response.nextResult(timeout);
/external/smack/src/org/jivesoftware/smackx/pubsub/packet/
H A DSyncPacketSend.java35 static public Packet getReply(Connection connection, Packet packet, long timeout) argument
44 Packet result = response.nextResult(timeout);

Completed in 1167 milliseconds

1234567891011>>