HomeSort by relevance Sort by last modified time
    Searched full:zis (Results 1 - 25 of 318) 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...]
  /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/
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();
  /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...]
  /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();
  /packages/providers/CalendarProvider/res/values-hu/
strings.xml 29 <string name="debug_tool_message" msgid="4862486669932821937">"Arra készül, hogy 1) másolatot készítsen a naptár adatbázisáról a bármilyen alkalmazás által olvasható SD-kártyára/USB-tárhelyre, és 2) e-mailben elküldje. Ne felejtse el azonnal törölni a másolatot, amint sikeresen átmásolta a készülékr?l, vagy miután az e-mail megérkezett."</string>
31 <string name="debug_tool_email_subject" msgid="2403590332256471194">"Naptár-adatbázis mellékelve"</string>
  /packages/providers/ContactsProvider/res/values-hu/
strings.xml 28 <string name="debug_dump_title" msgid="4916885724165570279">"Névjegyadatbázis másolása"</string>
33 <string name="debug_dump_email_subject" msgid="108188398416385976">"Névjegyadatbázis csatolva."</string>
  /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...]
  /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);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 167 InputStream zis = zipFile.getInputStream(entry); local
185 actual = zis.read(copyBuf);
192 zis.close();
  /tools/metalava/src/main/java/com/android/tools/metalava/
AnnotationsMerger.kt 129 var zis: JarInputStream? = null
132 zis = JarInputStream(fis)
133 var entry: ZipEntry? = zis.nextEntry
136 val bytes = ByteStreams.toByteArray(zis)
140 entry = zis.nextEntry
146 Closeables.close(zis, true /* swallowIOException */)
    [all...]
  /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/honggfuzz/examples/apache-httpd/corpus_http1/
357587827944d138e733ee5cac8ea8ef.0000200c.honggfuzz.cov 63 O??????:?,?`}9&ZIs}????X?S+?\rb?W???{???EV6?????8???v4t??yqOp????N[bBQ?3K????=?Y???1C?H_d@r?4?^$`? ?m!Hp0{=???oU?????! j?D(?????y?`???L6?F??~&7?m?*?US???RZL?????T??a??i%???q?????<n?J)&?????j6??aP?r??pYZ????k?m%??a??x???$5????1?Sp]?:?b:????@=l??X??j?????~??C??? ?????#R?r??mz ???&?T??,w?????<?W??|?7l?%TqA??????si????~c+>y=???"??h]????Fb~?yZr???]???R??8?_??y??=f?????W_: ?l??v Khi4?Z????u>U??u??? ?A:OR?J?:?D??
83 O??????:?,?`}9&ZIs}????X?S+?\rb?W?????b&???]Z??;?|z?j?E????X_?G6?????P?]a?mZ???????u?Z??2y???rE??? ?}??&7r~A?G+?(?,????? %iV????3..?u?=/n???#_??1?`p=?m???????????Gw?(?i(? ???_Ew???? ?????&??J ?O???,?$Q??$Z?-?Z?Y???n???:`D????QL??????97?8{?e??).?????A?qm?b?J?[????7? ??tdF????????+?SPn( ?!???{!?tp??:ln#?N??????Y?l??R?S??/)?A?? Q?"?+????+?6\?%??B???? e?5????M? ?h? ??>:"???)????]???"??0&???!??2U?w???.?X??)??
  /external/honggfuzz/examples/apache-httpd/corpus_http2/
357587827944d138e733ee5cac8ea8ef.0000200c.honggfuzz.cov 63 O??????:?,?`}9&ZIs}????X?S+?\rb?W???{???EV6?????8???v4t??yqOp????N[bBQ?3K????=?Y???1C?H_d@r?4?^$`? ?m!Hp0{=???oU?????! j?D(?????y?`???L6?F??~&7?m?*?US???RZL?????T??a??i%???q?????<n?J)&?????j6??aP?r??pYZ????k?m%??a??x???$5????1?Sp]?:?b:????@=l??X??j?????~??C??? ?????#R?r??mz ???&?T??,w?????<?W??|?7l?%TqA??????si????~c+>y=???"??h]????Fb~?yZr???]???R??8?_??y??=f?????W_: ?l??v Khi4?Z????u>U??u??? ?A:OR?J?:?D??
83 O??????:?,?`}9&ZIs}????X?S+?\rb?W?????b&???]Z??;?|z?j?E????X_?G6?????P?]a?mZ???????u?Z??2y???rE??? ?}??&7r~A?G+?(?,????? %iV????3..?u?=/n???#_??1?`p=?m???????????Gw?(?i(? ???_Ew???? ?????&??J ?O???,?$Q??$Z?-?Z?Y???n???:`D????QL??????97?8{?e??).?????A?qm?b?J?[????7? ??tdF????????+?SPn( ?!???{!?tp??:ln#?N??????Y?l??R?S??/)?A?? Q?"?+????+?6\?%??B???? e?5????M? ?h? ??>:"???)????]???"??0&???!??2U?w???.?X??)??
  /external/annotation-tools/asmx/test/perf/org/objectweb/asm/xml/
XMLPerfTest.java 156 // while ((ze = zis.getNextEntry()) != null && max > 0) {
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
ZFileTest.java 240 try (ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile))) {
241 ZipEntry e1 = zis.getNextEntry();
246 ZipEntry e2 = zis.getNextEntry();
271 try (ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile))) {
272 ZipEntry e1 = zis.getNextEntry();
277 ZipEntry e2 = zis.getNextEntry();
    [all...]
  /frameworks/base/packages/Shell/tests/src/com/android/shell/
BugreportReceiverTest.java     [all...]
  /bionic/libc/dns/net/
services.h 113 \6at-zis\0\316t\0\
114 \6at-zis\0\316u\0\
  /device/linaro/bootloader/edk2/StdLib/Efi/StdLib/etc/
services 123 at-zis 206/tcp # AppleTalk zone information
124 at-zis 206/udp
  /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...]

Completed in 1713 milliseconds

1 2 3 4 5 6 7 8 91011>>