Home
last modified time | relevance | path

Searched refs:outEntry (Results 1 – 2 of 2) sorted by relevance

/external/v8/build/android/rezip/
DRezipApk.java247 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()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
DAbstractTransformTask.java163 ZipEntry outEntry = new ZipEntry(entry.getName()); in processJarFile() local
164 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()