OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:xdostime
(Results
1 - 7
of
7
) sorted by null
/libcore/ojluni/src/main/java/java/util/zip/
ZipUtils.java
84
* @param
xdostime
the extended DOS time value
87
public static long extendedDosToJavaTime(long
xdostime
) {
88
long time = dosToJavaTime(
xdostime
);
89
return time + (
xdostime
>> 32);
ZipEntry.java
47
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
!= -1) ? extendedDosToJavaTime(xdostime) : -1
[
all
...]
ZipOutputStream.java
196
if (e.
xdostime
== -1) {
402
writeInt(e.
xdostime
); // last modification time
417
writeInt(e.
xdostime
); // last modification time
524
writeInt(e.
xdostime
); // last modification time
ZipInputStream.java
317
e.
xdostime
= get32(tmpbuf, LOCTIM);
ZipFile.java
603
e.
xdostime
= getEntryTime(jzentry);
/art/tools/ahat/etc/
O.hprof
[
all
...]
RI.hprof
[
all
...]
Completed in 983 milliseconds