Home
last modified time | relevance | path

Searched refs:bodySource (Results 1 – 3 of 3) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
DCache.java694 private final BufferedSource bodySource; field in CacheResponseBody
705 bodySource = Okio.buffer(new ForwardingSource(source) { in CacheResponseBody()
726 return bodySource; in source()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCacheTest.java486 BufferedSource bodySource = get(server.url("/")).body().source(); in testServerPrematureDisconnect() local
487 assertEquals("ABCDE", bodySource.readUtf8Line()); in testServerPrematureDisconnect()
489 bodySource.readUtf8Line(); in testServerPrematureDisconnect()
493 bodySource.close(); in testServerPrematureDisconnect()
DCallTest.java665 BufferedSource bodySource = response.body().source(); in timeoutsUpdatedOnReusedConnections() local
666 assertEquals('d', bodySource.readByte()); in timeoutsUpdatedOnReusedConnections()
671 bodySource.readByte(); in timeoutsUpdatedOnReusedConnections()