Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/a2dpsink/
DA2dpSinkServiceTest.java263 StackEvent audioConfigChanged = in testGetAudioConfiguration() local
264 StackEvent.audioConfigChanged(mDevice1, TEST_SAMPLE_RATE, TEST_CHANNEL_COUNT); in testGetAudioConfiguration()
265 mService.messageFromNative(audioConfigChanged); in testGetAudioConfiguration()
278 StackEvent audioConfigChanged = in testOnAudioConfigChanged_withNullDevice_eventDropped() local
279 StackEvent.audioConfigChanged(null, TEST_SAMPLE_RATE, TEST_CHANNEL_COUNT); in testOnAudioConfigChanged_withNullDevice_eventDropped()
280 mService.messageFromNative(audioConfigChanged); in testOnAudioConfigChanged_withNullDevice_eventDropped()
289 StackEvent audioConfigChanged = in testOnAudioConfigChanged_withUnknownDevice_eventDropped() local
290 StackEvent.audioConfigChanged(mDevice1, TEST_SAMPLE_RATE, TEST_CHANNEL_COUNT); in testOnAudioConfigChanged_withUnknownDevice_eventDropped()
291 mService.messageFromNative(audioConfigChanged); in testOnAudioConfigChanged_withUnknownDevice_eventDropped()
DStackEventTest.java108 StackEvent event = StackEvent.audioConfigChanged(mDevice, sampleRate, channelCount); in testCreateAudioConfigurationChangedEvent()
DA2dpSinkStateMachineTest.java110 StackEvent.audioConfigChanged(mDevice, sampleRate, channelCount)); in sendAudioConfigChangedEvent()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/a2dpsink/
DStackEvent.java87 static StackEvent audioConfigChanged(BluetoothDevice device, int sampleRate, int channelCount) { in audioConfigChanged() method in StackEvent
DA2dpSinkNativeInterface.java169 StackEvent.audioConfigChanged(getDevice(address), sampleRate, channelCount); in onAudioConfigChanged()