Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfp/
DHeadsetServiceAndStateMachineTest.java200 doReturn(true).when(mNativeInterface).connectHfp(any(BluetoothDevice.class)); in setUp()
294 verify(mNativeInterface).connectHfp(device); in testConnectFromApi()
337 verify(mNativeInterface).connectHfp(device); in testUnbondDevice_disconnectBeforeUnbond()
378 verify(mNativeInterface, after(ASYNC_CALL_TIMEOUT_MILLIS)).connectHfp(device); in testUnbondDevice_disconnectAfterUnbond()
DHeadsetServiceTest.java128 doReturn(true).when(mNativeInterface).connectHfp(any(BluetoothDevice.class)); in setUp()
DHeadsetStateMachineTest.java104 doReturn(true).when(mNativeInterface).connectHfp(mTestDevice); in setUp()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetNativeInterface.java263 public boolean connectHfp(BluetoothDevice device) { in connectHfp() method in HeadsetNativeInterface
DHeadsetStateMachine.java470 if (!mNativeInterface.connectHfp(device)) { in processMessage()