Searched defs:lastModified (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/www/protocol/file/
H A DFileURLConnection.java65 long lastModified = 0; field in class:FileURLConnection
116 lastModified = file.lastModified();
131 if (lastModified != 0) {
132 Date date = new Date(lastModified);
179 return lastModified;
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DPollingWatchService.java201 private long lastModified; field in class:PollingWatchService.CacheEntry
204 CacheEntry(long lastModified, int lastTickCount) { argument
205 this.lastModified = lastModified;
213 long lastModified() { method in class:PollingWatchService.CacheEntry
214 return lastModified;
217 void update(long lastModified, int tickCount) { argument
218 this.lastModified = lastModified;
259 long lastModified
[all...]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DURICertStore.java114 private long lastModified; field in class:URICertStore
278 if (lastModified != 0) {
279 connection.setIfModifiedSince(lastModified);
281 long oldLastModified = lastModified;
283 lastModified = connection.getLastModified();
285 if (oldLastModified == lastModified) {
317 lastModified = 0;
391 if (lastModified != 0) {
392 connection.setIfModifiedSince(lastModified);
394 long oldLastModified = lastModified;
[all...]
/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebData.java96 Support_TestWebData(long length, int lastModified, String name, String type, boolean isDir, long expDate) { argument
98 testLastModified = lastModified;
112 testLastModified = file.lastModified();
/libcore/ojluni/src/main/java/sun/net/ftp/
H A DFtpDirEntry.java61 private java.util.Date lastModified = null; field in class:FtpDirEntry
195 return this.lastModified;
202 * @param lastModified The Date representing the last modification time, or
206 public FtpDirEntry setLastModified(Date lastModified) { argument
207 this.lastModified = lastModified;
319 * parenthesis, then size between '{', and, finally, the lastModified of last
326 if (lastModified == null) {
329 return name + " [" + type + "] (" + user + " / " + group + ") {" + size + "} " + java.text.DateFormat.getDateInstance().format(lastModified);
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipFile.java235 jzfile = open(name, mode, file.lastModified(), usemmap);
838 private static native long open(String name, int mode, long lastModified, argument
/libcore/ojluni/src/main/native/
H A Djava_util_zip_ZipFile.c88 jint mode, jlong lastModified,
102 zip = ZIP_Get_From_Cache(path, &msg, lastModified);
118 zip = ZIP_Put_In_Cache0(path, zfd, &msg, lastModified, usemmap);
87 ZipFile_open(JNIEnv *env, jclass cls, jstring name, jint mode, jlong lastModified, jboolean usemmap) argument
H A Dzip_util.h237 jlong lastModified; /* last modified time */ member in struct:jzfile
259 ZIP_Open_Generic(const char *name, char **pmsg, int mode, jlong lastModified);
262 ZIP_Get_From_Cache(const char *name, char **pmsg, jlong lastModified);
265 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified);
268 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified, jboolean usemmap);
H A Dzip_util.c770 ZIP_Open_Generic(const char *name, char **pmsg, int mode, jlong lastModified) argument
779 zip = ZIP_Get_From_Cache(name, pmsg, lastModified);
783 zip = ZIP_Put_In_Cache(name, zfd, pmsg, lastModified);
796 ZIP_Get_From_Cache(const char *name, char **pmsg, jlong lastModified) argument
823 && (zip->lastModified == lastModified || zip->lastModified == 0)
842 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified) argument
844 return ZIP_Put_In_Cache0(name, zfd, pmsg, lastModified, JNI_TRUE);
848 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified, argument
[all...]
/libcore/ojluni/src/main/java/java/io/
H A DFile.java923 public long lastModified() { method in class:File
1413 * <code>{@link #lastModified}</code> method will return the (possibly

Completed in 203 milliseconds