Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java560 String targetData = null; in tryCompute() local
566 while (targetData == null && counter < TRY_MAX) { in tryCompute()
568 targetData = encrypt(sourceData); in tryCompute()
570 targetData = decrypt(sourceData); in tryCompute()
574 return targetData; in tryCompute()
796 String targetData; in run() local
802 targetData = tryCompute(sourceData, mDoEncrypt); in run()
803 if (targetData != null) { in run()
804 mTargetDataMap.put(prefixString, targetData); in run()