Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/a2dp/
DA2dpServiceTest.java282 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectMissingAudioSinkUuid()
297 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectPriorityOff()
314 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectTimeout()
350 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingConnectDisconnectSuccess()
419 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testMaxConnectDevices()
473 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testCreateStateMachineStackEvents()
572 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testProcessAudioStateChangedCodecConfigChangedEvents()
638 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testDeleteStateMachineUnbondEvents()
701 doReturn(true).when(mMockNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testDeleteStateMachineDisconnectEvents()
1048 doReturn(true).when(mMockNativeInterface).connectA2dp(device); in connectDeviceWithCodecStatus()
DA2dpStateMachineTest.java236 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testOutgoingTimeout()
269 doReturn(true).when(mA2dpNativeInterface).connectA2dp(any(BluetoothDevice.class)); in testIncomingTimeout()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/a2dp/
DA2dpNativeInterface.java118 public boolean connectA2dp(BluetoothDevice device) { in connectA2dp() method in A2dpNativeInterface
DA2dpStateMachine.java196 if (!mA2dpNativeInterface.connectA2dp(mDevice)) { in processMessage()