OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zis
(Results
1 - 9
of
9
) sorted by null
/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();
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/compressors/zstandard/
ZstdRoundtripTest.java
61
ZstdCompressorInputStream
zis
= new ZstdCompressorInputStream(new FileInputStream(output))) {
63
byte[] actual = IOUtils.toByteArray(
zis
);
81
CompressorInputStream
zis
= new CompressorStreamFactory()
84
byte[] actual = IOUtils.toByteArray(
zis
);
/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();
/dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java
167
InputStream
zis
= zipFile.getInputStream(entry);
local
185
actual =
zis
.read(copyBuf);
192
zis
.close();
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
ZipArchiveInputStreamTest.java
332
try (ZipArchiveInputStream
zis
= new ZipArchiveInputStream(new ByteArrayInputStream(new byte[0]))) {
335
assertTrue(
zis
.canReadEntryData(e));
337
assertTrue(
zis
.canReadEntryData(e));
339
assertFalse(
zis
.canReadEntryData(e));
507
try (ZipArchiveInputStream
zis
= new ZipArchiveInputStream(new FileInputStream(getFile(archive)))) {
510
ze =
zis
.getNextZipEntry();
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLegacyAssetManager.java
426
ZipInputStream
zis
= new ZipInputStream(new FileInputStream(zipFile));
local
427
ZipEntry ze =
zis
.getNextEntry();
431
ze =
zis
.getNextEntry();
438
while ((len =
zis
.read(buffer)) > 0) {
444
zis
.closeEntry();
445
zis
.close();
[
all
...]
/external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar
/external/testng/ant/3rdparty/
cobertura.jar
Completed in 432 milliseconds