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

1 2 3 4 5 67 8 91011>>

  /external/opencore/nodes/pvdownloadmanagernode/src/
pvmf_memorybufferdatastream_factory.cpp 47 // store the cache pointer
143 // store the cache pointer
218 // save the pointer to the cache
460 // The perm cache and the temp cache are treated as separate entities
461 // Always look in the perm cache first, if not in perm cache, then look in the temp cache
462 // However, if only a part of the data is in one cache, we do not expect to look into the other cache for the res
    [all...]
  /external/sonivox/docs/
EASLibrary3_5.odt 
EAS_API_Reference.odt 
JET_Programming_Manual.odt 
  /external/webkit/LayoutTests/http/tests/appcache/resources/
non-html.manifest 0 CACHE MANIFEST
offline-access.manifest 0 CACHE MANIFEST
online-whitelist.manifest 0 CACHE MANIFEST
reload-iframe.html 8 req.open("GET", "resources/not-in-cache.txt", false);
access-via-redirect.html 3 <p>This tests that the start of redirect chain doesn't get into an application cache if the end of the chain has a manifest.</p>
27 document.getElementById('result').innerHTML = "FAILURE: Start of redirect chain is in cache."
32 document.getElementById('result').innerHTML = "FAILURE: Could not load main resource from cache."
  /external/webkit/WebKit/chromium/public/
WebFontCache.h 38 // An interface to query and configure WebKit's font cache.
41 // Returns the number of items in the font data cache.
44 // Returns the number of inactive items in the font data cache.
47 // Clears the cache.
  /external/zlib/contrib/asm586/
README.586 9 program's bottleneck seems to be mostly L1-cache contention, for which
13 However, when used at level 9 compression, the cache contention can
16 files). Even here, though, cache contention can still be the limiting
19 with MMX, which suffers much less from L1-cache contention, but I have
  /packages/inputmethods/PinyinIME/jni/include/
lpicache.h 26 // Used to cache LmaPsbItem list for half spelling ids.
42 // If splid is a full spelling id, it returns false, because we only cache
47 // the cache buffer. the list will be truncated, and function returns the
48 // maximum length of the cache buffer.
  /sdk/eclipse/sites/external/
index.html 8 var stylesheet, xmlFile, cache, doc;
32 cache = new ActiveXObject("msxml2.XSLTemplate.3.0");
33 cache.stylesheet = stylesheet;
39 var processor = cache.createProcessor();
  /sdk/eclipse/sites/internal/
index.html 8 var stylesheet, xmlFile, cache, doc;
32 cache = new ActiveXObject("msxml2.XSLTemplate.3.0");
33 cache.stylesheet = stylesheet;
39 var processor = cache.createProcessor();
  /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/wpa_supplicant/
pmksa_cache.c 2 * WPA Supplicant - RSN PMKSA cache
32 struct rsn_pmksa_cache_entry *pmksa; /* PMKSA cache */
33 int pmksa_count; /* number of entries in PMKSA cache */
97 wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
143 * pmksa_cache_add - Add a PMKSA cache entry
144 * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
150 * Returns: Pointer to the added PMKSA cache entry or %NULL on error
153 * cache. If an old entry is already in the cache for the same Authenticator,
202 * cache entry. This happens when the PMKS
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
pmksa_cache.c 2 * WPA Supplicant - RSN PMKSA cache
31 struct rsn_pmksa_cache_entry *pmksa; /* PMKSA cache */
32 int pmksa_count; /* number of entries in PMKSA cache */
102 wpa_printf(MSG_DEBUG, "RSN: expired PMKSA cache entry for "
148 * pmksa_cache_add - Add a PMKSA cache entry
149 * @pmksa: Pointer to PMKSA cache data from pmksa_cache_init()
156 * Returns: Pointer to the added PMKSA cache entry or %NULL on error
159 * cache. If an old entry is already in the cache for the same Authenticator,
209 * cache entry. This happens when the PMKS
    [all...]
  /external/e2fsprogs/lib/blkid/
blkidP.h 38 struct list_head bid_devs; /* All devices in the cache */
40 blkid_cache bid_cache; /* Dev belongs to this cache */
73 * from the cache. This is to avoid re-probing all devices which were
74 * just probed by another program that does not share the cache.
79 * Time in seconds an entry remains verified in the in-memory cache
81 * keep a cache in memory and continue to use it for a long time).
85 /* This describes an entire blkid cache file and probed devices.
97 unsigned int bic_flags; /* Status flags of the cache */
98 char *bic_filename; /* filename of cache */
102 #define BLKID_BIC_FL_CHANGED 0x0004 /* Cache has changed from disk *
    [all...]
dev.c 101 * This series of functions iterate over all devices in a blkid cache
107 blkid_cache cache; member in struct:blkid_struct_dev_iterate
113 extern blkid_dev_iterate blkid_dev_iterate_begin(blkid_cache cache)
120 iter->cache = cache;
121 iter->p = cache->bic_devs.next;
167 while (iter->p != &iter->cache->bic_devs) {
206 blkid_cache cache = NULL; local
238 if ((ret = blkid_get_cache(&cache, file)) != 0) {
239 fprintf(stderr, "%s: error creating cache (%d)\n"
    [all...]
tag.c 102 * Find the desired tag type in the cache.
105 static blkid_tag blkid_find_head_cache(blkid_cache cache, const char *type)
110 if (!cache || !type)
113 list_for_each(p, &cache->bic_tags) {
117 printf(" found cache tag head %s\n", type));
186 printf(" creating new cache tag head %s\n", name));
330 extern blkid_dev blkid_find_dev_with_tag(blkid_cache cache,
340 if (!cache || !type || !value)
343 blkid_read_cache(cache);
345 DBG(DEBUG_TAG, printf("looking for %s=%s in cache\n", type, value))
405 blkid_cache cache = NULL; local
    [all...]
  /dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/
FileClientSessionCache.java 36 * File-based cache implementation. Only one process should access the
50 * This cache creates one file per SSL session using "host.port" for
52 * in the cache (see {@link #putSessionData}). Files are read on
53 * cache hits, but not on cache misses.
81 * Constructs a new cache backed by the given directory.
94 // cache misses in getSessionData().
132 * Note: This method is only called when the in-memory cache
134 * rendundant for this cache to store data in memory.
196 // Used to keep track of whether or not we're expanding the cache
330 FileClientSessionCache.Impl cache = caches.get(directory); local
    [all...]
  /external/skia/src/core/
SkGlyphCache.h 70 been seen, use the existing cache entry. If not, ask the scalercontext
95 /* AuxProc/Data allow a client to associate data with this cache entry.
112 /** Call proc on all cache entries, stopping early if proc returns true.
118 /** Find a matching cache entry, and call proc() with it. If none is found
119 create a new one. If the proc() returns true, detach the cache and
127 add it back into the global cache list (after which the caller should
132 /** Detach a strike from the global cache matching the specified descriptor.
134 when finished, be reattached to the global cache with AttachCache().
145 /** Return the approximate number of bytes used by the font cache
150 enough bytes such that the font cache is not using more than th
    [all...]
  /bootable/recovery/
recovery.c 48 static const char *COMMAND_FILE = "CACHE:recovery/command";
49 static const char *INTENT_FILE = "CACHE:recovery/intent";
50 static const char *LOG_FILE = "CACHE:recovery/log";
55 * The recovery tool communicates with the main system through /cache files.
56 * /cache/recovery/command - INPUT - command line for tool, one arg per line
57 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
58 * /cache/recovery/intent - OUTPUT - intent that was passed in
63 * --wipe_data - erase user data (and cache), then reboot
64 * --wipe_cache - wipe cache (but not user data), then reboot
67 * After completing, we remove /cache/recovery/command and reboot
    [all...]
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
SSLSessionContext.java 46 * Returns the size of the session cache for this session context.
48 * @return the size of the session cache for this session context, or
62 * Sets the size of the session cache for this session context.
65 * the size of the session cache, or {@code zero} for unlimited
66 * cache size.
  /external/iproute2/lib/
rt_names.c 152 static char *cache = NULL; local
157 if (cache && strcmp(cache, arg) == 0) {
168 cache = rtnl_rtprot_tab[i];
219 static char *cache = NULL; local
224 if (cache && strcmp(cache, arg) == 0) {
235 cache = rtnl_rtscope_tab[i];
283 static char *cache = NULL; local
288 if (cache && strcmp(cache, arg) == 0)
354 static char *cache = NULL; local
420 static char *cache = NULL; local
    [all...]

Completed in 239 milliseconds

1 2 3 4 5 67 8 91011>>