OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isExpired
(Results
1 - 25
of
143
) sorted by null
1
2
3
4
5
6
/external/apache-http/src/org/apache/http/cookie/
Cookie.java
141
boolean
isExpired
(final Date date);
/external/apache-http/src/org/apache/http/impl/cookie/
BasicClientCookie2.java
94
public boolean
isExpired
(final Date date) {
95
return this.discard || super.
isExpired
(date);
BasicClientCookie.java
300
public boolean
isExpired
(final Date date) {
/frameworks/volley/src/test/java/com/android/volley/utils/
CacheTestUtils.java
14
* @param
isExpired
Whether the TTLs should be set such that this entry is expired
18
byte[] data, boolean
isExpired
, boolean needsRefresh) {
28
entry.ttl =
isExpired
? 0 : Long.MAX_VALUE;
/packages/apps/Dialer/tests/src/com/android/dialer/util/
ExpirableCacheTest.java
90
assertFalse("Should not be expired", mCache.getCachedValue("a").
isExpired
());
92
assertTrue("Should be expired", mCache.getCachedValue("a").
isExpired
());
99
assertFalse("Should not be expired", mCache.getCachedValue("a").
isExpired
());
116
assertFalse("Should not be expired", cachedValue.
isExpired
());
123
assertTrue("Should be expired", expiredCachedValue.
isExpired
());
/frameworks/volley/src/main/java/com/android/volley/
Cache.java
90
public boolean
isExpired
() {
CacheDispatcher.java
109
if (entry.
isExpired
()) {
/external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java
99
if (!cookie.
isExpired
(new Date())) {
139
* @see Cookie#
isExpired
(Date)
147
if (it.next().
isExpired
(date)) {
/packages/apps/Dialer/src/com/android/dialer/util/
ExpirableCache.java
47
* if (cachedContact.
isExpired
()) {
105
public boolean
isExpired
();
137
public boolean
isExpired
() {
151
* @see ExpirableCache.CachedValue#
isExpired
()
206
return cachedValue == null || cachedValue.
isExpired
() ? null : cachedValue.getValue();
/external/jetty/src/java/org/eclipse/jetty/continuation/
Continuation.java
130
* expire and {@link #
isExpired
()} will return true.
138
* except that {@link #
isExpired
()} will be true and {@link #isResumed()} will be false.
331
boolean
isExpired
();
FauxContinuation.java
133
public boolean
isExpired
()
Jetty6Continuation.java
122
public boolean
isExpired
()
Servlet3Continuation.java
133
public boolean
isExpired
()
/packages/apps/DeskClock/src/com/android/deskclock/timer/
ExpiredTimersActivity.java
255
if (timer.
isExpired
()) {
262
if (!before.
isExpired
() && after.
isExpired
()) {
264
} else if (before.
isExpired
() && !after.
isExpired
()) {
271
if (timer.
isExpired
()) {
TimerItem.java
90
mCircleView.setVisibility(timer.
isExpired
() && blinkOff ? INVISIBLE : VISIBLE);
TimerItemFragment.java
94
} else if (timer.isRunning() || timer.
isExpired
()) {
TimerCircleView.java
114
} else if (mTimer.
isExpired
()) {
/external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java
102
} else if (!
isExpired
(value)) {
133
if (!
isExpired
(stamped)) {
201
return cachingHashMap.containsKey(key) && !
isExpired
(cachingHashMap.get(key));
208
if (!
isExpired
(val)) {
216
private boolean
isExpired
(Timestamped<V> stamped) {
285
} else if (!
isExpired
(value)) {
569
if (!
isExpired
(next.getValue())) {
/packages/apps/DeskClock/src/com/android/deskclock/data/
TimerModel.java
247
if (before.
isExpired
() || timer.
isExpired
()) {
261
if (timer.
isExpired
()) {
281
if (timer.
isExpired
()) {
310
if (timer.
isExpired
()) {
402
if (timer.
isExpired
()) {
437
if (before.
isExpired
() || timer.
isExpired
()) {
477
if (timer.
isExpired
()) {
505
if (timer.
isExpired
() && timer.getDeleteAfterUse())
[
all
...]
Timer.java
122
public boolean
isExpired
() { return mState == EXPIRED; }
/external/jetty/src/java/org/eclipse/jetty/util/thread/
Timeout.java
356
public boolean
isExpired
() { return _expired; }
365
* the {@link #
isExpired
()} state to true.
/frameworks/base/services/core/java/com/android/server/notification/
ValidateNotificationPeople.java
244
if (lookupResult == null || lookupResult.
isExpired
()) {
409
private boolean
isExpired
() {
414
return mAffinity == NONE ||
isExpired
();
/external/jmdns/src/javax/jmdns/impl/
DNSEntry.java
196
public abstract boolean
isExpired
(long now);
/packages/apps/Dialer/src/com/android/dialer/contactinfo/
ContactInfoCache.java
161
if (cachedInfo.
isExpired
()) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
AccountTypeManager.java
656
if (mInvitableAccountTypeCache.
isExpired
() &&
[
all
...]
Completed in 883 milliseconds
1
2
3
4
5
6