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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
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...]
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();
ZipOutputStreamTest.java 127 try (ZipInputStream zis = new ZipInputStream(new ByteArrayInputStream(bos.toByteArray()))) {
128 ZipEntry entry = zis.getNextEntry();
  /external/brotli/java/org/brotli/integration/
BundleChecker.java 88 ZipInputStream zis = new ZipInputStream(input); local
93 while ((entry = zis.getNextEntry()) != null) {
98 zis.closeEntry();
106 if (entryCrc != decompressAndCalculateCrc(zis) && !sanityCheck) {
114 zis.closeEntry();
118 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/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
InstallerActivity.java 74 ZipInputStream zis = new ZipInputStream(stream); local
75 ZipEntry entry = zis.getNextEntry();
96 numread = zis.read(buf);
105 entry = zis.getNextEntry();
  /external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java 74 ZipInputStream zis = new ZipInputStream(stream); local
75 ZipEntry entry = zis.getNextEntry();
96 numread = zis.read(buf);
105 entry = zis.getNextEntry();
  /external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java 74 ZipInputStream zis = new ZipInputStream(stream); local
75 ZipEntry entry = zis.getNextEntry();
96 numread = zis.read(buf);
105 entry = zis.getNextEntry();
  /external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java 74 ZipInputStream zis = new ZipInputStream(stream); local
75 ZipEntry entry = zis.getNextEntry();
96 numread = zis.read(buf);
105 entry = zis.getNextEntry();
  /external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java 74 ZipInputStream zis = new ZipInputStream(stream); local
75 ZipEntry entry = zis.getNextEntry();
96 numread = zis.read(buf);
105 entry = zis.getNextEntry();
  /external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java 74 ZipInputStream zis = new ZipInputStream(stream); local
75 ZipEntry entry = zis.getNextEntry();
96 numread = zis.read(buf);
105 entry = zis.getNextEntry();
  /external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java 75 ZipInputStream zis = new ZipInputStream(stream); local
76 ZipEntry entry = zis.getNextEntry();
97 numread = zis.read(buf);
106 entry = zis.getNextEntry();
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 167 InputStream zis = zipFile.getInputStream(entry); local
185 actual = zis.read(copyBuf);
192 zis.close();
  /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-25.0.0.jar 
api-generator-26.0.0.jar 
  /frameworks/base/core/java/android/os/
RecoverySystem.java 359 ZipInputStream zis = new ZipInputStream(inputStream); local
361 while ((entry = zis.getNextEntry()) != null) {
368 Streams.readFully(zis, bytes);
    [all...]
  /frameworks/base/packages/Shell/tests/src/com/android/shell/
BugreportReceiverTest.java     [all...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 

Completed in 1101 milliseconds

1 2 3 4 5 6 7 8 91011>>