HomeSort by relevance Sort by last modified time
    Searched full:cache (Results 151 - 175 of 6143) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/net/data/url_request_unittest/
with-headers.html.mock-http-headers 2 Cache-Control: private
  /external/e2fsprogs/lib/blkid/
resolve.c 27 char *blkid_get_tag_value(blkid_cache cache, const char *tagname,
32 blkid_cache c = cache;
40 if (!cache) {
49 if (!cache)
61 char *blkid_get_devname(blkid_cache cache, const char *token,
65 blkid_cache c = cache;
72 if (!cache) {
79 value ? value : "", cache ? "in cache" : "from disk"));
102 if (!cache) {
112 blkid_cache cache; local
    [all...]
  /external/eigen/bench/btl/cmake/
FindGMM.cmake 2 # in cache already
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LRUCache.java 26 * An LRU cache, based on <code>LinkedHashMap</code>.
29 * This cache has a fixed maximum number of elements (<code>cacheSize</code>).
30 * If the cache is full and another entry is added, the LRU (least recently
47 * Creates a new LRU cache.
50 * the maximum number of entries that will be kept in this cache.
68 * Retrieves an entry from the cache.<br>
74 * key exists in the cache.
81 * Adds an entry to this cache.
83 * If an entry with the specified key already exists in the cache, it is
85 * If the cache is full, the LRU (least recently used) entry is removed from
    [all...]
  /external/llvm/cmake/platforms/
Android.cmake 16 SET(ANDROID "1" CACHE STRING "ANDROID" FORCE)
19 SET(CMAKE_C_FLAGS "${ANDROID_COMMON_FLAGS}" CACHE STRING "toolchain_cflags" FORCE)
20 SET(CMAKE_CXX_FLAGS "${ANDROID_COMMON_FLAGS}" CACHE STRING "toolchain_cxxflags" FORCE)
21 SET(CMAKE_LINK_FLAGS "${ANDROID_COMMON_FLAGS}" CACHE STRING "toolchain_linkflags" FORCE)
  /external/skia/src/core/
SkGlyphCache.cpp 38 SkDebugf("Font Cache Hash success rate: %d%%\n",
401 kNo_UseMutex, // thread-local cache
402 kYes_UseMutex // shared cache
417 SkGlyphCache* cache = fHead; local
418 while (cache) {
419 SkGlyphCache* next = cache->fNext;
420 SkDELETE(cache);
421 cache = next;
507 SkGlyphCache* cache; local
511 for (cache = globals.fHead; cache != NULL; cache = cache->fNext)
533 SkGlyphCache* cache; local
660 SkGlyphCache* cache = FindTail(globals->fHead); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
no-page-cache.js 1 description("Tests that pages that use Geolocation are not put in the page cache.<br><br>Currently, Geolocation does not work with the page cache so pages that use Geolocation are explicitly prevented from entering the cache. This test checks for accidental enabling of the page Cache for Geolocation. See https://bugs.webkit.org/show_bug.cgi?id=43956 for details.");
  /external/webkit/LayoutTests/http/tests/appcache/
local-content-expected.txt 2 Test that documents loaded from application cache don't get access to local resources accidentally.
remove-cache.html 2 <p>Test that a 404 response for manifest results in cache removal.</p>
5 <li>Frame 1: Manifest is still available, so a new master resource is added to the cache.
6 <li>Frame 2: Manifest loading results in 404 response, so the cache group becomes obsolete, and an obsolete event is dispatched (because the document in frame was associated with a cache in the group).
7 <li>Frame 3: Manifest is still 404 - the document is never associated with a cache.
8 <li>Frame 4: Manifest is now available, so the document gets associated with a cache in a newly created group; the obsolete cache group is not affected.
35 // The frame will be associated to a cache, and its main resource will be added to the cache.
37 ifr.setAttribute("src", "resources/remove-cache-frame.html")
    [all...]
navigating-away-while-cache-attempt-in-progress.html 1 <html manifest="resources/navigating-away-while-cache-attempt-in-progress.manifest">
19 <div>This tests that navigating away while a cache is loading does not crash.</div>
  /external/webkit/Source/WebCore/rendering/svg/
SVGResourcesCache.cpp 56 // Put object in cache.
98 SVGResourcesCache* cache = extensions->resourcesCache(); local
99 ASSERT(cache);
101 return cache;
107 SVGResourcesCache* cache = resourcesCacheFromRenderObject(renderer); local
108 if (!cache->m_cache.contains(renderer))
111 return cache->m_cache.get(renderer);
142 SVGResourcesCache* cache = resourcesCacheFromRenderObject(renderer); local
143 cache->removeResourcesFromRenderObject(renderer);
144 cache->addResourcesFromRenderObject(renderer, newStyle)
150 SVGResourcesCache* cache = resourcesCacheFromRenderObject(renderer); local
157 SVGResourcesCache* cache = resourcesCacheFromRenderObject(resource); local
    [all...]
  /bootable/diskinstaller/
installer.conf 26 cache {
27 partition cache
  /external/clang/test/Modules/
on-demand-macros.m 2 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -DFOO_RETURNS_INT_PTR -verify %s
3 // RUN: %clang_cc1 -fmodules -fmodules-cache-path=%t -F %S/Inputs -verify %s
modify-module.m 9 // RUN: %clang_cc1 -fmodules-cache-path=%t/cache -fmodules -I %t/include %s -verify
12 // RUN: %clang_cc1 -fmodules-cache-path=%t/cache -fmodules -I %t/include %s -verify
14 // RUN: %clang_cc1 -fmodules-cache-path=%t/cache -fmodules -I %t/include %s -verify
  /external/guava/guava/src/com/google/common/cache/
Cache.java 17 package com.google.common.cache;
33 * A semi-persistent mapping from keys to values. Cache entries are manually added using
34 * {@link #get(K, Callable)} or {@link #put(K, V)}, and are stored in the cache until either
37 * <p><b>Note:</b> in release 12.0, all methods moved from {@code Cache} to {@link LoadingCache}
38 * will be deleted from {@code Cache}. As part of this transition {@code Cache} will no longer
51 public interface Cache<K, V> extends Function<K, V> {
54 * Returns the value associated with {@code key} in this cache, or {@code null} if there is no
63 * Returns the value associated with {@code key} in this cache, obtaining that value from
64 * {@code valueLoader} if necessary. No observable state associated with this cache is modifie
    [all...]
  /external/openssl/crypto/x509v3/
pcy_cache.c 69 /* Set cache entry according to CertificatePolicies extension.
78 X509_POLICY_CACHE *cache = x->policy_cache; local
83 cache->data = sk_X509_POLICY_DATA_new(policy_data_cmp);
84 if (!cache->data)
97 if (cache->anyPolicy)
102 cache->anyPolicy = data;
104 else if (sk_X509_POLICY_DATA_find(cache->data, data) != -1)
109 else if (!sk_X509_POLICY_DATA_push(cache->data, data))
122 sk_X509_POLICY_DATA_pop_free(cache->data, policy_data_free);
123 cache->data = NULL
131 X509_POLICY_CACHE *cache; local
    [all...]
  /external/webkit/LayoutTests/fast/dom/NodeList/
invalidate-node-lists-when-parsing-expected.txt 1 This test checks to see if the DOM ContainerNode's NodeList cache is correctly invalidated when new content is parsed.
5 If the cache is not invalidated when the testElement is parsed, both before and after will be "not found", which is a failure.
  /external/webkit/Source/WebCore/manual-tests/
bad-clearTimeout-crash.html 1 If the back/forward cache is enabled, this test will crash instead of going to the next page that says PASS.
3 It cannot be automated because DumpRenderTree doesn't support the back/forward cache.
  /libcore/luni/src/test/java/libcore/net/http/
ParsedHeadersTest.java 36 headers.add("CACHE-CONTROL", "no-store");
41 headers.add("PRAGMA", "no-cache");
53 headers.add("Cache-Control", "no-store, max-age=60, public");
62 headers.add("Cache-Control", "private=\"Set-Cookie\", no-store");
69 headers.add("Cache-Control", "private=Set-Cookie, no-store");
76 headers.add("Cache-Control", "private=\" a, no-cache, c \", no-store");
84 headers.add("Cache-Control", "private=\"a, no-cache, c");
91 headers.add("Cache-Control", "public,")
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
LocalLoadingCacheTest.java 17 package com.google.common.cache;
19 import static com.google.common.cache.CacheBuilder.EMPTY_STATS;
20 import static com.google.common.cache.LocalCacheTest.SMALL_MAX_SIZE;
21 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
24 import com.google.common.cache.LocalCache.LocalLoadingCache;
25 import com.google.common.cache.LocalCache.Segment;
67 LocalLoadingCache<Object, Object> cache = makeCache(createCacheBuilder(), loader); local
68 assertSame(loader, cache.localCache.defaultLoader);
86 LocalLoadingCache<Object, Object> cache = makeCache(builder, identityLoader()); local
87 assertEquals(EMPTY_STATS, cache.stats())
145 LocalLoadingCache<Object, Object> cache = makeCache(builder, identityLoader()); local
186 LocalLoadingCache<Object, Object> cache = makeCache(builder, identityLoader()); local
209 LocalLoadingCache<Object, Object> cache = makeCache(builder, identityLoader()); local
268 LocalLoadingCache<Object, Object> cache = makeCache(builder, identityLoader()); local
    [all...]
  /frameworks/native/include/utils/
BlobCache.h 29 // A BlobCache is an in-memory cache for binary key/value pairs. A BlobCache
32 // The cache contents can be serialized to an in-memory buffer or mmap'd file
39 // Create an empty blob cache. The blob cache will cache key/value pairs
41 // maxValueSize, respectively. The total combined size of ALL cache entries
45 // set inserts a new binary value into the cache and associates it with the
46 // given binary key. If the key or value are too large for the cache then
47 // the cache remains unchanged. This includes the case where a different
49 // remain in the cache. If the given key and value are small enough to b
    [all...]
  /external/skia/tests/
ClipCacheTest.cpp 101 const GrClipMaskCache& cache,
106 REPORTER_ASSERT(reporter, clip.getTopmostGenID() == cache.getLastClipGenID());
108 REPORTER_ASSERT(reporter, mask == cache.getLastMask());
111 cache.getLastBound(&cacheBound);
116 // basic test of the cache's base functionality:
123 GrClipMaskCache cache; local
125 cache.setContext(context);
134 check_state(reporter, cache, emptyClip, NULL, emptyBound);
148 cache.acquireMask(clip1.getTopmostGenID(), desc, bound1);
150 GrTexture* texture1 = cache.getLastMask()
    [all...]
  /frameworks/volley/tests/src/com/android/volley/utils/
CacheTestUtils.java 5 import com.android.volley.Cache;
12 * Makes a random cache entry.
17 public static Cache.Entry makeRandomCacheEntry(
20 Cache.Entry entry = new Cache.Entry();
37 public static Cache.Entry makeRandomCacheEntry(byte[] data) {
  /external/chromium/net/tools/crash_cache/
crash_cache.cc 6 // cache unit tests (DiskCacheTest,CacheBackend_Recover*). This program only
8 // on release builds of the cache.
124 void FlushQueue(disk_cache::Backend* cache) {
127 reinterpret_cast<disk_cache::BackendImpl*>(cache)->FlushQueueForTest(&cb);
131 // Generates the files for an empty and one item cache.
135 disk_cache::Backend* cache; local
138 NULL, &cache, &cb);
139 if (cb.GetResult(rv) != net::OK || cache->GetEntryCount())
150 rv = cache->CreateEntry(test_name, &entry, &cb);
155 FlushQueue(cache);
175 disk_cache::Backend* cache; local
218 disk_cache::Backend* cache; local
258 disk_cache::BackendImpl* cache = new disk_cache::BackendImpl( local
    [all...]
  /external/skia/include/core/
SkGraphics.h 25 * Call this to release any memory held privately, such as the font cache.
36 * Return the max number of bytes that should be used by the font cache.
37 * If the cache needs to allocate more, it will purge previous entries.
43 * Specify the max number of bytes that should be used by the font cache.
44 * If the cache needs to allocate more, it will purge previous entries.
52 * Return the number of bytes currently used by the font cache.
57 * For debugging purposes, this will attempt to purge the font cache. It
59 * draws to be recreated, since they will no longer be in the cache.
65 * as cache sizes, here, for instance:
66 * font-cache-limit=1234567
    [all...]

Completed in 495 milliseconds

1 2 3 4 5 67 8 91011>>