Lines Matching refs:outEntry
247 JarEntry outEntry = new JarEntry(name); in makeStoredEntry() local
248 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() local
320 outEntry = makeStoredEntry(name, inEntry, in); in rezip()
334 outEntry = new JarEntry(inEntry); in rezip()
335 outEntry.setExtra(null); in rezip()
338 outEntry = new JarEntry(name); in rezip()
340 outEntry.setTime(timestamp); in rezip()
353 if (outEntry.getMethod() == JarEntry.STORED) { in rezip()
372 outEntry.setExtra(new byte[needed]); in rezip()
376 out.putNextEntry(outEntry); in rezip()