Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java350 public void setEncryptKeyOrRemoveKey(String prefixString, String decryptedString) in setEncryptKeyOrRemoveKey() argument
353 if (prefixString == null || decryptedString == null) { in setEncryptKeyOrRemoveKey()
357 if (decryptedString.isEmpty()) { in setEncryptKeyOrRemoveKey()
359 } else if (decryptedString.equals(CONFIG_FILE_HASH)) { in setEncryptKeyOrRemoveKey()
375 if (decryptedString.isEmpty()) { in setEncryptKeyOrRemoveKey()
380 mNameDecryptKey.put(prefixString, decryptedString); in setEncryptKeyOrRemoveKey()
DBluetoothKeystoreNativeInterface.java73 private void setEncryptKeyOrRemoveKeyCallback(String prefixString, String decryptedString) { in setEncryptKeyOrRemoveKeyCallback() argument
77 service.setEncryptKeyOrRemoveKey(prefixString, decryptedString); in setEncryptKeyOrRemoveKeyCallback()
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_btservice_BluetoothKeystore.cpp46 const std::string decryptedString) override { in set_encrypt_key_or_remove_key() argument
55 sCallbackEnv->NewStringUTF(decryptedString.c_str()); in set_encrypt_key_or_remove_key()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreServiceTest.java205 private boolean setEncryptKeyOrRemoveKey(String prefixString, String decryptedString) { in setEncryptKeyOrRemoveKey() argument
207 mBluetoothKeystoreService.setEncryptKeyOrRemoveKey(prefixString, decryptedString); in setEncryptKeyOrRemoveKey()