Home
last modified time | relevance | path

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

/platform_testing/libraries/audio-test-harness/server/src/test/java/com/android/media/audiotestharness/server/service/
DAudioCaptureSessionFactoryImplTests.java51 AudioCaptureSessionFactoryImpl mAudioCaptureSessionFactory; field in AudioCaptureSessionFactoryImplTests
60 this.mAudioCaptureSessionFactory = in setUp()
67 mAudioCaptureSessionFactory.createCaptureSession(mStreamObserver, mAudioCapturer)); in createCaptureSession_returnsNonNullCaptureSession()
73 mAudioCaptureSessionFactory.createCaptureSession(mStreamObserver, mAudioCapturer); in createCaptureSession_usesUniqueIdentifiers()
75 mAudioCaptureSessionFactory.createCaptureSession(mStreamObserver, mAudioCapturer); in createCaptureSession_usesUniqueIdentifiers()
77 mAudioCaptureSessionFactory.createCaptureSession(mStreamObserver, mAudioCapturer); in createCaptureSession_usesUniqueIdentifiers()
DAudioTestHarnessImplTests.java78 @Mock AudioCaptureSessionFactory mAudioCaptureSessionFactory; field in AudioTestHarnessImplTests
96 mAudioCaptureSessionFactory, in setUp()
110 when(mAudioCaptureSessionFactory.createCaptureSession(any(), any())) in setUp()
135 verify(mAudioCaptureSessionFactory).createCaptureSession(any(), eq(mAudioCapturer)); in capture_properlyCreatesCaptureSession()
142 reset(mAudioCaptureSessionFactory); in capture_callsStopOnSessionWhenCanceled()
143 when(mAudioCaptureSessionFactory.createCaptureSession(any(), any())) in capture_callsStopOnSessionWhenCanceled()
211 reset(mAudioCaptureSessionFactory); in capture_throwsProperStatusException_failureToStartCapturer()
212 when(mAudioCaptureSessionFactory.createCaptureSession(any(), any())) in capture_throwsProperStatusException_failureToStartCapturer()
/platform_testing/libraries/audio-test-harness/server/src/main/java/com/android/media/audiotestharness/server/service/
DAudioTestHarnessImpl.java53 private final AudioCaptureSessionFactory mAudioCaptureSessionFactory; field in AudioTestHarnessImpl
63 mAudioCaptureSessionFactory = audioCaptureSessionFactory; in AudioTestHarnessImpl()
110 mAudioCaptureSessionFactory.createCaptureSession( in capture()