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

1 2 3 4 5 6 7 8

  /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;
ChangeEPS.c 49 // Flush evict object of endorsement hierarchy stored in NV
ChangePPS.c 42 // Flush platform evict object and index in NV
SequenceComplete.c 106 // mark sequence object as evict so it will be flushed on the way out
107 object->attributes.evict = SET;
  /external/compiler-rt/test/profile/
instrprof-value-prof-evict.test 1 // RUN: %clang_profgen -O2 -mllvm -enable-value-profiling=true -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=10 -o %t %S/Inputs/instrprof-value-prof-evict.c
4 // RUN: llvm-profdata show --all-functions -ic-targets %t.profdata | FileCheck %S/Inputs/instrprof-value-prof-evict.c
7 // RUN: %clang_profgen -O2 -mllvm -disable-vp=false -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=10 -Xclang -fprofile-instrument=llvm -o %t.ir %S/Inputs/instrprof-value-prof-evict.c
10 // RUN: llvm-profdata show --all-functions -ic-targets %t.ir.profdata | FileCheck %S/Inputs/instrprof-value-prof-evict.c
13 // RUN: %clang_profgen -O2 -mllvm -disable-vp=false -mllvm -vp-static-alloc=false -Xclang -fprofile-instrument=llvm -o %t.ir.dyn %S/Inputs/instrprof-value-prof-evict.c
16 // RUN: llvm-profdata show --all-functions -ic-targets %t.ir.dyn.profdata | FileCheck %S/Inputs/instrprof-value-prof-evict.c
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
LruResourceCache.java 46 // Evict our entire bitmap cache
50 // Evict oldest half of our bitmap cache
MemoryCache.java 63 * Evict all items from the memory cache.
  /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);
  /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());
  /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...]
  /prebuilts/go/linux-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...]
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
LockNowTest.java 25 * passed a flag to evict the CE key of the profile.
  /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
  /frameworks/base/core/tests/coretests/src/android/util/
LruCacheTest.java 223 cache.put("b", "BBBB"); // should evict a
225 cache.put("c", "CC"); // should evict b
229 cache.put("e", "E"); // should evict c
233 cache.put("g", "G"); // should evict d
237 cache.put("i", "III"); // should evict e, f, and g
239 cache.put("j", "JJJ"); // should evict h and i
257 // evict something
280 * Naive caches evict at most one element at a time. This is problematic
295 cache.put("d", "12345678"); // should evict a and b
297 cache.put("e", "12345678"); // should evict c and
    [all...]
  /prebuilts/go/darwin-x86/src/net/
fd_poll_runtime.go 53 // Evict evicts fd from the pending list, unblocking any I/O running on fd.
54 func (pd *pollDesc) evict() { func
fd_poll_nacl.go 22 func (pd *pollDesc) evict() { func
  /prebuilts/go/linux-x86/src/net/
fd_poll_runtime.go 53 // Evict evicts fd from the pending list, unblocking any I/O running on fd.
54 func (pd *pollDesc) evict() { func
fd_poll_nacl.go 22 func (pd *pollDesc) evict() { func
  /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/tools/aapt2/process/
SymbolTable.h 88 // results are stored in a cache which may evict entries on subsequent calls.
92 // results are stored in a cache which may evict entries on subsequent calls.
98 // results are stored in a cache which may evict entries on subsequent calls.
  /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));
  /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));
  /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));
  /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));

Completed in 2626 milliseconds

1 2 3 4 5 6 7 8