Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
H A DBluetoothKeystoreService.java528 public boolean compareFileHash(String hashFilePathString) in compareFileHash() argument
530 if (!Files.exists(Paths.get(hashFilePathString))) { in compareFileHash()
531 infoLog("compareFileHash: File does not exist, path: " + hashFilePathString); in compareFileHash()
536 if (CONFIG_FILE_PATH.equals(hashFilePathString)) { in compareFileHash()
538 } else if (CONFIG_BACKUP_PATH.equals(hashFilePathString)) { in compareFileHash()
542 errorLog("compareFileHash: Unexpected hash file path: " + hashFilePathString); in compareFileHash()
546 readHashFile(hashFilePathString, prefixString); in compareFileHash()
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
H A DBluetoothKeystoreServiceTest.java214 private boolean compareFileHash(String hashFilePathString) { in compareFileHash() argument
216 return mBluetoothKeystoreService.compareFileHash(hashFilePathString); in compareFileHash()