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

1 2 3

  /external/tpm2/
EvictControl.c 52 if( evictObject->attributes.evict == SET
61 if(evictObject->attributes.evict == CLEAR)
63 // Platform auth can not set evict object in storage or endorsement
76 // Owner auth can not set or clear evict object in platform hierarchy
81 if( evictObject->attributes.evict == CLEAR
95 // Change evict state
96 if(evictObject->attributes.evict == CLEAR)
EventSequenceComplete.c 86 // mark sequence object as evict so it will be flushed on the way out
87 hashObject->attributes.evict = SET;
SequenceComplete.c 106 // mark sequence object as evict so it will be flushed on the way out
107 object->attributes.evict = SET;
  /external/glide/library/src/main/java/com/bumptech/glide/util/
LruCache.java 41 evict(); method
124 evict(); method
166 private void evict() { method in class:LruCache
  /frameworks/base/services/core/java/com/android/server/accounts/
TokenCache.java 96 public void evict() { method in class:TokenCache.TokenLruCache.Evictor
130 evictor.evict();
156 public void evict(String accountType, String token) { method in class:TokenCache.TokenLruCache
159 evictor.evict();
164 public void evict(Account account) { method in class:TokenCache.TokenLruCache
167 evictor.evict();
209 mCachedTokens.evict(accountType, token);
213 mCachedTokens.evict(account);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 49 /// Evict the given function from cache
50 void evict(const Function &Fn);
76 Result->evict(*cast<Function>(Val));
CFLSteensAliasAnalysis.h 56 void evict(Function *Fn);
104 Result->evict(cast<Function>(Val));
  /system/core/storaged/
storaged.cpp 86 void disk_stats_monitor::evict(struct disk_perf* perf) { function in class:disk_stats_monitor
87 mStats.read_perf.evict(perf->read_perf);
88 mStats.read_ios.evict(perf->read_ios);
89 mStats.write_perf.evict(perf->write_perf);
90 mStats.write_ios.evict(perf->write_ios);
91 mStats.queue.evict(perf->queue);
122 evict(&mBuffer.front());
  /external/llvm/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 53 void evict(Function *Fn);
111 Result->evict(cast<Function>(Val));
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
LruBitmapPool.java 17 * eviction policy to evict {@link android.graphics.Bitmap}s from the least recently used bucket in order to keep
60 evict(); method
85 evict(); method
89 private void evict() { method in class:LruBitmapPool
  /prebuilts/go/darwin-x86/src/runtime/
cpuprof.go 196 // of stack. It is allowed to call evict.
207 // It is allowed to call evict, passing the flushlog parameter.
240 // Evict entry with smallest count.
248 if !p.evict(e, flushlog) {
249 // Could not evict entry. Record lost stack.
262 // evict copies the given entry's data into the log, so that
263 // the entry can be reused. evict is called from add, which
266 // It is safe to call flushlog. evict returns true if the entry was
270 func (p *cpuProfile) evict(e *cpuprofEntry, flushlog func() bool) bool { func
294 // flushlog is called from evict, called from add, called from the signal handler
    [all...]

Completed in 1029 milliseconds

1 2 3