Home
last modified time | relevance | path

Searched refs:totalRead (Results 1 – 2 of 2) sorted by relevance

/cts/suite/audio_quality/client/src/com/android/cts/audiotest/
DAudioProtocol.java145 int totalRead = 0; in read() local
146 while (totalRead < len) { in read()
147 int readNow = in.read(buffer.array(), totalRead, len - totalRead); in read()
152 totalRead += readNow; in read()
365 int totalRead = 0; in handleStartRecording()
366 while (totalRead < mRecordingLength) { in handleStartRecording()
367 int lenRead = mRecord.read(data, 0, (mRecordingLength - totalRead)); in handleStartRecording()
375 totalRead += lenRead; in handleStartRecording()
/cts/suite/audio_quality/test_description/
Dprocessing_main.py147 totalRead = 0
148 while totalRead < length:
149 raw = self.conn.recv(length - totalRead)
153 totalRead += justRead