Searched refs:cache (Results 301 - 325 of 1307) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/chrome/browser/extensions/updater/
H A Dextension_cache.cc18 // Implementation of ExtensionCache that doesn't cache anything.
19 // Real cache is used only on Chrome OS other OSes use this null implementation.
78 ExtensionCache* ExtensionCache::SetForTesting(ExtensionCache* cache) { argument
80 g_extension_cache_override = cache;
/external/chromium_org/net/disk_cache/blockfile/
H A Dstress_cache.cc6 // cache. The main application starts a copy of itself on a loop, checking the
10 // The child application has two threads: one to exercise the cache in an
14 // To test that the disk cache doesn't generate critical errors with regular
100 // This thread will loop forever, adding and removing entries from the cache.
101 // iteration is the current crash cycle, so the entries on the cache are marked
116 disk_cache::BackendImpl* cache =
120 cache->SetMaxSize(cache_size);
121 cache->SetFlags(disk_cache::kNoLoadProtection);
124 int rv = cache->Init(cb.callback());
127 printf("Unable to initialize cache
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_gs_state.c86 brw->state.dirty.cache |= CACHE_NEW_GS_UNIT;
96 .cache = CACHE_NEW_GS_PROG
/external/chromium_org/third_party/tcmalloc/vendor/
H A Dautogen.sh16 rm -rf autom4te.cache
53 rm -rf autom4te.cache
/external/compiler-rt/lib/lsan/
H A Dlsan_allocator.cc46 static THREADLOCAL AllocatorCache cache; member in namespace:__lsan
53 allocator.SwallowCache(&cache);
85 void *p = allocator.Allocate(&cache, size, alignment, false);
95 allocator.Deallocate(&cache, p);
103 allocator.Deallocate(&cache, p);
106 p = allocator.Reallocate(&cache, p, new_size, alignment);
112 *begin = (uptr)&cache;
113 *end = *begin + sizeof(cache);
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc90 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage()); local
91 allocated = allocator.Allocate(cache, size, alignment, false);
94 AllocatorCache *cache = &fallback_allocator_cache; local
95 allocated = allocator.Allocate(cache, size, alignment, false);
137 AllocatorCache *cache = GetAllocatorCache(&t->malloc_storage()); local
138 allocator.Deallocate(cache, p);
141 AllocatorCache *cache = &fallback_allocator_cache; local
142 allocator.Deallocate(cache, p);
/external/conscrypt/src/test/java/org/conscrypt/
H A DFileClientSessionCacheTest.java32 + "/" + FileClientSessionCacheTest.class.getName() + "/cache");
33 final SSLClientSessionCache cache
43 cache.putSessionData(new FakeSSLSession(id + "" + i), new byte[10]);
/external/dnsmasq/src/
H A DAndroid.mk6 LOCAL_SRC_FILES := bpf.c cache.c dbus.c dhcp.c dnsmasq.c forward.c helper.c lease.c log.c \
/external/google-tv-pairing-protocol/cpp/
H A Dautogen.sh16 rm -rf autom4te.cache
53 rm -rf autom4te.cache
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_gs_state.c86 brw->state.dirty.cache |= CACHE_NEW_GS_UNIT;
96 .cache = CACHE_NEW_GS_PROG
/external/oprofile/events/mips/5K/
H A Devents9 event:0x2 counters:0,1 um:zero minimum:500 name:LOADS_EXECED : Load/pref(x)/sync/cache-ops executed
21 event:0x9 counters:0 um:zero minimum:500 name:ICACHE_MISS : Instruction cache miss
31 event:0x6 counters:1 um:zero minimum:500 name:DCACHE_LINE_EVICTED : Data cache line evicted
34 event:0x9 counters:1 um:zero minimum:500 name:DCACHE_MISS : Data cache miss
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Ddownload_operation.cc45 // in the cache.
47 // path to the file in the cache.
48 FileError PrepareForDownloadFile(internal::FileCache* cache, argument
52 DCHECK(cache);
55 // Ensure enough space in the cache.
56 if (!cache->FreeDiskSpaceIfNeededFor(expected_file_size))
67 // If the resource is a regular file and its local cache is available,
69 // cache file.
70 // If the resource is a regular file but its local cache is NOT available,
75 internal::FileCache* cache,
73 CheckPreConditionForEnsureFileDownloaded( internal::ResourceMetadata* metadata, internal::FileCache* cache, const base::FilePath& temporary_file_directory, const std::string& local_id, ResourceEntry* entry, base::FilePath* cache_file_path, base::FilePath* temp_download_file_path) argument
172 internal::FileCache* cache; member in struct:drive::file_system::__anon3073::CheckPreconditionForEnsureFileDownloadedParams
214 UpdateLocalStateForDownloadFile( internal::ResourceMetadata* metadata, internal::FileCache* cache, const ResourceEntry& entry_before_download, google_apis::GDataErrorCode gdata_error, const base::FilePath& downloaded_file_path, ResourceEntry* entry_after_update, base::FilePath* cache_file_path) argument
338 DownloadOperation( base::SequencedTaskRunner* blocking_task_runner, OperationDelegate* delegate, JobScheduler* scheduler, internal::ResourceMetadata* metadata, internal::FileCache* cache, const base::FilePath& temporary_file_directory) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dfont_family_cache.cc35 FontFamilyCache* cache = local
37 if (!cache) {
38 cache = new FontFamilyCache(profile);
39 // The profile takes ownership of |cache|.
40 profile->SetUserData(&kFontFamilyCacheKey, cache);
43 cache->FillFontFamilyMap(map_name, map);
87 // There are ~1000 entries in the cache. Avoid unnecessary object construction,
121 // Clear the cache and the observer.
/external/chromium_org/third_party/freetype/include/freetype/
H A Dftcache.h39 * How to cache face, size, and glyph data with FreeType~2.
42 * This section describes the FreeType~2 cache sub-system, which is used
49 * The cache is highly portable and thus doesn't know anything about the
54 * @FTC_FaceID values, provided to the cache by the client. Note that
55 * the cache only stores and compares these values, and doesn't try to
58 * Second, the cache calls, only when needed, a client-provided function
60 * then completely managed by the cache, including its termination
71 * Note that for the cache to work correctly, the face ID values must be
77 * the cache get rid of any references to the old @FTC_FaceID it may
81 * To use the cache, star
[all...]
/external/freetype/include/
H A Dftcache.h39 * How to cache face, size, and glyph data with FreeType~2.
42 * This section describes the FreeType~2 cache sub-system, which is used
49 * The cache is highly portable and thus doesn't know anything about the
54 * @FTC_FaceID values, provided to the cache by the client. Note that
55 * the cache only stores and compares these values, and doesn't try to
58 * Second, the cache calls, only when needed, a client-provided function
60 * then completely managed by the cache, including its termination
71 * Note that for the cache to work correctly, the face ID values must be
77 * the cache get rid of any references to the old @FTC_FaceID it may
81 * To use the cache, star
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DMediaDataBox.java64 private Map<Long, Reference<ByteBuffer>> cache = new HashMap<Long, Reference<ByteBuffer>>(); field in class:MediaDataBox
69 * not evicted from the cache.
148 cache.put(0l, new SoftReference<ByteBuffer>(content));
154 for (Long chacheEntryOffset : cache.keySet()) {
156 ByteBuffer cacheEntry = cache.get(chacheEntryOffset).get();
177 cache.put(offset, new SoftReference<ByteBuffer>(cacheEntry));
/external/okhttp/website/static/
H A Dhtml5shiv.min.js4 (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dftcache.h39 * How to cache face, size, and glyph data with FreeType~2.
42 * This section describes the FreeType~2 cache sub-system, which is used
49 * The cache is highly portable and thus doesn't know anything about the
54 * @FTC_FaceID values, provided to the cache by the client. Note that
55 * the cache only stores and compares these values, and doesn't try to
58 * Second, the cache calls, only when needed, a client-provided function
60 * then completely managed by the cache, including its termination
71 * Note that for the cache to work correctly, the face ID values must be
77 * the cache get rid of any references to the old @FTC_FaceID it may
81 * To use the cache, star
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dftcache.h39 * How to cache face, size, and glyph data with FreeType~2.
42 * This section describes the FreeType~2 cache sub-system, which is used
49 * The cache is highly portable and thus doesn't know anything about the
54 * @FTC_FaceID values, provided to the cache by the client. Note that
55 * the cache only stores and compares these values, and doesn't try to
58 * Second, the cache calls, only when needed, a client-provided function
60 * then completely managed by the cache, including its termination
71 * Note that for the cache to work correctly, the face ID values must be
77 * the cache get rid of any references to the old @FTC_FaceID it may
81 * To use the cache, star
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfeatures_bundle.py345 return any(cache.get('unresolved')
346 for cache in features_map.itervalues())
352 for cache_type, cache in features_map.iteritems():
353 if 'unresolved' not in cache:
356 for name, values in cache['unresolved'].iteritems():
360 cache['extra'].get(name, ()),
371 cache['resolved'][name] = feature
374 del cache['unresolved'][key]
376 for cache_type, cache in features_map.iteritems():
377 self._object_store.Set(cache_type, cache['resolve
[all...]
/external/chromium_org/third_party/cython/src/Cython/
H A DUtils.py11 cache = {}
14 res = cache.get(args, uncomputed)
16 res = cache[args] = f(*args)
23 cache = getattr(self, cache_name, None)
24 if cache is None:
25 cache = {}
26 setattr(self, cache_name, cache)
27 if args in cache:
28 return cache[args]
29 res = cache[arg
[all...]
/external/e2fsprogs/misc/
H A Dblkid.c57 "\t-g\tgarbage collect the blkid cache\n"
62 "\t-w\twrite cache to different file (/dev/null = no write)\n"
269 blkid_cache cache = NULL; local
361 if (blkid_get_cache(&cache, read) < 0)
366 blkid_gc_cache(cache);
380 /* Load any additional devices not in the cache */
382 blkid_get_dev(cache, devices[i], BLKID_DEV_NORMAL);
384 if ((dev = blkid_find_dev_with_tag(cache, search_type,
394 blkid_probe_all(cache);
396 iter = blkid_dev_iterate_begin(cache);
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpResponseCacheTest.java100 private HttpResponseCache cache; field in class:HttpResponseCacheTest
106 cache = new HttpResponseCache(cacheDir, Integer.MAX_VALUE);
107 ResponseCache.setDefault(cache);
116 cache.delete();
126 client.setResponseCache(cache);
127 assertSame(cache, client.getOkResponseCache());
132 ResponseCache.setDefault(cache);
156 assertCached(false, 206); // we don't cache partial responses
223 Response cached = cache.get(new Request.Builder().url(url).build());
234 * Test that we can interrogate the response when the cache i
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_storage_impl.cc66 NOTREACHED() << "A existing group without a cache is unexpected";
288 // If there is no sql database, ensure there is no disk cache either.
402 scoped_refptr<AppCache>* cache, scoped_refptr<AppCacheGroup>* group);
426 scoped_refptr<AppCache>* cache, scoped_refptr<AppCacheGroup>* group) {
427 DCHECK(storage_ && cache && group);
429 (*cache) = storage_->working_set_.GetCache(cache_record_.cache_id);
430 if (cache->get()) {
431 (*group) = cache->get()->owning_group();
436 if (!cache->get()->GetEntry(group_record_.manifest_url)) {
445 (*cache)
425 CreateCacheAndGroupFromRecords( scoped_refptr<AppCache>* cache, scoped_refptr<AppCacheGroup>* group) argument
527 scoped_refptr<AppCache> cache; local
570 scoped_refptr<AppCache> cache; local
696 AppCacheDatabase::CacheRecord cache; local
895 AppCache* cache = group->newest_complete_cache(); local
1398 AppCache* cache = working_set_.GetCache(id); local
1542 AppCache* cache = group->newest_complete_cache(); local
1558 DeliverShortCircuitedFindMainResponse( const GURL& url, const AppCacheEntry& found_entry, scoped_refptr<AppCacheGroup> group, scoped_refptr<AppCache> cache, scoped_refptr<DelegateReference> delegate_ref) argument
1587 FindResponseForSubRequest( AppCache* cache, const GURL& url, AppCacheEntry* found_entry, AppCacheEntry* found_fallback_entry, bool* found_network_namespace) argument
1613 AppCache* cache = working_set_.GetCache(cache_id); local
[all...]
/external/smack/src/org/xbill/DNS/
H A DLookup.java36 private Cache cache; field in class:Lookup
121 * @param dclass The class whose cache is being retrieved.
122 * @return The default cache for the specified class.
138 * @param cache The default cache for the specified class.
139 * @param dclass The class whose cache is being set.
142 setDefaultCache(Cache cache, int dclass) { argument
144 defaultCaches.put(Mnemonic.toInteger(dclass), cache);
200 cache.clearCache();
205 * and class. The lookup will use the default cache, resolve
348 setCache(Cache cache) argument
[all...]

Completed in 990 milliseconds

<<11121314151617181920>>