Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java417 public boolean compareFileHash(String hashFilePathString) in compareFileHash() argument
419 if (!Files.exists(Paths.get(hashFilePathString))) { in compareFileHash()
420 infoLog("compareFileHash: File does not exist, path: " + hashFilePathString); in compareFileHash()
425 if (CONFIG_FILE_PATH.equals(hashFilePathString)) { in compareFileHash()
429 errorLog("compareFileHash: Unexpected hash file path: " + hashFilePathString); in compareFileHash()
433 readHashFile(hashFilePathString, prefixString); in compareFileHash()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreServiceTest.java193 private boolean compareFileHash(String hashFilePathString) { in compareFileHash() argument
195 return mBluetoothKeystoreService.compareFileHash(hashFilePathString); in compareFileHash()