Home
last modified time | relevance | path

Searched refs:startPairing (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/bluetooth/
DBluetoothUnbondedDevicesPreferenceControllerTest.java161 verify(mUnbondedCachedDevice).startPairing(); in onDeviceClicked_startsPairing()
169 when(mUnbondedCachedDevice.startPairing()).thenReturn(false); in onDeviceClicked_pairingStartFails_resumesScanning()
180 when(mUnbondedCachedDevice.startPairing()).thenReturn(true); in onDeviceClicked_requestsPhonebookAccess()
192 when(mUnbondedCachedDevice.startPairing()).thenReturn(true); in onDeviceClicked_requestsMessageAccess()
DBluetoothDevicePickerPreferenceControllerTest.java214 verify(mUnbondedCachedDevice).startPairing(); in onDeviceClicked_unbondedDevice_needsAuth_startsPairing()
226 when(mUnbondedCachedDevice.startPairing()).thenReturn(false); in onDeviceClicked_unbondedDevice_needsAuth_pairingStartFails_resumesScanning()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DBluetoothDevicePairer.java420 public void startPairing(BluetoothDevice device) { in startPairing() method in BluetoothDevicePairer
421 startPairing(device, true); in startPairing()
462 private void startPairing(BluetoothDevice device, boolean isManual) { in startPairing() method in BluetoothDevicePairer
527 startPairing(mTarget, false); in updatePairingState()
DAddAccessoryActivity.java492 mBluetoothPairer.startPairing(target); in btDeviceClicked()
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/
DBluetoothDevicePreferenceTest.java135 when(mCachedBluetoothDevice.startPairing()).thenReturn(true); in onClicked_deviceNotBonded_shouldLogBluetoothPairEvent()
151 when(mCachedBluetoothDevice.startPairing()).thenReturn(true); in onClicked_deviceNotBonded_shouldLogBluetoothPairEventAndPairWithoutNameEvent()
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
DBluetoothUnbondedDevicesPreferenceController.java60 if (cachedDevice.startPairing()) { in onDeviceClickedInternal()
DBluetoothDevicePickerPreferenceController.java101 if (cachedDevice.startPairing()) { in onDeviceClickedInternal()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothDevicePreference.java309 if (!mCachedDevice.startPairing()) { in pair()