Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dp/
DA2dpStateMachineTest.java306 doNothing().when(mA2dpService).codecConfigUpdated(any(BluetoothDevice.class), in testProcessCodecConfigEventCase()
330 verify(mA2dpService).codecConfigUpdated(mTestDevice, codecStatusSbcAndSbc, false); in testProcessCodecConfigEventCase()
353 verify(mA2dpService).codecConfigUpdated(mTestDevice, codecStatusSbcAndSbcAac, true); in testProcessCodecConfigEventCase()
360 verify(mA2dpService).codecConfigUpdated(mTestDevice, codecStatusAacAndSbcAac, false); in testProcessCodecConfigEventCase()
/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
DA2dpStateMachine.java664 mA2dpService.codecConfigUpdated(mDevice, mCodecStatus, false); in processCodecConfigEvent()
671 mA2dpService.codecConfigUpdated(mDevice, mCodecStatus, sameAudioFeedingParameters); in processCodecConfigEvent()
DA2dpService.java913 public void codecConfigUpdated(BluetoothDevice device, BluetoothCodecStatus codecStatus, in codecConfigUpdated() method in A2dpService