Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java668 String targetData = null; in tryCompute() local
674 while (targetData == null && counter < TRY_MAX) { in tryCompute()
676 targetData = encrypt(sourceData); in tryCompute()
678 targetData = decrypt(sourceData); in tryCompute()
682 return targetData; in tryCompute()
901 String targetData; in run() local
907 targetData = tryCompute(sourceData, mDoEncrypt); in run()
908 if (targetData != null) { in run()
909 mTargetDataMap.put(prefixString, targetData); in run()