Searched defs:AsyncTimeout (Results 1 - 1 of 1) sorted by relevance

/external/okhttp/okio/okio/src/main/java/okio/
H A DAsyncTimeout.java40 public class AsyncTimeout extends Timeout { class in inherits:Timeout
43 * the order to be triggered. This class synchronizes on AsyncTimeout.class.
50 private static AsyncTimeout head;
56 private AsyncTimeout next;
73 AsyncTimeout node, long timeoutNanos, boolean hasDeadline) {
76 head = new AsyncTimeout();
95 for (AsyncTimeout prev = head; true; prev = prev.next) {
100 AsyncTimeout.class.notify(); // Wake up the watchdog when inserting at the front.
115 private static synchronized boolean cancelScheduledTimeout(AsyncTimeout node) {
117 for (AsyncTimeout pre
[all...]

Completed in 81 milliseconds