Searched defs:timeout (Results 51 - 75 of 644) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/util/concurrent/
H A DForwardingCheckedFuture.java50 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X { argument
51 return delegate().checkedGet(timeout, unit);
H A DForwardingFuture.java67 public V get(long timeout, TimeUnit unit) argument
69 return delegate().get(timeout, unit);
H A DListeningExecutorService.java84 * {@code List<ListenableFuture<T>> futures = (List) executor.invokeAll(tasks, timeout, unit);}
96 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
95 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DAbstractExecutorService.java115 long timeout, TimeUnit unit)
117 return doInvokeAny(tasks, true, unit.toNanos(timeout));
151 long timeout, TimeUnit unit)
155 long nanos = unit.toNanos(timeout);
114 invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
150 invokeAll(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/iptables/include/linux/netfilter/
H A Dxt_CT.h28 char timeout[32]; member in struct:xt_ct_target_info_v1
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CT.h35 char timeout[32]; member in struct:xt_ct_target_info_v1
/external/kernel-headers/original/uapi/linux/
H A Dpg.h48 int timeout; /* number of seconds before timeout */ member in struct:pg_write_hdr
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
H A DHttpsServiceConnectionSEIgnoringConnectionClose.java9 int timeout)
11 super(host, port, file, timeout);
8 HttpsServiceConnectionSEIgnoringConnectionClose(String host, int port, String file, int timeout) argument
H A DHttpsTransportSE.java22 private final int timeout; field in class:HttpsTransportSE
24 public HttpsTransportSE(String host, int port, String file, int timeout) { argument
31 this.timeout = timeout;
41 serviceConnection = new HttpsServiceConnectionSE(host, port, file, timeout);
/external/libchrome/base/test/
H A Dtest_timeouts.cc26 // timeout multiplier. See http://crbug.com/412471
48 int timeout; local
49 base::StringToInt(string_value, &timeout);
50 *value = std::max(*value, timeout);
70 // The timeout values should increase in the order they appear in this block.
105 // Test launcher timeout is independent from anything above action timeout.
109 // The timeout values should be increasing in the right order.
/external/libdrm/freedreno/
H A Dfreedreno_pipe.c79 uint64_t timeout)
81 return pipe->funcs->wait(pipe, timestamp, timeout);
78 fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp, uint64_t timeout) argument
/external/libdrm/tests/kms/
H A Dkms-steal-crtc.c119 struct timeval timeout; local
122 memset(&timeout, 0, sizeof(timeout));
123 timeout.tv_sec = 5;
124 timeout.tv_usec = 0;
129 err = select(nfds, &fds, NULL, NULL, &timeout);
/external/libevent/
H A Depoll_sub.c58 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout) argument
61 return (syscall(__NR_epoll_pwait, epfd, events, maxevents, timeout, NULL, 0));
63 return (syscall(__NR_epoll_wait, epfd, events, maxevents, timeout));
/external/libnfc-nci/src/nfa/sys/
H A Dnfa_sys_ptim.c131 void nfa_sys_ptim_start_timer (tPTIM_CB *p_cb, TIMER_LIST_ENT *p_tle, UINT16 type, INT32 timeout) argument
146 p_tle->ticks = timeout;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_syncobj.c83 /* We ignore the user-supplied timeout. This is weaselly -- we're allowed to
88 * timeout.
91 GLbitfield flags, GLuint64 timeout)
109 GLbitfield flags, GLuint64 timeout)
90 intel_client_wait_sync(struct gl_context *ctx, struct gl_sync_object *s, GLbitfield flags, GLuint64 timeout) argument
108 intel_server_wait_sync(struct gl_context *ctx, struct gl_sync_object *s, GLbitfield flags, GLuint64 timeout) argument
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_syncobj.c83 /* We ignore the user-supplied timeout. This is weaselly -- we're allowed to
88 * timeout.
91 GLbitfield flags, GLuint64 timeout)
109 GLbitfield flags, GLuint64 timeout)
90 intel_client_wait_sync(struct gl_context *ctx, struct gl_sync_object *s, GLbitfield flags, GLuint64 timeout) argument
108 intel_server_wait_sync(struct gl_context *ctx, struct gl_sync_object *s, GLbitfield flags, GLuint64 timeout) argument
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_syncobj.c83 /* We ignore the user-supplied timeout. This is weaselly -- we're allowed to
88 * timeout.
91 GLbitfield flags, GLuint64 timeout)
109 GLbitfield flags, GLuint64 timeout)
90 intel_client_wait_sync(struct gl_context *ctx, struct gl_sync_object *s, GLbitfield flags, GLuint64 timeout) argument
108 intel_server_wait_sync(struct gl_context *ctx, struct gl_sync_object *s, GLbitfield flags, GLuint64 timeout) argument
/external/mockito/src/org/mockito/internal/verification/
H A DVerificationWithTimeoutImpl.java14 int timeout; field in class:VerificationWithTimeoutImpl
19 this.timeout = millis;
26 while (soFar <= timeout) {
54 return timeout;
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DPing.java61 * response was canceled, or -2 if the timeout elapsed before the round
64 public long roundTripTime(long timeout, TimeUnit unit) throws InterruptedException { argument
65 if (latch.await(timeout, unit)) {
/external/okhttp/okio/okio/src/main/java/okio/
H A DDeflaterSink.java151 @Override public Timeout timeout() { method in class:DeflaterSink
152 return sink.timeout();
H A DForwardingTimeout.java41 @Override public Timeout timeout(long timeout, TimeUnit unit) { argument
42 return delegate.timeout(timeout, unit);
H A DInflaterSource.java118 @Override public Timeout timeout() { method in class:InflaterSource
119 return source.timeout();
H A DOkio.java65 private static Sink sink(final OutputStream out, final Timeout timeout) { argument
67 if (timeout == null) throw new IllegalArgumentException("timeout == null");
73 timeout.throwIfReached();
97 @Override public Timeout timeout() {
98 return timeout;
114 AsyncTimeout timeout = timeout(socket);
115 Sink sink = sink(socket.getOutputStream(), timeout);
116 return timeout
124 source(final InputStream in, final Timeout timeout) argument
209 private static AsyncTimeout timeout(final Socket socket) { method in class:Okio
[all...]
H A DTimeout.java30 * This class offers two complementary controls to define a timeout policy.
44 * An empty timeout that neither tracks nor detects timeouts. Use this when
49 @Override public Timeout timeout(long timeout, TimeUnit unit) {
73 * Wait at most {@code timeout} time before aborting an operation. Using a
74 * per-operation timeout means that as long as forward progress is being made,
77 * <p>If {@code timeout == 0}, operations will run indefinitely. (Operating
80 public Timeout timeout(long timeout, TimeUnit unit) { argument
81 if (timeout <
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DCarrierConfigFacade.java50 public boolean carrierConfigIsTetheringModeAllowed(String mode, Integer timeout) { argument
96 intent, PROVISION_REQUEST, timeout);

Completed in 868 milliseconds

1234567891011>>