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

1 2 3

  /external/okhttp/src/main/java/com/squareup/okhttp/
ResponseSource.java 21 /** The response was returned from the local cache. */
22 CACHE,
25 * The response is available in the cache but must be validated with the
26 * network. The cache result will be used if it is still valid; otherwise
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
83 # cache-file.
87 open( CACHE, '>'.$cacheFile ) || die "can\'t write $cacheFile: $!\n";
96 for (@targets) { print CACHE "$_\n"; }
100 # Read the target-cache
101 open( CACHE, $cacheFile ) || die "can\'t read $cacheFile: $!\n";
103 while (<CACHE>) {
108 close( CACHE );
  /system/extras/tests/ext4/
android_emmc_perf_tests.sh 32 CACHE="/dev/block/platform/omap/omap_hsmmc.0/by-name/cache"
38 CACHE="/dev/block/platform/sdhci-tegra.3/by-name/cache"
53 CACHE="/dev/block/platform/s3c-sdhci.0/by-name/userdata"
59 CACHE="/dev/block/platform/sdhci-tegra.3/by-name/CAC"
65 CACHE="/dev/block/platform/dw_mmc.0/by-name/cache"
71 CACHE="dev/block/platform/msm_sdcc.1/by-name/cache"
    [all...]
  /external/chromium/chrome/browser/extensions/
image_loading_tracker.h 41 CACHE,
67 // if the image was found in the cache.
71 CacheParam cache);
102 // If LoadImage is told to cache the result an entry is added here. The
image_loading_tracker_unittest.cc 97 // Tests asking ImageLoadingTracker to cache pushes the result to the Extension.
98 TEST_F(ImageLoadingTrackerTest, Cache) {
111 ImageLoadingTracker::CACHE);
135 ImageLoadingTracker::CACHE);
157 ImageLoadingTracker::CACHE);
extension_icon_manager.cc 58 ImageLoadingTracker::CACHE);
extension_tab_helper.cc 145 ImageLoadingTracker::CACHE);
image_loading_tracker.cc 138 CacheParam cache) {
156 if (cache == CACHE) {
191 // we don't attempt to cache the image when the load completes.
  /external/chromium_org/content/public/test/
test_browser_thread_bundle.cc 90 cache_thread_.reset(new TestBrowserThread(BrowserThread::CACHE));
93 cache_thread_.reset(new TestBrowserThread(BrowserThread::CACHE,
  /external/jmonkeyengine/engine/src/android/com/jme3/util/
FastInteger.java 331 * maintains a cache of instances which may result in better performance.
342 return valueOfCache.CACHE [i+128];
349 * A cache of instances used by {@link Integer#valueOf(int)} and auto-boxing.
351 static final Integer[] CACHE = new Integer[256];
355 CACHE[i+128] = new Integer(i);
  /external/chromium_org/content/browser/appcache/
chrome_appcache_service.cc 48 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE).get());
  /external/kernel-headers/original/linux/
slab.h 18 #include <asm/cache.h> /* kmalloc_sizes.h needs L1_CACHE_BYTES */
30 #define SLAB_NO_GROW __GFP_NO_GROW /* don't grow a cache */
38 #define SLAB_RED_ZONE 0x00000400UL /* Red zone objs in a cache */
40 #define SLAB_HWCACHE_ALIGN 0x00002000UL /* align objs on a h/w cache lines */
115 * %__GFP_COLD - Request cache-cold pages instead of
116 * trying to return cache-warm pages.
138 #define CACHE(x) \
144 #undef CACHE
168 #define CACHE(x) \
174 #undef CACHE
    [all...]
  /external/chromium/chrome/browser/sidebar/
sidebar_container.cc 70 ImageLoadingTracker::CACHE);
  /external/qemu/android/avd/
info.h 38 * it may also contain other lines that cache stuff found in the
61 _AVD_IMG(CACHE,"cache.img","cache") \
84 /* use to ignore the cache partition */
86 /* use to wipe cache partition, ignored if NO_CACHE is set */
152 /* This function returns NULL if the cache image file cannot be found.
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageAttachmentTile.java 148 mActionHandler.startDownloadingAttachment(AttachmentDestination.CACHE,
208 AttachmentDestination.CACHE, AttachmentRendition.SIMPLE, 0, false);
MessageAttachmentBar.java 231 mActionHandler.startDownloadingAttachment(AttachmentDestination.CACHE);
259 mActionHandler.showAttachment(AttachmentDestination.CACHE);
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.cc 222 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE));
239 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE));
303 // TODO(creis): Determine correct cache size.
311 // Use a separate HTTP disk cache for isolated apps.
317 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE));
  /external/chromium_org/android_webview/browser/net/
aw_url_request_context_getter.cc 89 browser_context_->GetPath().Append(FILE_PATH_LITERAL("Cache")),
91 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE)));
  /external/chromium_org/content/public/browser/
browser_thread.h 53 // are used. You should never need to cache pointers to MessageLoops, since
77 // This is the thread to handle slow HTTP cache operations.
78 CACHE,
  /external/qemu/block/
vpc.c 33 //#define CACHE
125 #ifdef CACHE
218 #ifdef CACHE
273 #ifdef CACHE
606 #ifdef CACHE
  /external/chromium/chrome/browser/metrics/
thread_watcher.cc 252 if (BrowserThread::IsMessageLoopValid(BrowserThread::CACHE)) {
253 ThreadWatcher::StartWatching(BrowserThread::CACHE, "CACHE", kSleepTime,
  /external/grub/stage2/
fsys_reiserfs.c 293 /* The size of the node cache */
345 #define CACHE(i) (ROOT + ((i) << INFO->fullblocksize_shift))
346 #define LEAF CACHE (DISK_LEAF_NODE_LEVEL)
348 #define BLOCKHEAD(cache) ((struct block_head *) cache)
350 #define KEY(cache) ((struct key *) ((int) cache + BLKH_SIZE))
351 #define DC(cache) ((struct disk_child *) \
352 ((int) cache + BLKH_SIZE + KEY_SIZE * nr_item))
358 * The journal cache. For each transaction it contains the number o
694 char* cache = CACHE(depth); local
732 char *cache; local
822 char *cache; local
    [all...]
  /external/chromium_org/chrome/browser/profiles/
profile_impl_io_data.cc 130 // Keep track of profile path and cache sizes separately so we can use them
420 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE)
460 // media cache. It shares the same job factory as the main context.
535 // Use a separate HTTP disk cache for isolated apps.
545 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE)
581 // Transfer ownership of the cookies and cache to AppRequestContext.
616 // context before attaching a separate cache. It is important to return
633 // Use a separate HTTP disk cache for isolated apps.
640 BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE)
647 // Transfer ownership of the cache to MediaRequestContext
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 70 * <p>The request and response may be served by the HTTP response cache, by the
126 /** Null until a response is received from the network or the cache. */
129 // The cache response currently being validated on a conditional get. Null
199 this.responseSource = ResponseSource.CACHE;
241 if (responseSource == ResponseSource.CACHE) {
407 // Should we cache this response for this request?
413 // Offer this request to the cache.
437 // If the response body comes from the cache, close it.
  /external/sfntly/cpp/
CMakeLists.txt 4 set(CMAKE_CONFIGURATION_TYPES "Debug;Release" CACHE STRING "good configs" FORCE)

Completed in 450 milliseconds

1 2 3