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

1 2 3 45 6 7 8 91011>>

  /external/valgrind/main/callgrind/tests/
simwork-both.vgtest 2 vgopts: --cache-sim=yes --branch-sim=yes
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/
event-after-navigation-expected.txt 1 Tests for a crash where an event is fired after the page has been navigated away when the original page is in the page cache.
  /external/webkit/LayoutTests/fast/encoding/
css-cached-bom-expected.txt 1 Test that stylesheet with BOM is correctly parsed when loaded from cache. You should see word SUCCESS below.
  /external/webkit/LayoutTests/http/tests/appcache/
access-via-redirect-expected.txt 1 This tests that the start of redirect chain doesn't get into an application cache if the end of the chain has a manifest.
top-frame-2-expected.txt 1 Test that a subframe without manifest gets picked by a relevant application cache that contains its resource.
simple.html 12 // Load a resource that does not exist in the cache.
15 req.open("GET", "resources/not-in-cache.txt", false);
27 // Load a resource that exists in the cache.
33 document.getElementById('result').innerHTML = "FAILURE: Could not load data from cache"
52 <div>This tests that the application cache works by first loading a file that does not exist in the cache (to verify that a cache has been associated) and then loads a file that is in the cache</div>
  /external/webkit/LayoutTests/http/tests/appcache/resources/
fallback.manifest 0 CACHE MANIFEST
local-content.manifest 0 CACHE MANIFEST
quota-origin-iframe-2.manifest 0 CACHE MANIFEST
7 CACHE:
quota-origin-iframe-3.manifest 0 CACHE MANIFEST
7 CACHE:
fail-on-update.php 23 header("Cache-Control: no-cache, must-revalidate");
24 header("Pragma: no-cache");
31 header("Content-Type: text/cache-manifest");
32 print("CACHE MANIFEST\n");
  /external/chromium/net/http/
http_cache_unittest.cc 67 // mock disk cache (a very basic memory cache implementation)
490 // returns number of times a cache entry was successfully opened
493 // returns number of times a cache entry was successfully created
571 // Helper function for reading response info from the disk cache.
588 // Helper function for writing response info into the disk cache.
626 // This version of the disk cache doesn't invoke CreateEntry callbacks.
693 explicit DeleteCacheCompletionCallback(MockHttpCache* cache)
694 : cache_(cache) {}
718 void RunTransactionTestWithRequestAndLog(net::HttpCache* cache,
1042 MockHttpCache cache; local
1061 MockHttpCache cache; local
1072 MockHttpCache cache; local
1122 MockHttpCache cache; local
1144 MockHttpCache cache; local
1181 MockHttpCache cache; local
1203 MockHttpCache cache; local
1271 MockHttpCache cache; local
1298 MockHttpCache cache; local
1315 MockHttpCache cache; local
1329 MockHttpCache cache; local
1373 MockHttpCache cache; local
1390 MockHttpCache cache; local
1407 MockHttpCache cache; local
1427 MockHttpCache cache; local
1456 MockHttpCache cache; local
1476 MockHttpCache cache; local
1496 MockHttpCache cache; local
1561 MockHttpCache cache; local
1691 MockHttpCache cache; local
1740 MockHttpCache cache; local
1799 MockHttpCache cache; local
1854 MockHttpCache cache; local
1877 MockHttpCache cache; local
1921 MockHttpCache cache; local
2122 MockHttpCache* cache = new MockHttpCache(factory); local
2160 MockHttpCache cache; local
2191 MockHttpCache cache; local
2226 MockHttpCache cache; local
2258 MockHttpCache cache; local
2283 MockHttpCache cache; local
2472 MockHttpCache cache; local
2516 MockHttpCache cache; local
2731 MockHttpCache cache; local
2755 MockHttpCache cache; local
2785 MockHttpCache cache; local
2815 MockHttpCache cache; local
2847 MockHttpCache cache; local
2881 MockHttpCache cache; local
2905 MockHttpCache cache; local
2935 MockHttpCache cache; local
2990 MockHttpCache cache; local
3044 MockHttpCache cache; local
3085 MockHttpCache cache; local
3117 MockHttpCache cache; local
3147 MockHttpCache cache; local
3184 MockHttpCache cache; local
3219 MockHttpCache cache; local
3257 MockHttpCache cache; local
3285 MockHttpCache cache; local
3316 MockHttpCache cache; local
3356 MockHttpCache cache; local
3397 MockHttpCache cache; local
3440 MockHttpCache cache; local
3482 MockHttpCache cache; local
3525 MockHttpCache cache; local
3595 MockHttpCache cache; local
3635 MockHttpCache cache; local
3668 MockHttpCache cache; local
3705 MockHttpCache cache; local
3750 MockHttpCache cache; local
3809 MockHttpCache cache; local
3837 MockHttpCache cache; local
3866 MockHttpCache cache; local
3960 MockHttpCache cache; local
3982 MockHttpCache cache; local
4009 MockHttpCache cache; local
4049 MockHttpCache cache; local
4087 MockHttpCache cache; local
4139 MockHttpCache cache; local
4169 MockHttpCache cache; local
4205 MockHttpCache cache; local
4249 MockHttpCache cache; local
4309 MockHttpCache cache; local
4355 MockHttpCache cache; local
4392 MockHttpCache cache; local
4428 MockHttpCache cache; local
4467 MockHttpCache cache; local
4517 MockHttpCache cache; local
4542 MockHttpCache cache; local
4580 MockHttpCache cache; local
4598 MockHttpCache cache; local
4665 MockHttpCache cache; local
4692 MockHttpCache cache; local
4720 MockHttpCache cache; local
4747 MockHttpCache cache; local
4775 MockHttpCache* cache = new MockHttpCache; local
4787 MockHttpCache cache; local
4811 MockHttpCache cache; local
4881 MockHttpCache cache; local
4918 MockHttpCache cache; local
4950 MockHttpCache cache; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
CacheLoadingTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.TestingCacheLoaders.bulkLoader;
18 import static com.google.common.cache.TestingCacheLoaders.constantLoader;
19 import static com.google.common.cache.TestingCacheLoaders.errorLoader;
20 import static com.google.common.cache.TestingCacheLoaders.exceptionLoader;
21 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
22 import static com.google.common.cache.TestingRemovalListeners.countingRemovalListener;
27 import com.google.common.cache.CacheLoader.InvalidCacheLoadException;
28 import com.google.common.cache.TestingCacheLoaders.CountingLoader;
29 import com.google.common.cache.TestingCacheLoaders.IdentityLoader
100 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
173 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
220 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
279 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
323 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
370 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder().build(loader); local
432 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
467 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
505 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
543 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
577 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
588 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
659 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
704 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
750 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
795 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
815 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build( local
848 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
933 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
979 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1026 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1073 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1097 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1177 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1223 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1270 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1317 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1341 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1421 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1467 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder().build(loader); local
1514 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1561 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1596 LoadingCache<Integer, String> cache = CacheBuilder.newBuilder() local
1622 LoadingCache<Object, Object> cache = local
1660 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1684 LoadingCache<Object, Object> cache = CacheBuilder.newBuilder() local
1826 LoadingCache<String, Object> cache = builder.build( local
1855 LoadingCache<String, String> cache = builder.build( local
1893 LoadingCache<String, String> cache = builder.build( local
1934 LoadingCache<String, String> cache = builder.build( local
2041 final LoadingCache<String, String> cache = CacheBuilder.newBuilder() local
2100 final LoadingCache<String, String> cache = CacheBuilder.newBuilder() local
2161 final LoadingCache<String, String> cache = CacheBuilder.newBuilder() local
2251 final LoadingCache<String, String> cache = CacheBuilder.newBuilder() local
    [all...]
CacheExpirationTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
18 import static com.google.common.cache.TestingRemovalListeners.countingRemovalListener;
23 import com.google.common.cache.TestingCacheLoaders.IdentityLoader;
24 import com.google.common.cache.TestingRemovalListeners.CountingRemovalListener;
37 * Tests relating to cache expiration: make sure entries expire at the right times, make sure
53 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
58 checkExpiration(cache, loader, ticker, removalListener);
65 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
70 checkExpiration(cache, loader, ticker, removalListener)
102 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
114 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
195 LoadingCache<Integer, AtomicInteger> cache = CacheBuilder.newBuilder() local
216 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
228 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
240 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
253 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
305 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
352 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
    [all...]
  /external/chromium/chrome/browser/policy/
user_policy_cache_unittest.cc 44 // Tests the device management policy cache.
102 void SetPolicy(UserPolicyCache* cache,
107 registrar.Init(cache->GetManagedPolicyProvider(), &observer);
112 cache->SetPolicy(*policy);
120 const PolicyMap& mandatory_policy(const UserPolicyCache& cache) {
121 return cache.mandatory_policy_;
124 const PolicyMap& recommended_policy(const UserPolicyCache& cache) {
125 return cache.recommended_policy_;
195 UserPolicyCache cache(test_file());
197 EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
    [all...]
  /external/guava/guava/src/com/google/common/cache/
package-info.java 20 * <p>The core interface used to represent caches is {@link com.google.common.cache.Cache}.
22 * {@link com.google.common.cache.CacheBuilder}, with cache entries being loaded by
23 * {@link com.google.common.cache.CacheLoader}. Statistics about cache performance are exposed using
24 * {@link com.google.common.cache.CacheStats}.
32 package com.google.common.cache;
  /external/kernel-headers/original/asm-arm/
shmparam.h 5 * This should be the size of the virtually indexed cache/ways,
6 * or page size, whichever is greater since the cache aliases
  /external/webkit/LayoutTests/http/tests/appcache/resources/auth/
manifest.php 8 header("Content-Type: text/cache-manifest");
9 echo "CACHE MANIFEST\n";
  /external/e2fsprogs/lib/blkid/
blkid.h 37 * in the cache.
43 * cache or by probing the device.
50 /* cache.c */
51 extern void blkid_put_cache(blkid_cache cache);
52 extern int blkid_get_cache(blkid_cache *cache, const char *filename);
53 extern void blkid_gc_cache(blkid_cache cache);
58 extern blkid_dev_iterate blkid_dev_iterate_begin(blkid_cache cache);
68 extern int blkid_probe_all(blkid_cache cache);
69 extern int blkid_probe_all_new(blkid_cache cache);
70 extern blkid_dev blkid_get_dev(blkid_cache cache, const char *devname
    [all...]
blkid.h.in 37 * in the cache.
43 * cache or by probing the device.
50 /* cache.c */
51 extern void blkid_put_cache(blkid_cache cache);
52 extern int blkid_get_cache(blkid_cache *cache, const char *filename);
53 extern void blkid_gc_cache(blkid_cache cache);
58 extern blkid_dev_iterate blkid_dev_iterate_begin(blkid_cache cache);
68 extern int blkid_probe_all(blkid_cache cache);
69 extern int blkid_probe_all_new(blkid_cache cache);
70 extern blkid_dev blkid_get_dev(blkid_cache cache, const char *devname
    [all...]
  /frameworks/base/core/java/android/webkit/
CacheManager.java 33 * Manages the HTTP cache used by an application's {@link WebView} instances.
34 * @deprecated Access to the HTTP cache will be removed in a future release.
37 // The class CacheManager provides the persistent cache of content that is
39 // utilizes the relevant cache headers to determine if the content should be
41 // this component and if they can not be resolved by the cache, the HTTP headers
43 // class also manages the cache size.
49 * Represents a resource stored in the HTTP cache. Instances of this class
53 * @deprecated Access to the HTTP cache will be removed in a future release.
77 * Gets the status code of this cache entry.
79 * @return the status code of this cache entr
    [all...]
  /external/bluetooth/bluedroid/btif/co/
bta_gattc_co.c 37 ** cache is ready to be sent.
39 ** Parameter server_bda: server bd address of this cache belongs to
40 ** evt: call in event to be passed in when cache open is done.
41 ** conn_id: connection ID of this cache operation attach to.
42 ** to_save: open cache to save or to load.
51 /* open NV cache and send call in */
59 ** Description This callout function is executed by GATT when server cache
62 ** Parameter server_bda: server bd address of this cache belongs to
63 ** evt: call in event to be passed in when cache save is done.
66 ** conn_id: connection ID of this cache operation attach to
    [all...]
  /external/compiler-rt/lib/tsan/lit_tests/
static_init4.cc 7 struct Cache {
9 explicit Cache(int x)
16 Cache *CreateCache() {
18 return new Cache(rand());
22 static Cache *c = CreateCache();
  /external/e2fsprogs/doc/
libblkid.txt 7 directly initialize cache file via (second parameter is cache
10 blkid_cache cache = NULL;
11 if (blkid_get_cache(&cache, NULL) < 0)
12 /* error reading the cache file, not really fatal */
14 Note that if no cache file exists, an empty cache struct is still
15 allocated. Usage of libblkid functions will use the cache to avoid
18 The model of the blkid cache is that each device has a number of
32 if ((devname = blkid_get_devname(cache, attribute_name, value)))
    [all...]
  /libcore/luni/src/test/java/libcore/io/
DiskLruCacheTest.java 43 private DiskLruCache cache; field in class:DiskLruCacheTest
55 cache = DiskLruCache.open(cacheDir, appVersion, 2, Integer.MAX_VALUE);
61 cache.close();
66 cache.close();
71 DiskLruCache.Editor creator = cache.edit("k1");
80 DiskLruCache.Snapshot snapshot = cache.get("k1");
86 DiskLruCache.Editor creator = cache.edit("k1");
90 cache.close();
92 cache = DiskLruCache.open(cacheDir, appVersion, 2, Integer.MAX_VALUE);
93 DiskLruCache.Snapshot snapshot = cache.get("k1")
    [all...]

Completed in 293 milliseconds

1 2 3 45 6 7 8 91011>>