Searched refs:receivedByteCount (Results 1 – 7 of 7) sorted by relevance
/external/cronet/components/cronet/android/java/src/org/chromium/net/impl/ |
D | CronetUrlRequest.java | 544 String proxyServer, long receivedByteCount) { in prepareResponseInfoOnNetworkThread() argument 552 receivedByteCount); in prepareResponseInfoOnNetworkThread() 639 String proxyServer, long receivedByteCount) { in onRedirectReceived() argument 642 wasCached, negotiatedProtocol, proxyServer, receivedByteCount); in onRedirectReceived() 676 long receivedByteCount) { in onResponseStarted() argument 678 wasCached, negotiatedProtocol, proxyServer, receivedByteCount); in onResponseStarted() 721 int initialLimit, long receivedByteCount) { in onReadCompleted() argument 722 mResponseInfo.setReceivedByteCount(receivedByteCount); in onReadCompleted() 744 private void onSucceeded(long receivedByteCount) { in onSucceeded() argument 745 mResponseInfo.setReceivedByteCount(receivedByteCount); in onSucceeded() [all …]
|
D | CronetBidirectionalStream.java | 584 String[] headers, long receivedByteCount) { in onResponseHeadersReceived() argument 587 httpStatusCode, negotiatedProtocol, headers, receivedByteCount); in onResponseHeadersReceived() 615 int initialLimit, long receivedByteCount) { in onReadCompleted() argument 616 mResponseInfo.setReceivedByteCount(receivedByteCount); in onReadCompleted() 687 long receivedByteCount) { in onError() argument 689 mResponseInfo.setReceivedByteCount(receivedByteCount); in onError() 729 long receivedByteCount) { in onMetricsCollected() argument 737 receivedByteCount); in onMetricsCollected() 819 String negotiatedProtocol, String[] headers, long receivedByteCount) { in prepareResponseInfoOnNetworkThread() argument 822 null, receivedByteCount); in prepareResponseInfoOnNetworkThread()
|
D | UrlResponseInfoImpl.java | 51 String negotiatedProtocol, String proxyServer, long receivedByteCount) { in UrlResponseInfoImpl() argument 59 mReceivedByteCount = new AtomicLong(receivedByteCount); in UrlResponseInfoImpl()
|
D | CronetMetrics.java | 59 long requestEndMs, boolean socketReused, long sentByteCount, long receivedByteCount) { in CronetMetrics() argument 89 mReceivedByteCount = receivedByteCount; in CronetMetrics()
|
/external/cronet/components/cronet/android/test/javatests/src/org/chromium/net/ |
D | UrlResponseInfoTest.java | 45 final long receivedByteCount = 42; in testPublicAPI() local 49 wasCached, negotiatedProtocol, proxyServer, receivedByteCount); in testPublicAPI() 76 Assert.assertEquals(info.getReceivedByteCount(), receivedByteCount); in testPublicAPI() local
|
D | RequestFinishedInfoTest.java | 374 long receivedByteCount = 15; in testMetricsGetters() local 378 pushEnd, responseStart, requestEnd, socketReused, sentByteCount, receivedByteCount); in testMetricsGetters() 393 assertEquals(receivedByteCount, (long) metrics.getReceivedByteCount()); in testMetricsGetters()
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
D | MockWebServer.java | 660 return new RecordedRequest(request, headers.build(), chunkSizes, requestBody.receivedByteCount, 829 private long receivedByteCount; 845 receivedByteCount += byteCount;
|