HomeSort by relevance Sort by last modified time
    Searched refs:EXPIRED (Results 1 - 25 of 146) sorted by null

1 2 3 4 5 6

  /external/skia/infra/bots/recipe_modules/swarming/
state.py 20 EXPIRED = 0x30 # 48
27 RUNNING, PENDING, EXPIRED, TIMED_OUT, BOT_DIED, CANCELED, COMPLETED)
29 STATES_NOT_RUNNING = (EXPIRED, TIMED_OUT, BOT_DIED, CANCELED, COMPLETED)
31 STATES_ABANDONED = (EXPIRED, BOT_DIED, CANCELED)
36 EXPIRED: 'Expired',
api.py 87 shard.get('state') == self.State.EXPIRED or
88 shard.get('state') == 'EXPIRED')
160 EXPIRED.
727 'shard #%d expired, not enough capacity' % index)
    [all...]
  /external/skqp/infra/bots/recipe_modules/swarming/
state.py 20 EXPIRED = 0x30 # 48
27 RUNNING, PENDING, EXPIRED, TIMED_OUT, BOT_DIED, CANCELED, COMPLETED)
29 STATES_NOT_RUNNING = (EXPIRED, TIMED_OUT, BOT_DIED, CANCELED, COMPLETED)
31 STATES_ABANDONED = (EXPIRED, BOT_DIED, CANCELED)
36 EXPIRED: 'Expired',
api.py 87 shard.get('state') == self.State.EXPIRED or
88 shard.get('state') == 'EXPIRED')
160 EXPIRED.
727 'shard #%d expired, not enough capacity' % index)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/data/
Timer.java 30 import static com.android.deskclock.data.Timer.State.EXPIRED;
42 RUNNING(1), PAUSED(2), EXPIRED(3), RESET(4), MISSED(5);
99 /** The time at which the timer is scheduled to expire; negative if it is already expired. */
130 public boolean isExpired() { return mState == EXPIRED; }
141 * @return the total amount of time remaining up to this moment; expired and missed timers will
160 if (mState != RUNNING && mState != EXPIRED && mState != MISSED) {
171 if (mState != RUNNING && mState != EXPIRED && mState != MISSED) {
180 * @return the total amount of time elapsed up to this moment; expired timers will report more
191 * @return a copy of this timer that is running, expired or missed
194 if (mState == RUNNING || mState == EXPIRED || mState == MISSED)
    [all...]
TimerModel.java 51 import static com.android.deskclock.data.Timer.State.EXPIRED;
60 * Running timers less than this threshold are left running/expired; greater than this
102 * The ids of expired timers for which the ringer is ringing. Not all expired timers have their
103 * ids in this collection. If a timer was already expired when the app was started its id will
118 /** A mutable copy of the expired timers. */
127 * from killing this application while expired timers are actively firing.
172 * @return all expired timers in their expiration order
200 * @return the timer that last expired and is still expired now; {@code null} if no timers ar
793 final List<Timer> expired = getExpiredTimers(); local
    [all...]
  /external/guava/guava/src/com/google/common/cache/
RemovalCause.java 76 EXPIRED {
LocalCache.java 746 * - Expired: time expired (key/value may still be set)
780 * New entries are added at the tail of the list at write time; stale entries are expired from
817 * entries are expired from the head of the list.
    [all...]
  /hardware/interfaces/drm/1.0/
types.hal 34 * to use a license and the keys in that license have expired.
125 * session has expired. The keys are no longer valid.
204 EXPIRED,
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/
GetTranscriptResponseAsync.java 81 return response.getStatus() == TranscriptionStatus.EXPIRED
  /libcore/ojluni/src/main/java/java/security/cert/
CertPathValidatorException.java 267 * The certificate is expired.
269 EXPIRED,
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 101 public static final String EXPIRED = "EXPIRED";
  /external/guava/guava/src/com/google/common/collect/
MapMaker.java 213 // SIZE trumps EXPIRED
361 * <p>Expired entries may be counted by {@link Map#size}, but will never be visible to read or
362 * write operations. Expired entries are currently cleaned up during write operations, or during
383 // SIZE trumps EXPIRED
384 this.nullRemovalCause = RemovalCause.EXPIRED;
411 * <p>Expired entries may be counted by {@link Map#size}, but will never be visible to read or
412 * write operations. Expired entries are currently cleaned up during write operations, or during
434 // SIZE trumps EXPIRED
435 this.nullRemovalCause = RemovalCause.EXPIRED;
725 EXPIRED {
    [all...]
ComputingConcurrentHashMap.java 90 // at this point e is either null, computing, or expired;
116 // This is a duplicate check, as preWriteCleanup already purged expired
118 enqueueNotification(entryKey, hash, value, RemovalCause.EXPIRED);
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerItem.java 143 case EXPIRED:
TimerFragment.java 174 // If the intent did not specify a timer to show, show the last timer that expired.
274 case EXPIRED:
360 case EXPIRED:
766 // If the timer just expired but is not displayed, display it now.
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
LocalCache.java 109 alertListenerIfPresent(key, value.getValue(), RemovalCause.EXPIRED);
138 alertListenerIfPresent(key, value, RemovalCause.EXPIRED);
289 alertListenerIfPresent(key, value.getValue(), RemovalCause.EXPIRED);
  /external/skia/infra/bots/recipe_modules/skia_swarming/
api.py 193 self.m.swarming.State.EXPIRED, self.m.swarming.State.TIMED_OUT,
  /external/skqp/infra/bots/recipe_modules/skia_swarming/
api.py 193 self.m.swarming.State.EXPIRED, self.m.swarming.State.TIMED_OUT,
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
BasicChecker.java 197 (msg + " check failed", e, null, -1, BasicReason.EXPIRED);
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionTask.java 215 case EXPIRED:
  /frameworks/av/drm/libmediadrm/tests/
DrmMetrics_test.cpp 152 metrics.mKeyStatusChangeCounter.Increment(KeyStatusType::EXPIRED);
197 { "drm.mediadrm.key_status_change.EXPIRED.count", 1 },
284 metrics.mKeyStatusChangeCounter.Increment(KeyStatusType::EXPIRED);
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 513 // if the response code indicates expired or bad credentials, throw a special exception
515 ImapConstants.EXPIRED.equals(code) ||
534 // Failed to authenticate. This may be just due to an expired token.
  /external/guava/guava-tests/test/com/google/common/cache/
CacheBuilderGwtTest.java 261 case EXPIRED:
  /hardware/interfaces/drm/1.0/default/
DrmPlugin.cpp 411 keyStatus.type = KeyStatusType::EXPIRED;

Completed in 699 milliseconds

1 2 3 4 5 6