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

  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TestHelper_ClassLoader.java 112 int dataRead = 0;
113 while (dataRead < length) {
114 int count = theInput.read(theBytes, dataRead,
115 theBytes.length - dataRead);
119 dataRead += count;
122 if (dataRead > 0) {
125 dataRead);
174 int dataRead = 0;
175 while (dataRead < size) {
176 int count = theStream.read(theBytes, dataRead, theBytes.lengt
    [all...]
  /frameworks/base/media/libstagefright/
FileSource.cpp 175 int64_t dataRead = 0;
176 dataRead = size > mDrmBufSize ? mDrmBufSize : size;
177 memcpy(data, (void*)mDrmBuf, dataRead);
178 return dataRead;

Completed in 562 milliseconds