HomeSort by relevance Sort by last modified time
    Searched refs:totalBytesRead (Results 1 - 25 of 47) sorted by null

1 2

  /external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
ClientEndpoint.java 64 int totalBytesRead = 0;
65 while (totalBytesRead < buffer.length) {
66 int remaining = buffer.length - totalBytesRead;
67 int bytesRead = input.read(buffer, totalBytesRead, remaining);
71 totalBytesRead += bytesRead;
73 return totalBytesRead;
ServerEndpoint.java 160 int totalBytesRead = 0;
161 while (totalBytesRead < messageSize) {
162 int remaining = messageSize - totalBytesRead;
163 int bytesRead = inputStream.read(buffer, totalBytesRead, remaining);
167 totalBytesRead += bytesRead;
169 return totalBytesRead;
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 72 int totalBytesRead = 0;
74 totalBytesRead += get();
76 return totalBytesRead;
80 int totalBytesRead = 0;
86 totalBytesRead += count;
88 return totalBytesRead;
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
Progress.java 96 long totalBytesRead = 0L;
100 totalBytesRead += bytesRead != -1 ? bytesRead : 0;
101 progressListener.update(totalBytesRead, responseBody.contentLength(), bytesRead == -1);
  /frameworks/ex/framesequence/jni/
Stream.cpp 123 size_t totalBytesRead = 0;
136 totalBytesRead += bytesRead;
140 return totalBytesRead;
  /external/skia/experimental/DrawingBoard/
SampleDrawingClient.cpp 201 size_t totalBytesRead = 0;
202 while (totalBytesRead < fBuffer.count()) {
204 status = reader.playback(fBuffer.begin() + totalBytesRead,
205 fBuffer.count() - totalBytesRead,
208 totalBytesRead += bytesRead;
SampleDrawingServer.cpp 163 size_t totalBytesRead = 0;
164 while (totalBytesRead < fBuffer.count()) {
166 stat = reader.playback(fBuffer.begin() + totalBytesRead,
167 fBuffer.count() - totalBytesRead,
170 totalBytesRead += bytesRead;
  /frameworks/av/media/libstagefright/codecs/mp3dec/test/
mp3reader.cpp 248 ssize_t totalBytesRead = 0;
271 totalBytesRead = sourceReadAt(fp, pos + remainingBytes,
274 if (totalBytesRead <= 0) {
277 reachEOS = (totalBytesRead != bytesToRead);
278 remainingBytes += totalBytesRead;
  /packages/apps/Test/connectivity/PMC/src/com/android/pmc/
WifiDownloadReceiver.java 163 int totalBytesRead = 0;
171 totalBytesRead += bytesRead;
182 return totalBytesRead;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
SocketTest.java     [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
RealBufferedSink.java 101 long totalBytesRead = 0;
103 totalBytesRead += readCount;
106 return totalBytesRead;
Buffer.java 955 long totalBytesRead = 0;
957 totalBytesRead += readCount;
959 return totalBytesRead;
    [all...]
  /external/skia/experimental/Networking/
SkSockets.cpp 88 int totalBytesRead = 0;
165 totalBytesRead += bytesReadInTransfer;
168 return totalBytesRead;
  /external/rmi4utils/rmidevice/
hiddevice.cpp 227 size_t totalBytesRead;
242 for (totalBytesRead = 0; totalBytesRead < len; totalBytesRead += bytesReadPerRequest) {
244 if ((len - totalBytesRead) < bytesPerRequest)
295 return totalBytesRead;
  /frameworks/av/media/libstagefright/
MP3Extractor.cpp 100 ssize_t totalBytesRead = 0;
124 totalBytesRead = source->readAt(pos + remainingBytes,
127 if (totalBytesRead <= 0) {
130 reachEOS = (totalBytesRead != bytesToRead);
131 totalBytesRead += remainingBytes;
132 remainingBytes = totalBytesRead;
  /external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 635 final int totalBytesRead =
637 if (totalBytesRead > sizeLimit || totalBytesRead < 0) {
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java     [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.6.0/
okio-1.6.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.8.0/
okio-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okio/okio/1.9.0/
okio-1.9.0.jar 
  /external/protobuf/csharp/src/Google.Protobuf/
CodedInputStream.cs     [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-core/0.13.2/
grpc-core-0.13.2.jar 
  /prebuilts/tools/common/m2/repository/org/xerial/sqlite-jdbc/3.16.1/
sqlite-jdbc-3.16.1.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-transport/4.1.0.CR3/
netty-transport-4.1.0.CR3.jar 

Completed in 5384 milliseconds

1 2