HomeSort by relevance Sort by last modified time
    Searched defs:Cache (Results 1 - 11 of 11) sorted by null

  /external/webkit/WebKitTools/Scripts/webkitpy/
autoinstall.py 65 - cache files now use filename part from URL.
182 class Cache(object):
186 # Default to putting the cache directory in the same directory
189 directory = os.path.join(containing_directory, "autoinstall.cache.d");
198 _logger.info("Using cache directory '%s'." % self.directory)
201 _logger.debug("Creating cache directory '%s'." % self.directory)
209 _logger.info("Getting '%s' from cache." % url)
212 # so that source url is significant in determining cache hits
222 _logger.debug("... not in cache. Caching in '%s'." % filename)
264 self.__cache = Cache()
268 cache = property(_get_cache, _set_cache) variable in class:Importer
    [all...]
  /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...]
  /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/chromium/net/base/
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...]
  /external/webkit/WebCore/loader/
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...]
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...]
  /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...]
  /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/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js     [all...]
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 339 milliseconds