HomeSort by relevance Sort by last modified time
    Searched defs:closeIfOwnedBy (Results 1 - 5 of 5) 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/
HttpConnection.java 136 public void closeIfOwnedBy(Object owner) throws IOException {
137 Internal.instance.closeIfOwnedBy(connection, owner);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
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);
  /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);

Completed in 40 milliseconds