Home
last modified time | relevance | path

Searched refs:totalBytesRead (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/mp3dec/test/
Dmp3reader.cpp248 ssize_t totalBytesRead = 0; in resync() local
271 totalBytesRead = sourceReadAt(fp, pos + remainingBytes, in resync()
274 if (totalBytesRead <= 0) { in resync()
277 reachEOS = (totalBytesRead != bytesToRead); in resync()
278 remainingBytes += totalBytesRead; in resync()
/frameworks/ex/framesequence/jni/
DStream.cpp123 size_t totalBytesRead = 0; in doRead() local
136 totalBytesRead += bytesRead; in doRead()
140 return totalBytesRead; in doRead()
/frameworks/av/media/libstagefright/
DMP3Extractor.cpp100 ssize_t totalBytesRead = 0; in Resync() local
124 totalBytesRead = source->readAt(pos + remainingBytes, in Resync()
127 if (totalBytesRead <= 0) { in Resync()
130 reachEOS = (totalBytesRead != bytesToRead); in Resync()
131 totalBytesRead += remainingBytes; in Resync()
132 remainingBytes = totalBytesRead; in Resync()