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

  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 74 int totalBytesRead = 0;
76 totalBytesRead += get();
78 return totalBytesRead;
82 int totalBytesRead = 0;
88 totalBytesRead += count;
90 return totalBytesRead;
  /libcore/luni/src/test/java/libcore/java/net/
OldSocketTest.java     [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
SocketTest.java     [all...]
  /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/skia/src/images/
SkImageDecoder_libwebp.cpp 64 size_t totalBytesRead = 0;
66 unsigned char* dst = buffer + totalBytesRead;
75 totalBytesRead += bytesRead;
76 SkASSERT(bytesToRead + totalBytesRead == WEBP_VP8_HEADER_SIZE);
80 VP8StatusCode status = WebPGetFeatures(buffer, totalBytesRead, &features);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 752 final int totalBytesRead =
754 if (totalBytesRead > sizeLimit || totalBytesRead < 0) {
  /external/protobuf/java/src/main/java/com/google/protobuf/
CodedInputStream.java 697 final int totalBytesRead =
699 if (totalBytesRead > sizeLimit || totalBytesRead < 0) {
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
CodedInputStreamMicro.java 633 final int totalBytesRead =
635 if (totalBytesRead > sizeLimit || totalBytesRead < 0) {
  /frameworks/base/media/jni/mediaeditor/
VideoEditorMain.cpp     [all...]

Completed in 367 milliseconds