Searched defs:modtime (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DUnpackerImpl.java188 final int modtime; field in class:UnpackerImpl.DoUnpack
192 modtime = props.getTime(Utils.UNPACK_MODIFICATION_TIME);
194 modtime = pkg.default_modtime;
264 je.setTime(file.modtime);
266 je.setTime((long)file.modtime * 1000);
268 je.setTime((long)modtime * 1000);
H A DPackerImpl.java239 int modtime = props.getTime(Pack200.Packer.MODIFICATION_TIME);
240 if (modtime != Constants.NO_MODTIME) {
241 pkg.default_modtime = modtime;
337 int modtime = Constants.NO_MODTIME; field in class:PackerImpl.DoPack.InFile
346 this.modtime = timeSecs;
358 this.modtime = timeSecs;
372 // Bump size by pathname length and modtime/def-hint bytes.
381 Utils.log.warning("overflow in modtime for "+f);
386 if (modtime != Constants.NO_MODTIME)
387 file.modtime
[all...]
H A DPackage.java753 int modtime = NO_MODTIME; field in class:Package.File
785 && (modtime == NO_MODTIME || modtime == default_modtime)
809 +(modtime==NO_MODTIME?"":"M"+modtime)
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.cpp99 void jar::add_to_jar_directory(const char* fname, bool store, int modtime, argument
103 if (modtime == 0) modtime = default_modtime;
104 uLong dostime = get_dostime(modtime);
161 void jar::write_jar_header(const char* fname, bool store, int modtime, argument
165 if (modtime == 0) modtime = default_modtime;
166 uLong dostime = get_dostime(modtime);
263 bool deflate_hint, int modtime,
284 add_to_jar_directory(fname, !deflate, modtime, le
262 addJarEntry(const char* fname, bool deflate_hint, int modtime, bytes& head, bytes& tail) argument
333 get_dostime(int modtime) argument
[all...]
H A Dunpack.h140 int modtime; member in struct:unpacker::file

Completed in 41 milliseconds