OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:zipBytes
(Results
1 - 2
of
2
) sorted by null
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipInputStreamTest.java
45
private byte[]
zipBytes
;
65
zipBytes
= bos.toByteArray();
201
try (ZipInputStream zis = new ZipInputStream(new ByteArrayInputStream(
zipBytes
))) {
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
ZFileTest.java
566
byte
zipBytes
[] = Files.toByteArray(zip);
568
for (int i = 0; i <
zipBytes
.length - 3; i++) {
571
if (
zipBytes
[i + j] != 'X') {
578
zipBytes
[i] = (byte) 0x50;
579
zipBytes
[i + 1] = (byte) 0x4b;
580
zipBytes
[i + 2] = (byte) 0x05;
581
zipBytes
[i + 3] = (byte) 0x06;
589
Files.write(
zipBytes
, zip);
[
all
...]
Completed in 225 milliseconds