Lines Matching refs:sourceFile
1699 private void compress(File sourceFile, ZipOutputStream zipOutputStream, String name, in compress() argument
1704 if (sourceFile.isFile()) { in compress()
1705 ZipEntry zipEntry = getStoredZipEntry(sourceFile, name); in compress()
1707 in = new FileInputStream(sourceFile); in compress()
1714 File[] listFiles = sourceFile.listFiles(); in compress()
1718 ZipEntry zipEntry = getStoredZipEntry(sourceFile, name + "/"); in compress()
1721 ZipEntry zipEntry = getStoredZipEntry(sourceFile, name); in compress()
1747 private ZipEntry getStoredZipEntry(File sourceFile, String name) throws BundleException { in getStoredZipEntry() argument
1750 zipEntry.setCompressedSize(sourceFile.length()); in getStoredZipEntry()
1751 zipEntry.setSize(sourceFile.length()); in getStoredZipEntry()
1752 CRC32 crc = getCrcFromFile(sourceFile); in getStoredZipEntry()