HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 101 - 125 of 317) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
cros_power_monitor.py 31 @decorators.Cache
msr_power_monitor.py 68 @decorators.Cache
  /external/llvm/include/llvm/Analysis/
CFLAliasAnalysis.h 43 /// \brief Inserts the given Function into the cache.
48 /// \brief Ensures that the given function is available in the cache.
49 /// Returns the appropriate entry from the cache.
104 /// in the cache as an Optional without a value. This way, if we
107 DenseMap<Function *, Optional<FunctionInfo>> Cache;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
linux_platform_backend.py 45 @decorators.Cache
52 @decorators.Cache
78 assert p.returncode == 0, 'Failed to flush system cache'
win_platform_backend.py 141 @decorators.Cache
224 @decorators.Cache
231 @decorators.Cache
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
xmlhttpfactory.js 34 * Cache of options - we only actually call internalGetOptions once.
  /external/guava/guava-tests/test/com/google/common/cache/
CacheManualTest.java 15 package com.google.common.cache;
30 Cache<Object, Object> cache = CacheBuilder.newBuilder().recordStats().build(); local
31 CacheStats stats = cache.stats();
40 assertNull(cache.getIfPresent(one));
41 stats = cache.stats();
46 assertNull(cache.asMap().get(one));
47 assertFalse(cache.asMap().containsKey(one));
48 assertFalse(cache.asMap().containsValue(two));
50 assertNull(cache.getIfPresent(two))
106 Cache<Integer, Integer> cache = CacheBuilder.newBuilder().recordStats().build(); local
    [all...]
  /external/llvm/lib/IR/
Value.cpp 327 static bool contains(SmallPtrSetImpl<ConstantExpr *> &Cache, ConstantExpr *Expr,
329 if (!Cache.insert(Expr).second)
338 if (contains(Cache, CE, C))
356 SmallPtrSet<ConstantExpr *, 4> Cache;
357 return contains(Cache, CE, C);
  /external/llvm/lib/Analysis/
CFLAliasAnalysis.cpp     [all...]
  /bionic/libc/dns/resolv/
res_cache.c 53 /* This code implements a small and *simple* DNS resolver cache.
55 * It is only used to cache DNS answers for a time defined by the smallest TTL
57 * to be a full DNS cache, since we plan to implement that in the future in a
69 * to keep an answer in the cache.
72 * (and should be solved by the later full DNS cache process).
78 * that a full DNS cache is expected to do.
82 * - the client calls _resolv_cache_get() to obtain a handle to the cache.
83 * this will initialize the cache on first usage. the result can be NULL
84 * if the cache is disabled.
93 * answer to the cache
1234 Cache* cache; member in struct:resolv_cache_info
1353 Cache* cache; local
1417 struct resolv_cache* cache; local
1629 Cache* cache; local
1718 Cache* cache = NULL; local
1831 struct resolv_cache* cache = _find_named_cache_locked(netid); local
1862 struct resolv_cache* cache = _find_named_cache_locked(netid); local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
OkHttpClient.java 50 * response cache, thread pool, connection re-use, etc.
183 /** Non-null if this client is caching; possibly by {@code cache}. */
185 private Cache cache; field in class:OkHttpClient
216 this.cache = okHttpClient.cache;
217 this.internalCache = cache != null ? cache.internalCache : okHttpClient.internalCache;
340 /** Sets the response cache to be used to read and write cached responses. */
343 this.cache = null
    [all...]
  /external/skia/src/core/
SkBitmapDevice.cpp 379 SkImageFilter::Cache* SkBitmapDevice::getImageFilterCache() {
380 SkImageFilter::Cache* cache = SkImageFilter::Cache::Get(); local
381 cache->ref();
382 return cache;
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
browser_backend.py 83 @decorators.Cache
  /external/clang/lib/Lex/
PTHLexer.cpp 522 // Get the location of the spelling cache.
531 // Get the number of IdentifierInfos and pre-allocate the identifier cache.
534 // Pre-allocate the persistent ID -> IdentifierInfo* cache. We use calloc()
576 // Store the new IdentifierInfo in the cache.
691 CacheTy Cache;
695 : Cache(FL.getNumBuckets(), FL.getNumEntries(), FL.getBuckets(),
702 CacheTy::iterator I = Cache.find(Path);
705 if (I == Cache.end())
  /external/guava/guava/src/com/google/common/cache/
AbstractCache.java 17 package com.google.common.cache;
30 * This class provides a skeletal implementation of the {@code Cache} interface to minimize the
33 * <p>To implement a cache, the programmer needs only to extend this class and provide an
45 public abstract class AbstractCache<K, V> implements Cache<K, V> {
59 * This implementation of {@code getAllPresent} lacks any insight into the internal cache data
140 * Accumulates statistics during the operation of a {@link Cache} for presentation by {@link
141 * Cache#stats}. This is solely intended for consumption by {@code Cache} implementors.
148 * Records cache hits. This should be called when a cache request returns a cached value
    [all...]
  /external/lzma/C/
Ppmd7.h 128 Byte Cache;
  /external/skia/include/core/
SkBitmapDevice.h 165 SkImageFilter::Cache* getImageFilterCache() override;
  /external/skia/src/gpu/
SkGpuDevice.h 53 * the resource cache budget. On failure, returns nullptr.
144 static SkImageFilter::Cache* NewImageFilterCache();
185 SkImageFilter::Cache* getImageFilterCache() override;
  /external/mesa3d/src/mesa/program/
program.c 102 ctx->VertexProgram.Cache = _mesa_new_program_cache();
110 ctx->FragmentProgram.Cache = _mesa_new_program_cache();
118 ctx->GeometryProgram.Cache = _mesa_new_program_cache();
139 _mesa_delete_program_cache(ctx, ctx->VertexProgram.Cache);
143 _mesa_delete_shader_cache(ctx, ctx->FragmentProgram.Cache);
147 _mesa_delete_program_cache(ctx, ctx->GeometryProgram.Cache);
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
libhttplib2.tex 72 The module can optionally operate with a private cache that understands the Cache-Control: header and uses both the ETag and Last-Modified cache validators.
167 \begin{classdesc}{Http}{\optional{cache=None}, \optional{timeout=None}, \optional{proxy_info=None}}
169 The \var{cache} parameter is either the name of a directory
170 to be used as a flat file cache, or it must an object that
186 FileCache implements a Cache as a directory of files.
191 the cache filename for each URI. A FileCache object is
298 \subsection{Cache Objects}
299 \label{cache-objects
    [all...]
  /external/clang/lib/Frontend/
FrontendAction.cpp 445 StringRef Cache =
447 if (!Cache.empty())
449 CI.getPCHContainerReader(), Cache);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 122 private static Cache GENERIC_NAMES_CACHE = new Cache();
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 120 private static Cache GENERIC_NAMES_CACHE = new Cache();
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java 18 import com.squareup.okhttp.Cache;
78 protected Cache cache; field in class:HttpOverSpdyTest
89 cache = new Cache(tempDir.getRoot(), Integer.MAX_VALUE);
325 client.client().setCache(cache);
327 server.enqueue(new MockResponse().addHeader("cache-control: max-age=60").setBody("A"));
330 assertEquals(1, cache.getRequestCount());
331 assertEquals(1, cache.getNetworkCount());
332 assertEquals(0, cache.getHitCount())
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.h 63 * Each cache has their own generation id to track whether they are up to date with the latest
551 // Draws the VD onto a bitmap cache, then the bitmap cache will be rendered onto the input
552 // canvas. Returns the number of pixels needed for the bitmap cache.
710 struct Cache {
715 Cache mStagingCache;
716 Cache mCache;

Completed in 1562 milliseconds

1 2 3 45 6 7 8 91011>>