Searched refs:commentBytes (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/util/zip/
H A DZipOutputStream.java74 private byte[] commentBytes = EmptyArray.BYTE; field in class:ZipOutputStream
240 writeShort(cDir, commentBytes.length);
241 if (commentBytes.length > 0) {
242 cDir.write(commentBytes);
358 this.commentBytes = EmptyArray.BYTE;
364 this.commentBytes = newCommentBytes;
H A DZipEntry.java436 byte[] commentBytes = new byte[commentByteCount];
437 Streams.readFully(cdStream, commentBytes, 0, commentByteCount);
438 comment = new String(commentBytes, 0, commentBytes.length, charset);
H A DZipFile.java425 byte[] commentBytes = new byte[commentLength];
426 raf.readFully(commentBytes);
427 comment = new String(commentBytes, 0, commentBytes.length, StandardCharsets.UTF_8);

Completed in 38 milliseconds