Home | History | Annotate | Download | only in Api

Lines Matching full:cache

27 #include "Cache.h"
264 cache and the Web page icon database, local database storage and offline
278 (offline) storage and the use of a Web application cache.
360 web application cache feature is enabled or not. Disabled by default.
629 as page, object and font cache.
635 // Turn the cache on and off. Disabling the object cache will remove all
636 // resources from the cache. They may still live on if they are referenced
638 if (!WebCore::cache()->disabled()) {
639 WebCore::cache()->setDisabled(true);
640 WebCore::cache()->setDisabled(false);
649 // Invalidating the font cache and freeing all inactive font data.
652 // Empty the Cross-Origin Preflight cache
657 Sets the maximum number of pages to hold in the memory page cache to \a pages.
659 The Page Cache allows for a nicer user experience when navigating forth or back
665 http://webkit.org/blog/427/webkit-page-cache-i-the-basics/
675 Returns the maximum number of web pages that are kept in the memory cache.
683 Specifies the capacities for the memory cache for dead objects such as
687 dead objects should consume when the cache is under pressure.
690 consume when the cache is \bold not under pressure.
692 \a totalCapacity specifies the \e maximum number of bytes that the cache
695 The cache is enabled by default. Calling setObjectCacheCapacities(0, 0, 0)
696 will disable the cache. Calling it with one non-zero enables it again.
701 WebCore::cache()->setDisabled(disableCache);
703 WebCore::cache()->setCapacities(qMax(0, cacheMinDeadCapacity),
849 Sets the path for HTML5 offline web application cache storage to \a path.
851 An application cache acts like an HTTP cache in some sense. For documents
852 that use the application cache via JavaScript, the loader mechinery will
853 first ask the application cache for the contents, before hitting the
859 \a path must point to an existing directory where the cache is stored.
876 Returns the path of the HTML5 offline web application cache storage
893 Sets the value of the quota for the offline web application cache
906 Returns the value of the quota for the offline web application cache.