Searched refs:regularRecord (Results 1 – 1 of 1) sorted by relevance
558 AudioRecord regularRecord = new AudioRecord.Builder() in testAudioRecordBuilderHotword() local563 assertEquals(regularRecord.getState(), AudioRecord.STATE_INITIALIZED); in testAudioRecordBuilderHotword()564 assertFalse(regularRecord.isHotwordStream()); in testAudioRecordBuilderHotword()565 assertFalse(regularRecord.isHotwordLookbackStream()); in testAudioRecordBuilderHotword()566 regularRecord.startRecording(); in testAudioRecordBuilderHotword()567 regularRecord.read(ByteBuffer.allocateDirect(4096), 4096); in testAudioRecordBuilderHotword()568 regularRecord.stop(); in testAudioRecordBuilderHotword()569 regularRecord.release(); in testAudioRecordBuilderHotword()571 regularRecord = new AudioRecord.Builder() in testAudioRecordBuilderHotword()576 assertEquals(regularRecord.getState(), AudioRecord.STATE_INITIALIZED); in testAudioRecordBuilderHotword()[all …]