Searched refs:DOSTIME_BEFORE_1980 (Results 1 - 2 of 2) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/java/util/zip/
H A DZipEntry.java75 static final long DOSTIME_BEFORE_1980 = (1 << 21) | (1 << 16); field in class:ZipEntry
171 if (xdostime != DOSTIME_BEFORE_1980 && time <= UPPER_DOSTIME_BOUND) {
229 this.xdostime = DOSTIME_BEFORE_1980;
240 if (xdostime != DOSTIME_BEFORE_1980 && year <= 0x7f) {
H A DZipUtils.java146 return ZipEntry.DOSTIME_BEFORE_1980;
149 return (dostime != ZipEntry.DOSTIME_BEFORE_1980)
151 : ZipEntry.DOSTIME_BEFORE_1980;

Completed in 99 milliseconds