Searched refs:pairingRequest (Results 1 – 2 of 2) sorted by relevance
478 Intent pairingRequest = new Intent(BluetoothDevice.ACTION_PAIRING_REQUEST); in sendPairingKey() local479 pairingRequest.putExtra(BluetoothDevice.EXTRA_PAIRING_KEY, pairingKey); in sendPairingKey()480 pairingRequest.putExtra(BluetoothDevice.EXTRA_DEVICE, mMockBluetoothDevice); in sendPairingKey()481 mTestGattServer.mPairingAttemptsReceiver.onReceive(mMockContext, pairingRequest); in sendPairingKey()
425 boolean processKeyBasedPairing(byte[] pairingRequest) { in processKeyBasedPairing() argument429 if (pairingRequest.length == 80) { in processKeyBasedPairing()431 final byte[] remotePublicKey = Arrays.copyOfRange(pairingRequest, 16, 80); in processKeyBasedPairing()445 byte[] encryptedRequest = Arrays.copyOfRange(pairingRequest, 0, 16); in processKeyBasedPairing()