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

  /external/webkit/Source/WebCore/platform/posix/
SharedBufferPOSIX.cpp 63 size_t totalBytesRead = 0;
65 while ((bytesRead = read(fd, result->m_buffer.data() + totalBytesRead, bytesToRead - totalBytesRead)) > 0)
66 totalBytesRead += bytesRead;
70 return totalBytesRead == bytesToRead ? result.release() : 0;
  /external/webkit/Source/WebCore/platform/brew/
SharedBufferBrew.cpp 63 size_t totalBytesRead = 0;
65 while ((bytesRead = IFILE_Read(file.get(), result->m_buffer.data() + totalBytesRead, fileSize - totalBytesRead)) > 0)
66 totalBytesRead += bytesRead;
67 result->m_size = totalBytesRead;
69 if (totalBytesRead != fileSize) {
  /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/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) {
  /external/quake/src/com/android/quake/
DownloaderActivity.java     [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorMain.cpp     [all...]

Completed in 1249 milliseconds