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

1 2

  /prebuilts/go/darwin-x86/src/net/
fd_poll_nacl.go 22 func (pd *pollDesc) evict() { func
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
  /prebuilts/go/linux-x86/src/net/
fd_poll_nacl.go 22 func (pd *pollDesc) evict() { func
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
  /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);
  /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
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv30_vertprog.c 96 struct nouveau_heap **evict = heap->next->priv; local
97 nouveau_heap_free(evict);
nv30_draw.c 297 struct nouveau_heap **evict = heap->next->priv; local
298 nouveau_heap_free(evict);
nv30_transfer.c 80 struct nouveau_heap **evict = heap->next->priv; local
81 nouveau_heap_free(evict);
  /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...]
  /external/mesa3d/src/gallium/drivers/nouveau/nv50/
nv50_program.c 459 /* Out of space: evict everything to compactify the code segment, hoping
463 struct nv50_program *evict = heap->next->priv; local
464 if (evict)
465 nouveau_heap_free(&evict->mem);
  /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/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
  /external/llvm/lib/Analysis/
CFLSteensAliasAnalysis.cpp 254 void CFLSteensAAResult::evict(Function *Fn) { Cache.erase(Fn); } function in class:CFLSteensAAResult
  /external/mesa3d/src/gallium/drivers/nouveau/nvc0/
nvc0_program.c 801 struct nvc0_program *evict = heap->next->priv; local
802 nouveau_heap_free(&evict->mem);
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 169 dt.evict()
184 dt.evict()
187 // If we're too big, evict old stuff (front of the slice)
188 func (dt *dynamicTable) evict() { func
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 169 dt.evict()
184 dt.evict()
187 // If we're too big, evict old stuff (front of the slice)
188 func (dt *dynamicTable) evict() { func
  /system/core/storaged/include/
storaged.h 147 void evict(uint32_t num) { function in class:stream_stats
184 void evict(struct disk_perf* perf);
  /prebuilts/tools/common/m2/repository/com/jakewharton/rxrelay/rxrelay/1.1.0/
rxrelay-1.1.0.jar 
  /external/tpm2/
Global.h 132 unsigned evict : 1; //4) SET if the object is a platform or member in struct:__anon35368
133 // owner evict object. Platform-
134 // evict object belongs to PPS
135 // hierarchy, owner-evict object
186 TPMI_DH_OBJECT evictHandle; // if the object is an evict object,
    [all...]
  /libcore/ojluni/src/main/java/java/util/
HashMap.java 496 * @param evict false when initially constructing this map, else
499 final void putMapEntries(Map<? extends K, ? extends V> m, boolean evict) {
514 putVal(hash(key), key, value, false, evict); local
621 * @param evict if false, the table is in creation mode.
625 boolean evict) {
663 afterNodeInsertion(evict);
    [all...]
  /external/guice/extensions/persist/lib/
hibernate-search.jar 
hibernate3.jar 
  /prebuilts/tools/common/m2/repository/io/reactivex/rxjava/1.1.0/
rxjava-1.1.0.jar 

Completed in 626 milliseconds

1 2