• Home
  • Raw
  • Download

Lines Matching refs:srcFile

1809     private void compressFile(Utility utility, File srcFile, String baseDir, boolean isCompression)  in compressFile()  argument
1814 … String entryName = (baseDir + srcFile.getName()).replace(File.separator, LINUX_FILE_SEPARATOR); in compressFile()
1817 srcFile.getName().toLowerCase(Locale.ENGLISH).endsWith(JSON_SUFFIX)) { in compressFile()
1819 jsonSpecialProcess(utility, srcFile, zipEntry); in compressFile()
1829 zipEntry.setCompressedSize(srcFile.length()); in compressFile()
1830 zipEntry.setSize(srcFile.length()); in compressFile()
1833 CRC32 crc = getCrcFromFile(utility, srcFile); in compressFile()
1844 fileInputStream = new FileInputStream(srcFile); in compressFile()
1927 private void infoSpecialProcess(Utility utility, File srcFile) in infoSpecialProcess() argument
1934 fileInputStream = new FileInputStream(srcFile); in infoSpecialProcess()
1937 bufferedReader.mark((int) srcFile.length() + 1); in infoSpecialProcess()
1973 private void jsonSpecialProcess(Utility utility, File srcFile, ZipEntry entry) in jsonSpecialProcess() argument
1980 fileInputStream = new FileInputStream(srcFile); in jsonSpecialProcess()
1983 bufferedReader.mark((int) srcFile.length() + 1); in jsonSpecialProcess()
1985 String srcName = srcFile.getName().toLowerCase(Locale.ENGLISH); in jsonSpecialProcess()
2246 File srcFile = new File(hapPath); in checkHapIsValid() local
2247 String fileStr = srcFile.getName(); in checkHapIsValid()
2342 File srcFile = new File(srcPath); in readStageHapVerifyInfo() local
2343 zipFile = new ZipFile(srcFile); in readStageHapVerifyInfo()
2366 File srcFile = new File(srcPath); in readFAHapVerifyInfo() local
2367 zipFile = new ZipFile(srcFile); in readFAHapVerifyInfo()