Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/bluetoothKeystore/
H A DBluetoothKeystoreService.java563 private void readHashFile(String filePathString, String prefixString) in readHashFile() argument
572 InputStream fileStream = Files.newInputStream(Paths.get(filePathString)); in readHashFile()
597 private void readChecksumFile(String filePathString, String prefixString) throws IOException { in readChecksumFile() argument
598 if (!Files.exists(Paths.get(filePathString))) { in readChecksumFile()
601 byte[] allBytes = Files.readAllBytes(Paths.get(filePathString)); in readChecksumFile()
610 public void parseConfigFile(String filePathString) in parseConfigFile() argument
618 if (!Files.exists(Paths.get(filePathString))) { in parseConfigFile()
621 List<String> allLinesString = Files.readAllLines(Paths.get(filePathString)); in parseConfigFile()
657 public void loadEncryptionFile(String filePathString, boolean doDecrypt) in loadEncryptionFile() argument
660 if (!Files.exists(Paths.get(filePathString))) { in loadEncryptionFile()
[all …]
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/bluetoothKeystore/
H A 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()