Searched defs:xdostime (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DZipUtils.java84 * @param xdostime the extended DOS time value
87 public static long extendedDosToJavaTime(long xdostime) { argument
88 long time = dosToJavaTime(xdostime);
89 return time + (xdostime >> 32);
H A DZipEntry.java47 long xdostime = -1; // last modification time (in extended DOS time, field in class:ZipEntry
80 long size, int compressionMethod, int xdostime, byte[] extra,
88 this.xdostime = xdostime;
144 xdostime = e.xdostime;
194 this.xdostime = javaToExtendedDosTime(time);
197 if (xdostime != DOSTIME_BEFORE_1980 && time <= UPPER_DOSTIME_BOUND) {
221 // Android-changed: Use xdostime, returning mtime would be a
226 return (xdostime !
79 ZipEntry(String name, String comment, long crc, long compressedSize, long size, int compressionMethod, int xdostime, byte[] extra, long dataOffset) argument
[all...]

Completed in 35 milliseconds