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

  /system/security/keystore/
operation.cpp 49 auto lruEntry = std::find(mLru.begin(), mLru.end(), token);
50 if (lruEntry != mLru.end()) {
51 mLru.erase(lruEntry);
64 auto lruEntry = std::find(mLru.begin(), mLru.end(), token);
65 if (lruEntry != mLru.end()) mLru.erase(lruEntry);
  /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();

Completed in 281 milliseconds