HomeSort by relevance Sort by last modified time
    Searched defs:zis (Results 1 - 25 of 553) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/brotli/java/org/brotli/integration/
BundleHelper.java 26 ZipInputStream zis = new ZipInputStream(input); local
29 while ((entry = zis.getNextEntry()) != null) {
33 zis.closeEntry();
36 zis.close();
52 ZipInputStream zis = new ZipInputStream(input); local
55 while ((entry = zis.getNextEntry()) != null) {
57 byte[] result = readStream(zis);
58 zis.closeEntry();
61 zis.closeEntry();
64 zis.close()
    [all...]
BundleChecker.java 61 ZipInputStream zis = new ZipInputStream(input); local
66 while ((entry = zis.getNextEntry()) != null) {
71 zis.closeEntry();
77 if (entryCrc != decompressAndCalculateCrc(zis) && !sanityCheck) {
85 zis.closeEntry();
89 zis.close();
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipInputStreamTest.java 33 private ZipInputStream zis; field in class:OldZipInputStreamTest
42 zis = new ZipInputStream(is);
55 if (zis != null) {
56 zis.close();
119 zis.getNextEntry();
120 zis.closeEntry();
121 zis.getNextEntry();
122 zis.close();
124 zis.closeEntry();
ZipInputStreamTest.java 117 ZipInputStream zis = new ZipInputStream(new ByteArrayInputStream( local
120 assertEquals(1, zis.available());
121 zis.getNextEntry();
122 assertEquals(1, zis.available());
123 zis.closeEntry();
127 assertEquals(0, zis.available());
130 zis.getNextEntry();
131 Streams.readFullyNoClose(zis);
132 assertEquals(0, zis.available());
135 zis.getNextEntry()
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipInputStreamTest.java 43 private ZipInputStream zis; field in class:ZipInputStreamTest
56 zis = new ZipInputStream(is);
74 if (zis != null) {
76 zis.close();
86 zentry = zis.getNextEntry();
87 zis.closeEntry();
95 zis.close();
97 zis.read(rbuf, 0, 1);
109 zis.close();
111 zis.close()
    [all...]
ZipOutputStreamTest.java 47 ZipInputStream zis; field in class:ZipOutputStreamTest
112 zis = new ZipInputStream(new ByteArrayInputStream(bos.toByteArray()));
113 ZipEntry ze2 = zis.getNextEntry();
114 zis.closeEntry();
197 zis = new ZipInputStream(new ByteArrayInputStream(bos.toByteArray()));
198 zis.getNextEntry();
202 while (count != b.length && (r = zis.read(b, count, b.length)) != -1) {
205 zis.closeEntry();
317 try (ZipInputStream zis = new ZipInputStream(new ByteArrayInputStream(bos.toByteArray()))) {
319 ZipEntry readEntry = zis.getNextEntry()
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 167 InputStream zis = zipFile.getInputStream(entry); local
185 actual = zis.read(copyBuf);
192 zis.close();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoader.java 160 ZipInputStream zis = new ZipInputStream(fis); local
162 while ((entry = zis.getNextEntry()) != null) {
182 byte[] data = readZipData(zis, (int)entrySize);
227 ZipInputStream zis = new ZipInputStream(fis); local
230 while ((entry = zis.getNextEntry()) != null) {
252 data = readZipData(zis, (int)entrySize);
277 Closeables.closeQuietly(zis);
371 ZipInputStream zis = new ZipInputStream(fis); local
376 while ((entry = zis.getNextEntry()) != null) {
386 data = readZipData(zis, (int)entrySize)
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
RamDisk.java 55 final GZIPInputStream zis = new GZIPInputStream(in); local
60 int read = zis.read(buffer);
66 read = zis.read(buffer);
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
TestUtils.java 66 try (ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile.toFile()))) {
67 ZipEntry ze = zis.getNextEntry();
79 while ((len = zis.read(buffer)) > 0) {
84 zis.closeEntry();
85 ze = zis.getNextEntry();
  /tools/metalava/src/main/java/com/android/tools/metalava/apilevels/
AndroidJarReader.java 116 ZipInputStream zis = new ZipInputStream(fis); local
117 ZipEntry entry = zis.getNextEntry();
122 byte[] bytes = ByteStreams.toByteArray(zis);
125 entry = zis.getNextEntry();
171 entry = zis.getNextEntry();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAssetManager.java 389 ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile)); local
390 ZipEntry ze = zis.getNextEntry();
394 ze = zis.getNextEntry();
401 while ((len = zis.read(buffer)) > 0) {
407 zis.closeEntry();
408 zis.close();
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/xml/
Processor.java 131 ZipInputStream zis = new ZipInputStream(input); local
202 while ((ze = zis.getNextEntry()) != null) {
205 processEntry(zis, ze, inDocHandlerFactory);
208 copyEntry(zis, os);
247 final ZipInputStream zis,
256 // ClassReader cr = new ClassReader(readEntry(zis, ze));
264 ClassReader cr = new ClassReader(readEntry(zis, ze));
272 ? (InputStream) new ProtectedInputStream(zis)
273 : new ByteArrayInputStream(readEntry(zis, ze))));
336 private byte[] readEntry(ZipInputStream zis, ZipEntry ze
    [all...]
  /frameworks/base/core/java/android/os/
RecoverySystem.java 363 ZipInputStream zis = new ZipInputStream(inputStream); local
365 while ((entry = zis.getNextEntry()) != null) {
372 Streams.readFully(zis, bytes);
    [all...]
  /prebuilts/tools/common/api-generator/
api-generator-22.9.1.jar 
api-generator-22.9.2.jar 
api-generator-22.9.3.jar 
api-generator-22.9.4.jar 
api-generator-26.0.0.jar 
api-generator-25.0.0.jar 
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/0.5.7/
builder-0.5.7.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-alpha1/
lint-24.3.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint/24.3.0-alpha2/
lint-24.3.0-alpha2.jar 

Completed in 1455 milliseconds

1 2 3 4 5 6 7 8 91011>>