Lines Matching refs:sourceFile
1086 private void compress(File sourceFile, ZipOutputStream zipOutputStream, String name, in compress() argument
1091 if (sourceFile.isFile()) { in compress()
1092 ZipEntry zipEntry = getStoredZipEntry(sourceFile, name); in compress()
1094 in = new FileInputStream(sourceFile); in compress()
1101 File[] listFiles = sourceFile.listFiles(); in compress()
1105 ZipEntry zipEntry = getStoredZipEntry(sourceFile, name + "/"); in compress()
1108 ZipEntry zipEntry = getStoredZipEntry(sourceFile, name); in compress()
1134 private ZipEntry getStoredZipEntry(File sourceFile, String name) throws BundleException { in getStoredZipEntry() argument
1137 zipEntry.setCompressedSize(sourceFile.length()); in getStoredZipEntry()
1138 zipEntry.setSize(sourceFile.length()); in getStoredZipEntry()
1139 CRC32 crc = getCrcFromFile(sourceFile); in getStoredZipEntry()