HomeSort by relevance Sort by last modified time
    Searched refs:lruEntry (Results 1 - 2 of 2) sorted by null

  /libcore/ojluni/src/main/java/sun/security/util/
Cache.java 374 CacheEntry<K,V> lruEntry = t.next();
377 + lruEntry.getKey() + " | " + lruEntry.getValue());
380 lruEntry.invalidate();
415 CacheEntry<K,V> lruEntry = t.next();
418 + lruEntry.getKey() + " | " + lruEntry.getValue());
421 lruEntry.invalidate();
  /system/security/keystore/
operation.cpp 67 auto lruEntry = std::find(mLru.begin(), mLru.end(), token);
68 if (lruEntry != mLru.end()) {
69 mLru.erase(lruEntry);
81 auto lruEntry = std::find(mLru.begin(), mLru.end(), token);
82 if (lruEntry != mLru.end()) {
83 mLru.erase(lruEntry);

Completed in 73 milliseconds