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

1 2

  /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
  /libcore/luni/src/main/java/java/net/
ResponseSource.java 27 * Return the response from the cache immediately.
29 CACHE,
32 * Make a conditional request to the host, returning the cache response if
33 * the cache is valid and the network response 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 20 CACHE="/dev/block/platform/omap/omap_hsmmc.0/by-name/cache"
26 CACHE="/dev/block/platform/sdhci-tegra.3/by-name/cache"
41 CACHE="/dev/block/platform/s3c-sdhci.0/by-name/userdata"
47 CACHE="/dev/block/platform/sdhci-tegra.3/by-name/CAC"
53 CACHE="/dev/block/platform/dw_mmc.0/by-name/cache"
81 adb shell umount /cache >/dev/null 2>&1
98 adb shell dd if="$CACHE" of=/dev/null bs=1048576 count=20
    [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/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/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.
  /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/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/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpEngine.java 68 * <p>The request and response may be served by the HTTP response cache, by the
120 /** Null until a response is received from the network or the cache. */
123 // The cache response currently being validated on a conditional get. Null
191 this.responseSource = ResponseSource.CACHE;
234 if (responseSource == ResponseSource.CACHE) {
393 // Should we cache this response for this request?
398 // Offer this request to the cache.
422 // If the response body comes from the cache, close it.
ResponseHeaders.java 70 * In the response, this field's name "no-cache" is misleading. It doesn't
89 * this directive is not honored by this cache.
96 * wants to make a request if it can be fully satisfied by the cache.
119 if ("no-cache".equalsIgnoreCase(directive)) {
138 if ("Cache-Control".equalsIgnoreCase(fieldName)) {
149 if ("no-cache".equalsIgnoreCase(value)) {
409 return ResponseSource.CACHE;
435 // cached response, we may return the cache's response. Like Chrome (but
  /libcore/luni/src/main/java/libcore/net/http/
HttpEngine.java 63 * <p>The request and response may be served by the HTTP response cache, by the
158 /** Null until a response is received from the network or the cache */
162 * The cache response currently being validated on a conditional get. Null
233 this.responseSource = ResponseSource.CACHE;
276 if (responseSource == ResponseSource.CACHE) {
440 // Never cache responses to proxy CONNECT requests.
450 // Should we cache this response for this request?
455 // Offer this request to the cache.
487 // If the response body comes from the cache, close it.
672 * neither needed nor known when querying the response cache
    [all...]
ResponseHeaders.java 70 * In the response, this field's name "no-cache" is misleading. It doesn't
89 * this directive is not honored by this cache.
96 * wants to make a request if it can be fully satisfied by the cache.
119 if (directive.equalsIgnoreCase("no-cache")) {
138 if ("Cache-Control".equalsIgnoreCase(fieldName)) {
149 if (value.equalsIgnoreCase("no-cache")) {
424 return ResponseSource.CACHE;
453 * cached response, we may return the cache's response. Like Chrome (but
  /external/chromium/chrome/browser/
background_application_list_model.cc 136 ImageLoadingTracker::CACHE);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
AttachmentUtilities.java 375 * Save the attachment to its final resting place (cache or sd card)
385 if (attachment.mUiDestination == UIProvider.AttachmentDestination.CACHE) {
  /external/bison/djgpp/
config.bat 51 Rem Special arguments are: NLS, XSRC, CACHE, STATIC_LIBS, LIBICONV_PREFIX, LIBINTL_PREFIX and DEPS.
67 if "%1" == "cache" goto NextArgument
68 if "%1" == "CACHE" goto NextArgument
69 if "%1" == "no-cache" goto NoCaching
70 if "%1" == "no-CACHE" goto NoCaching
71 if "%1" == "NO-CACHE" goto NoCaching
74 if "%1" == "no-cache" set CACHING=disabled
75 if "%1" == "no-CACHE" set CACHING=disabled
76 if "%1" == "NO-CACHE" set CACHING=disabled
146 if "%CACHING%" == "enabled" echo --cache-file=%XSRC%/djgpp/config.cache >> args
    [all...]
  /packages/apps/Email/src/com/android/mail/providers/
UIProvider.java     [all...]

Completed in 573 milliseconds

1 2