HomeSort by relevance Sort by last modified time
    Searched full:cache (Results 51 - 75 of 2595) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/http/tests/appcache/
remove-cache-expected.txt 1 Test that a 404 response for manifest results in cache removal.
3 Frame 1: Manifest is still available, so a new master resource is added to the cache.
4 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).
5 Frame 3: Manifest is still 404 - the document is never associated with a cache.
6 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.
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>
update-cache.html 32 log("Updating cache group...");
38 log((applicationCache.status == applicationCache.UPDATEREADY) ? "Cache status is UPDATEREADY" : ("FAIL: Incorrect cache status, " + applicationCache.status));
43 log("Updating cache group once more...");
49 log((applicationCache.status == applicationCache.UPDATEREADY) ? "Cache status is UPDATEREADY" : ("FAIL: Incorrect cache status, " + applicationCache.status));
51 log("Associating document with the newest cache version...");
54 log((applicationCache.status == applicationCache.IDLE) ? "Cache status is IDLE" : ("FAIL: Incorrect cache status, " + applicationCache.status));
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...]
  /external/webkit/LayoutTests/http/tests/appcache/resources/
versioned-manifest.php 24 header("Cache-Control: no-cache, must-revalidate");
25 header("Pragma: no-cache");
26 header("Content-Type: text/cache-manifest");
31 print("CACHE MANIFEST\n");
34 print("uncacheable-resource.php\n"); // with Cache-control: no-store
fallback.manifest 0 CACHE MANIFEST
local-content.manifest 0 CACHE MANIFEST
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");
counter.php 18 header("Cache-Control: no-cache, must-revalidate");
19 header("Pragma: no-cache");
uncacheable-resource.php 5 header("Cache-Control: no-cache, no-store");
6 header("Pragma: no-cache");
  /external/bluetooth/glib/gio/xdgmime/
xdgmimecache.c 46 #warning Building xdgmime without MMAP support. Binary "mime.info" cache files will not be used.
86 #define GET_UINT16(cache,offset) (ntohs(*(xdg_uint16_t*)((cache) + (offset))))
87 #define GET_UINT32(cache,offset) (ntohl(*(xdg_uint32_t*)((cache) + (offset))))
90 _xdg_mime_cache_ref (XdgMimeCache *cache)
92 cache->ref_count++;
93 return cache;
97 _xdg_mime_cache_unref (XdgMimeCache *cache)
99 cache->ref_count--
113 XdgMimeCache *cache = NULL; local
320 XdgMimeCache *cache = _caches[i]; local
365 XdgMimeCache *cache = _caches[i]; local
410 XdgMimeCache *cache = _caches[i]; local
525 XdgMimeCache *cache = _caches[i]; local
601 XdgMimeCache *cache = _caches[i]; local
624 XdgMimeCache *cache = _caches[i]; local
801 XdgMimeCache *cache = _caches[i]; local
864 XdgMimeCache *cache = _caches[i]; local
916 XdgMimeCache *cache = _caches[i]; local
992 XdgMimeCache *cache = _caches[i]; local
    [all...]
  /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...]
save.c 2 * save.c - write the cache struct to disk
54 * Write out the cache struct to the cache file on disk.
56 int blkid_flush_cache(blkid_cache cache)
66 if (!cache)
69 if (list_empty(&cache->bic_devs) ||
70 !(cache->bic_flags & BLKID_BIC_FL_CHANGED)) {
71 DBG(DEBUG_SAVE, printf("skipping cache file write\n"));
75 filename = cache->bic_filename ? cache->bic_filename: BLKID_CACHE_FILE
163 blkid_cache cache = NULL; local
    [all...]
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"));
104 if (!cache) {
114 blkid_cache cache; local
    [all...]
  /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...]
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 5 * Implements a one-block write-through cache.
72 struct unix_cache cache[CACHE_SIZE]; member in struct:unix_private_data
89 struct unix_cache *cache, unsigned long block);
250 * Here we implement the cache functions
253 /* Allocate the cache buffers */
258 struct unix_cache *cache; local
262 for (i=0, cache = data->cache; i < CACHE_SIZE; i++, cache++) {
263 cache->block = 0
277 struct unix_cache *cache; local
302 struct unix_cache *cache, *unused_cache, *oldest_cache; local
348 struct unix_cache *cache; local
529 struct unix_cache *cache, *reuse[READ_DIRECT_SIZE]; local
594 struct unix_cache *cache, *reuse; local
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
SSLPerformanceTest.java 60 = SSLPerformanceTest.class.getName() + "/cache";
69 DatabaseSessionCache cache = new DatabaseSessionCache(getContext()); local
70 cache.getSessionData("crazybob.org", 443);
80 SSLClientSessionCache cache = FileClientSessionCache.usingDirectory( local
82 cache.getSessionData("crazybob.org", 443);
90 DatabaseSessionCache cache = new DatabaseSessionCache(getContext()); local
91 putSessionsIn(cache);
99 cache = new DatabaseSessionCache(getContext());
100 cache.getSessionData("crazybob.org", 443);
108 SSLClientSessionCache cache = FileClientSessionCache.usingDirectory local
125 DatabaseSessionCache cache = new DatabaseSessionCache(getContext()); local
144 SSLClientSessionCache cache = FileClientSessionCache.usingDirectory( local
165 DatabaseSessionCache cache = new DatabaseSessionCache(getContext()); local
178 SSLClientSessionCache cache = FileClientSessionCache.usingDirectory( local
    [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/WebCore/loader/appcache/
ApplicationCacheHost.cpp 75 // Check if this request should be loaded from the application cache
82 // Get the resource from the application cache. By definition, cacheForMainRequest() returns a cache that contains the resource.
128 ASSERT(!mainResourceApplicationCache()); // If the main resource were loaded from a cache, it wouldn't fail.
206 // or if there were network errors (but not if the user canceled the download), then instead get, from the cache, the resource of the fallback entry
278 ApplicationCache* cache = applicationCache(); local
279 if (!cache || !cache->isComplete())
283 // <scheme> component than the application cache's manifest, then fetch the resource normally.
284 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request) || !equalIgnoringCase(request.url().protocol(), cache->manifestResource()->url().protocol())
344 ApplicationCache* cache = applicationCache(); local
368 ApplicationCache* cache = applicationCache(); local
377 ApplicationCache* cache = applicationCache(); local
    [all...]
  /bootable/diskinstaller/
installer.conf 28 cache {
29 partition cache

Completed in 39 milliseconds

1 23 4 5 6 7 8 91011>>