HomeSort by relevance Sort by last modified time
    Searched refs:closeIfOwnedBy (Results 1 - 7 of 7) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Internal.java 56 public abstract void closeIfOwnedBy(Connection connection, Object owner) throws IOException;
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpTransport.java 135 httpConnection.closeIfOwnedBy(engine);
HttpConnection.java 136 public void closeIfOwnedBy(Object owner) throws IOException {
137 Internal.instance.closeIfOwnedBy(connection, owner);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
ConnectionPoolTest.java 511 @Test public void closeIfOwnedBy() throws Exception {
512 httpA.closeIfOwnedBy(owner);
518 httpA.closeIfOwnedBy(new Object());
525 spdyA.closeIfOwnedBy(owner);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 74 @Override public void closeIfOwnedBy(Connection connection, Object owner) throws IOException {
75 connection.closeIfOwnedBy(owner);
Connection.java 103 * closed with {@link #closeIfOwnedBy}.
121 void closeIfOwnedBy(Object owner) throws IOException {
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/
WebSocketCall.java 218 // TODO connection.closeIfOwnedBy(this);
219 Internal.instance.closeIfOwnedBy(connection, this);

Completed in 54 milliseconds