Searched refs:serverDate (Results 1 - 6 of 6) sorted by relevance

/frameworks/support/volley/src/com/android/volley/toolbox/
H A DHttpHeaderParser.java44 long serverDate = 0;
55 serverDate = parseDateAsEpoch(headerValue);
88 } else if (serverDate > 0 && serverExpires >= serverDate) {
90 softExpire = now + (serverExpires - serverDate);
98 entry.serverDate = serverDate;
H A DDiskBasedCache.java335 public long serverDate; field in class:DiskBasedCache.CacheHeader
354 this.serverDate = entry.serverDate;
377 entry.serverDate = ois.readLong();
390 e.serverDate = serverDate;
405 oos.writeLong(serverDate);
H A DBasicNetwork.java189 if (entry.serverDate > 0) {
190 Date refTime = new Date(entry.serverDate);
/frameworks/support/volley/src/com/android/volley/
H A DCache.java72 public long serverDate; field in class:Cache.Entry
/frameworks/support/volley/tests/src/com/android/volley/utils/
H A DCacheTestUtils.java27 entry.serverDate = random.nextLong();
/frameworks/support/volley/tests/src/com/android/volley/toolbox/
H A DHttpHeaderParserTest.java53 assertEquals(0, entry.serverDate);
76 assertEqualsWithin(entry.serverDate, now, ONE_MINUTE_MILLIS);
90 assertEqualsWithin(entry.serverDate, now, ONE_MINUTE_MILLIS);

Completed in 335 milliseconds