HomeSort by relevance Sort by last modified time
    Searched refs:Cache (Results 1 - 25 of 38) sorted by null

1 2

  /external/webkit/WebKit/chromium/src/
WebCache.cpp 34 // Instead of providing accessors, we make all members of Cache public.
35 // This will make it easier to track WebCore changes to the Cache class.
36 // FIXME: We should introduce public getters on the Cache class.
38 #include "Cache.h"
45 // A helper method for coverting a Cache::TypeStatistic to a
47 static void ToResourceTypeStat(const Cache::TypeStatistic& from,
59 Cache* cache = WebCore::cache(); local
60 if (cache)
68 Cache* cache = WebCore::cache(); local
86 Cache* cache = WebCore::cache(); local
99 Cache* cache = WebCore::cache(); local
    [all...]
  /external/chromium/net/base/
x509_certificate.cc 48 // A thread-safe cache for X509Certificate objects.
50 // The cache does not hold a reference to the certificate objects. The objects
51 // must |Remove| themselves from the cache upon destruction (or else the cache
54 // Get the singleton object for the cache.
56 X509Certificate::Cache* X509Certificate::Cache::GetInstance() {
57 return Singleton<X509Certificate::Cache>::get();
60 // Insert |cert| into the cache. The cache does NOT AddRef |cert|. The cach
142 X509Certificate::Cache* cache = X509Certificate::Cache::GetInstance(); local
    [all...]
x509_certificate.h 151 // certificate handles for the same certificate, our certificate cache
152 // prefers the handle from the network because our HTTP cache isn't
248 FRIEND_TEST(X509CertificateTest, Cache);
250 // A cache of X509Certificate objects.
251 class Cache {
253 static Cache* GetInstance();
262 // Obtain an instance of X509Certificate::Cache via GetInstance().
263 Cache() { }
264 friend struct DefaultSingletonTraits<Cache>;
270 // The certificate cache. You must acquire |lock_| before using |cache_|
    [all...]
x509_certificate_mac.cc 67 // The trusted cache may be accessed from multiple threads.
379 // Store the certificate in the cache in case we need it later.
380 X509Certificate::Cache::GetInstance()->Insert(this);
x509_certificate_nss.cc 476 // Store the certificate in the cache in case we need it later.
477 X509Certificate::Cache::GetInstance()->Insert(this);
x509_certificate_unittest.cc 297 // Tests X509Certificate::Cache via X509Certificate::CreateFromHandle. We
304 TEST(X509CertificateTest, Cache) {
308 // certificate cache.
x509_certificate_win.cc 464 // Store the certificate in the cache in case we need it later.
465 X509Certificate::Cache::GetInstance()->Insert(this);
  /external/webkit/WebCore/loader/
Cache.cpp 24 #include "Cache.h"
51 Cache* cache() function in namespace:WebCore
53 static Cache* staticCache = new Cache;
57 Cache::Cache()
96 CachedResource* Cache::requestResource(DocLoader* docLoader, CachedResource::Type type, const KURL& url, const String& charset, bool requestIsPreload)
99 // Would it be better to just go on with the cache code and let it fail later?
121 // Pretend the resource is in the cache, to prevent it from being deleted during the load() call
    [all...]
CachedFont.h 41 class Cache;
85 friend class Cache;
Cache.h 22 pages from the web. It has a memory cache for these objects.
45 // This cache holds subresources used by Web pages: images, scripts, stylesheets, etc.
47 // The cache keeps a flexible but bounded window of dead resources that grows/shrinks
48 // depending on the live resource load. Here's an example of cache growth over time,
53 // --|----------| Cache boundary: | (objects outside this mark have been evicted)
58 class Cache : public Noncopyable {
60 friend Cache* cache();
97 // Request resources from the cache. A load will be initiated and a cache object created if the object is no
    [all...]
CachedImage.h 36 class Cache;
39 friend class Cache;
DocLoader.h 23 pages from the web. It has a memory cache for these objects.
52 friend class Cache;
119 Cache* m_cache;
CachedResource.h 39 class Cache;
47 // A resource that is held in the cache. Classes who want to use this object should derive
51 friend class Cache;
70 Unknown, // let cache decide what to do with it
126 // Updates the expire date on the cache entry file
129 // Called by the cache if the object has been removed from the cache
132 // The resource can be brought back to cache after successful revalidation.
211 // These are called by the friendly Cache only
224 double m_lastDecodedAccessTime; // Used as a "thrash guard" in the cache
    [all...]
  /external/openssl/crypto/des/times/
aix.cc 6 Data/Instr Cache : 16 K
7 L2 Cache : 256 K
  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 118 Conversation conv = Cache.get(threadId);
124 Cache.put(conv);
126 LogTag.error("Tried to add duplicate Conversation to Cache");
141 Conversation conv = Cache.get(recipients);
155 Cache.put(conv);
157 LogTag.error("Tried to add duplicate Conversation to Cache");
220 * were not in cache.
223 // First look in the cache for the Conversation and return that one. That way, all the
228 Conversation conv = Cache.get(threadId);
236 Cache.put(conv)
    [all...]
  /external/webkit/WebCore/bindings/v8/
ScriptCachedFrameData.h 58 // On Android we do use WebKit's page cache. For now we don't support isolated worlds
88 #error You need to consider whether you want Page Cache and either add a stub or a real implementation.
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 36 * objects they are returned from the cache, if not - newly generated
37 * objects can be saved in the cache.<br>
45 * determine whether object to be generated is in the cache or not.
65 * If it is so - the cached object is returned from the cache,
66 * if not - new object should be generated and saved in the cache.<br>
71 public class Cache {
92 // size of the cache
103 // to the object cached at cache[N]
110 private final Object[] cache; field in class:Cache
112 // This array is used to speed up the process of the search in the cache
    [all...]
X509CertFactoryImpl.java 53 * @see Cache
59 // certificate cache
60 private static final Cache CERT_CACHE = new Cache(CERT_CACHE_SEED_LENGTH);
63 // crl cache
64 private static final Cache CRL_CACHE = new Cache(CRL_CACHE_SEED_LENGTH);
81 * the cache. If the cache contains the certificate with requested encoded
595 * Resulting object is retrieved from the cache
    [all...]
  /external/freetype/include/freetype/
ftmoderr.h 108 FT_MODERRDEF( Cache, 0x300, "cache module" )
  /external/webkit/WebKit/mac/Misc/
WebCache.mm 33 #import <WebCore/Cache.h>
45 WebCore::Cache::Statistics s = WebCore::cache()->getStatistics();
113 // Toggling the cache model like this forces the cache to evict all its in-memory resources.
119 // Empty the application cache.
123 // Empty the Cross-Origin Preflight cache
129 WebCore::cache()->setDisabled(disabled);
134 return WebCore::cache()->disabled();
  /build/tools/droiddoc/src/
Converter.java 239 private static Cache mClasses = new Cache()
371 private static Cache mMethods = new Cache()
477 private static Cache mFields = new Cache()
502 private static Cache mPackagees = new Cache()
517 private static Cache mTypes = new Cache()
    [all...]
  /external/webkit/WebKit/win/
WebCache.cpp 34 #include <WebCore/Cache.h>
103 WebCore::Cache::Statistics stat = WebCore::cache()->getStatistics();
207 if (WebCore::cache()->disabled())
209 WebCore::cache()->setDisabled(true);
210 WebCore::cache()->setDisabled(false);
212 // Empty the application cache.
215 // Empty the Cross-Origin Preflight cache
224 WebCore::cache()->setDisabled(!!disabled);
233 *disabled = WebCore::cache()->disabled()
    [all...]
  /bionic/libc/netbsd/resolv/
res_cache.c 35 /* This code implements a small and *simple* DNS resolver cache.
37 * It is only used to cache DNS answers for a maximum of CONFIG_SECONDS seconds
38 * in order to reduce DNS traffic. It is not supposed to be a full DNS cache,
52 * CONFIG_SECONDS will be kept in the cache anyway.
55 * (and should be solved by the later full DNS cache process).
61 * that a full DNS cache is expected to do.
65 * - the client calls _resolv_cache_get() to obtain a handle to the cache.
66 * this will initialize the cache on first usage. the result can be NULL
67 * if the cache is disabled.
76 * answer to the cache
1149 struct resolv_cache* cache; local
    [all...]
  /external/webkit/SunSpider/
sunspider 60 --shark-cache Like --shark, but performs a L2 cache-miss sample instead of time sample
73 'shark-cache' => \$runSharkCache,
104 if ($profileName =~ /L2 Cache/) {
106 print "Using Shark L2 Cache Miss Profile: " . $profile . "\n";
110 die "Failed to find L2 Cache Miss Profile for --shark-cache\n" unless ($sharkCacheProfileIndex);
  /external/webkit/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js     [all...]

Completed in 567 milliseconds

1 2