Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreServiceTest.java187 private boolean parseConfigFile(String filePathString) { in parseConfigFile() argument
189 mBluetoothKeystoreService.parseConfigFile(filePathString); in parseConfigFile()
196 private boolean loadEncryptionFile(String filePathString, boolean doDecrypt) { in loadEncryptionFile() argument
198 mBluetoothKeystoreService.loadEncryptionFile(filePathString, doDecrypt); in loadEncryptionFile()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java537 private void readHashFile(String filePathString, String prefixString) in readHashFile() argument
546 InputStream fileStream = Files.newInputStream(Paths.get(filePathString)); in readHashFile()
575 public void parseConfigFile(String filePathString) in parseConfigFile() argument
583 if (!Files.exists(Paths.get(filePathString))) { in parseConfigFile()
586 List<String> allLinesString = Files.readAllLines(Paths.get(filePathString)); in parseConfigFile()
622 public void loadEncryptionFile(String filePathString, boolean doDecrypt) in loadEncryptionFile() argument
625 if (!Files.exists(Paths.get(filePathString))) { in loadEncryptionFile()
628 List<String> allLinesString = Files.readAllLines(Paths.get(filePathString)); in loadEncryptionFile()