Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dp/
H A DA2dpServiceTest.java333 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectMissingAudioSinkUuid()
349 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectPriorityOff()
368 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectTimeout()
398 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectDisconnectSuccess()
459 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testMaxConnectDevices()
510 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testCreateStateMachineStackEvents()
589 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testProcessAudioStateChangedCodecConfigChangedEvents()
653 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testDeleteStateMachineUnbondEvents()
711 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testDeleteStateMachineDisconnectEvents()
884 doReturn(true).when(mA2dpNativeInterface).connectA2dp(device); in connectDeviceWithCodecStatus()
H A DA2dpStateMachineTest.java214 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingTimeout()
250 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testIncomingTimeout()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
H A DA2dpNativeInterface.java98 public boolean connectA2dp(BluetoothDevice device) { in connectA2dp() method in A2dpNativeInterface
H A DA2dpStateMachine.java188 if (!mA2dpNativeInterface.connectA2dp(mDevice)) { in processMessage()