Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java523 public boolean compareFileHash(String hashFilePathString) in compareFileHash() argument
525 if (!Files.exists(Paths.get(hashFilePathString))) { in compareFileHash()
526 infoLog("compareFileHash: File does not exist, path: " + hashFilePathString); in compareFileHash()
531 if (CONFIG_FILE_PATH.equals(hashFilePathString)) { in compareFileHash()
533 } else if (CONFIG_BACKUP_PATH.equals(hashFilePathString)) { in compareFileHash()
537 errorLog("compareFileHash: Unexpected hash file path: " + hashFilePathString); in compareFileHash()
541 readHashFile(hashFilePathString, prefixString); in compareFileHash()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreServiceTest.java214 private boolean compareFileHash(String hashFilePathString) { in compareFileHash() argument
216 return mBluetoothKeystoreService.compareFileHash(hashFilePathString); in compareFileHash()