OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zis1
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/test/java/libcore/java/util/zip/
OldZipInputStreamTest.java
66
ZipInputStream
zis1
= new ZipInputStream(fis);
local
68
zis1
.getNextEntry();
69
zis1
.getNextEntry();
72
zis1
.skip(10);
79
zis1
.close(); // Android throws exception here, already!
80
zis1
.skip(10); // But RI here, only!
95
ZipInputStream
zis1
= new ZipInputStream(fis);
local
97
zis1
.getNextEntry();
98
zis1
.getNextEntry();
103
zis1
.read(rbuf, 10, 90)
134
ZipInputStream
zis1
= new ZipInputStream(fis);
local
171
Mock_ZipInputStream
zis1
= new Mock_ZipInputStream(fis);
local
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipInputStreamTest.java
128
ZipInputStream
zis1
= new ZipInputStream(fis);
local
132
zis1
.getNextEntry();
139
zis1
.close();
141
zis1
.getNextEntry();
224
ZipInputStream
zis1
= new ZipInputStream(fis);
local
225
ZipEntry entry =
zis1
.getNextEntry();
230
while (
zis1
.available() > 0) {
231
zis1
.skip(1);
239
assertEquals(0,
zis1
.skip(1));
240
assertEquals(0,
zis1
.available())
[
all
...]
Completed in 169 milliseconds