Home
last modified time | relevance | path

Searched refs:RouteException (Results 1 – 8 of 8) sorted by relevance

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
DRouteExceptionTest.java28 RouteException re = new RouteException(firstException); in getConnectionIOException_single()
36 RouteException re = new RouteException(firstException); in getConnectionIOException_multiple()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DConnection.java28 import com.squareup.okhttp.internal.http.RouteException;
153 List<ConnectionSpec> connectionSpecs, boolean connectionRetryEnabled) throws RouteException { in connect()
156 RouteException routeException = null; in connect()
163 throw new RouteException(new UnknownServiceException( in connect()
180 routeException = new RouteException(e); in connect()
362 throws RouteException { in connectAndSetOwner()
476 throws RouteException { in setTimeouts()
484 throw new RouteException(e); in setTimeouts()
DCall.java21 import com.squareup.okhttp.internal.http.RouteException;
272 } catch (RouteException e) { in getResponse()
DOkHttpClient.java25 import com.squareup.okhttp.internal.http.RouteException;
129 HttpEngine owner, Request request) throws RouteException {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DRouteException.java26 public final class RouteException extends Exception { class
39 public RouteException(IOException cause) { in RouteException() method in RouteException
DHttpEngine.java219 public void sendRequest() throws RequestException, RouteException, IOException { in sendRequest()
316 private void connect() throws RequestException, RouteException { in connect()
333 private Connection createNextConnection() throws RouteException { in createNextConnection()
348 throw new RouteException(e); in createNextConnection()
404 public HttpEngine recover(RouteException e) { in recover()
422 private boolean isRecoverable(RouteException e) { in isRecoverable()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DInternal.java29 import com.squareup.okhttp.internal.http.RouteException;
86 HttpEngine owner, Request request) throws RouteException; in connectAndSetOwner()
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DHttpURLConnectionImpl.java41 import com.squareup.okhttp.internal.http.RouteException;
472 } catch (RouteException e) { in execute()