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.java166 private boolean parseConfigFile(String filePathString) { in parseConfigFile() argument
168 mBluetoothKeystoreService.parseConfigFile(filePathString); in parseConfigFile()
175 private boolean loadEncryptionFile(String filePathString, boolean doDecrypt) { in loadEncryptionFile() argument
177 mBluetoothKeystoreService.loadEncryptionFile(filePathString, doDecrypt); in loadEncryptionFile()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java451 private void readHashFile(String filePathString, String prefixString) in readHashFile() argument
460 InputStream fileStream = Files.newInputStream(Paths.get(filePathString)); in readHashFile()
488 public void parseConfigFile(String filePathString) throws IOException, InterruptedException { in parseConfigFile() argument
495 if (!Files.exists(Paths.get(filePathString))) { in parseConfigFile()
498 List<String> allLinesString = Files.readAllLines(Paths.get(filePathString)); in parseConfigFile()
532 public void loadEncryptionFile(String filePathString, boolean doDecrypt) in loadEncryptionFile() argument
535 if (!Files.exists(Paths.get(filePathString))) { in loadEncryptionFile()
538 List<String> allLinesString = Files.readAllLines(Paths.get(filePathString)); in loadEncryptionFile()