Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
DBluetoothKeystoreService.java558 private void readHashFile(String filePathString, String prefixString) in readHashFile() argument
564 InputStream fileStream = Files.newInputStream(Paths.get(filePathString)); in readHashFile()
580 private void readChecksumFile(String filePathString, String prefixString) throws IOException { in readChecksumFile() argument
581 if (!Files.exists(Paths.get(filePathString))) { in readChecksumFile()
584 byte[] allBytes = Files.readAllBytes(Paths.get(filePathString)); in readChecksumFile()
593 public void parseConfigFile(String filePathString) in parseConfigFile() argument
601 if (!Files.exists(Paths.get(filePathString))) { in parseConfigFile()
604 List<String> allLinesString = Files.readAllLines(Paths.get(filePathString)); in parseConfigFile()
640 public void loadEncryptionFile(String filePathString, boolean doDecrypt) in loadEncryptionFile() argument
643 if (!Files.exists(Paths.get(filePathString))) { in loadEncryptionFile()
[all …]
/packages/apps/Bluetooth/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()