Searched refs:outEntry (Results 1 – 2 of 2) sorted by relevance
247 JarEntry outEntry = new JarEntry(name); in makeStoredEntry() local248 outEntry.setMethod(JarEntry.STORED); in makeStoredEntry()251 outEntry.setCrc(inEntry.getCrc()); in makeStoredEntry()252 outEntry.setSize(inEntry.getSize()); in makeStoredEntry()265 outEntry.setCrc(crc.getValue()); in makeStoredEntry()266 outEntry.setSize(size); in makeStoredEntry()268 return outEntry; in makeStoredEntry()316 JarEntry outEntry = null; in rezip() local320 outEntry = makeStoredEntry(name, inEntry, in); in rezip()334 outEntry = new JarEntry(inEntry); in rezip()[all …]
163 ZipEntry outEntry = new ZipEntry(entry.getName()); in processJarFile() local164 outEntry.setMethod(entry.getMethod()); in processJarFile()165 outEntry.setComment(entry.getComment()); in processJarFile()166 outEntry.setSize(bytes.length); in processJarFile()169 if(outEntry.getMethod() == ZipEntry.STORED){ in processJarFile()172 outEntry.setCrc( crc.getValue() ); in processJarFile()173 outEntry.setCompressedSize(bytes.length); in processJarFile()175 out.putNextEntry(outEntry); in processJarFile()