Home
last modified time | relevance | path

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

/cts/suite/audio_quality/client/src/com/android/cts/audiotest/
DAudioProtocol.java74 private AudioRecord mRecord = null; field in AudioProtocol
195 if (mRecord != null) { in reset()
196 if (mRecord.getState() != AudioRecord.STATE_UNINITIALIZED) { in reset()
197 mRecord.stop(); in reset()
199 mRecord.release(); in reset()
200 mRecord = null; in reset()
354 mRecord = new AudioRecord(type, samplingRate, in handleStartRecording()
358 mRecord.startRecording(); in handleStartRecording()
360 " recording state " + mRecord.getRecordingState() + " len " + in handleStartRecording()
367 int lenRead = mRecord.read(data, 0, (mRecordingLength - totalRead)); in handleStartRecording()
[all …]