Home | History | Annotate | Download | only in okio

Lines Matching refs:timedOut

26  * <p>Subclasses should override {@link #timedOut} to take action when a timeout
38 * #timedOut} is asynchronous, and may be called after {@link #exit}.
141 protected void timedOut() {
146 * timeouts. This works best if {@link #timedOut} is overridden to interrupt
202 * implement timeouts. This works best if {@link #timedOut} is overridden to
249 boolean timedOut = exit();
250 if (timedOut && throwOnTimeout) throw newTimeoutException(null);
286 AsyncTimeout timedOut = awaitTimeout();
289 if (timedOut == null) continue;
292 timedOut.timedOut();