Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DBluetoothPairingDialog.java153 int pairingKey = in onCreate() local
155 if (pairingKey == BluetoothDevice.ERROR) { in onCreate()
162 mPairingKey = String.format("%06d", pairingKey); in onCreate()
164 mPairingKey = String.format("%04d", pairingKey); in onCreate()
425 String pairingKey, int type) { in newInstance() argument
429 b.putString(ARG_PAIRING_KEY, pairingKey); in newInstance()
DBluetoothPairingRequest.java57 int pairingKey = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_KEY, in onReceive() local
59 pairingIntent.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey); in onReceive()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPairingService.java75 int pairingKey = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_KEY, in getPairingDialogIntent() local
77 pairingIntent.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey); in getPairingDialogIntent()
182 int pairingKey = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_KEY, in createPairingNotification() local
184 pairingDialogIntent.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey); in createPairingNotification()
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
DBluetoothPairingService.java67 int pairingKey = intent.getIntExtra(BluetoothDevice.EXTRA_PAIRING_KEY, in getPairingDialogIntent() local
69 pairingIntent.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey); in getPairingDialogIntent()
/packages/services/Car/service/src/com/android/car/bluetooth/
DFastPairGattServer.java854 private boolean processPairingKey(byte[] pairingKey) { in processPairingKey() argument
855 if (pairingKey == null || pairingKey.length != 16) { in processPairingKey()
860 byte[] decryptedRequest = decrypt(pairingKey, mSharedSecretKey); in processPairingKey()