Searched refs:cached (Results 1 - 25 of 93) sorted by relevance

1234

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DInternalCache.java41 * with the headers from {@code network}. The cached response body is not
42 * updated. If the stored response has changed since {@code cached} was
45 void update(Response cached, Response network) throws IOException; argument
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dshaders_cache.c398 struct cached_shader *cached = local
401 cached->driver_shader);
413 struct cached_shader *cached; local
417 cached = CALLOC_STRUCT(cached_shader);
418 cached->driver_shader = create_shader(sc->pipe->pipe, key, &cached->state);
420 cso_hash_insert(sc->hash, key, cached);
422 return cached->driver_shader;
425 cached = (struct cached_shader *)cso_hash_iter_data(iter);
427 assert(cached
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngine.java26 * Responsible for starting loads and managing active and cached resources.
106 * <li>Check the memory cache and provide the cached resource if present</li>
131 * @param isMemoryCacheable True if the transcoded resource can be cached in memory.
133 * will be cached in the local disk cache.
151 EngineResource<?> cached = getFromCache(key);
152 if (cached != null) {
153 cached.acquire();
154 activeResources.put(key, new ResourceWeakReference(key, cached, resourceReferenceQueue));
155 cb.onResourceReady(cached);
206 Resource<?> cached
[all...]
/external/libunwind/doc/
H A Dunw_flush_cache.tex8 \begin{Name}{3}{unw\_flush\_cache}{David Mosberger-Tang}{Programming Library}{unw\_flush\_cache}unw\_flush\_cache -- flush cached info
19 The \Func{unw\_flush\_cache}() routine flushes all cached info as it
21 target address-space \Var{as}. In addition, all info cached for
24 list is not tied to a code-range and its cached value (if any) is
32 information cached on behalf of address space \Var{as} is flushed.
H A Dunw_set_caching_policy.tex39 changes in a way that could affect the validity of cached information.
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java159 * Get the cached class
243 * Whether the class is cached in this pooled
247 * @return the cached class
250 CtClass cached = (CtClass)classes.get(classname);
251 if (cached != null)
252 return cached;
/external/skia/tools/
H A Dgit-skia-verify54 git diff --cached --exit-code > /dev/null
/external/lldb/source/DataFormatters/
H A DLibCxxList.cpp235 auto cached = m_children.find(idx);
236 if (cached != m_children.end())
237 return cached->second;
H A DLibCxxMap.cpp310 auto cached = m_children.find(idx);
311 if (cached != m_children.end())
312 return cached->second;
H A DLibCxx.cpp443 auto cached = m_children.find(idx);
444 if (cached != m_children.end())
445 return cached->second;
/external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/internal/huc/
H A DCacheAdapter.java77 // that it's ok to keep using the cached data. Otherwise the server shouldn't declare it as
81 @Override public void update(Response cached, Response network) throws IOException { argument
86 // with the original cached response.
/external/valgrind/VEX/priv/
H A Dmain_main.c1264 static Int cached = 0; /* DO NOT MAKE NON-STATIC */ local
1265 if (UNLIKELY(cached == 0)) {
1268 X86ST(cached = evCheckSzB_X86()); break;
1270 AMD64ST(cached = evCheckSzB_AMD64()); break;
1272 ARMST(cached = evCheckSzB_ARM()); break;
1274 ARM64ST(cached = evCheckSzB_ARM64()); break;
1276 S390ST(cached = evCheckSzB_S390()); break;
1278 PPC32ST(cached = evCheckSzB_PPC()); break;
1280 PPC64ST(cached = evCheckSzB_PPC()); break;
1282 MIPS32ST(cached
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DCache.java85 * If it is only necessary to force a cached response to be validated by the server, use the more
99 * to be downloaded. To restrict a request to locally-cached resources, add the {@code
100 * only-if-cached} directive: <pre> {@code
110 * // The resource was cached! Show it.
112 * // The resource was not cached.
116 * To permit stale cached responses, use the {@code max-stale} directive with the maximum staleness
147 @Override public void update(Response cached, Response network) throws IOException {
148 Cache.this.update(cached, network);
247 private void update(Response cached, Response network) { argument
249 DiskLruCache.Snapshot snapshot = ((CacheResponseBody) cached
[all...]
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/
H A DURLEncodingTest.java150 public void update(Response cached, Response network) throws IOException {
/external/toybox/toys/other/
H A Dvmstat.c17 cached, kilobytes swapped in and out per second, file disk blocks input and
32 uint64_t memfree, buffers, cached, swapfree, swaptotal; member in struct:vmstat_proc
/external/robolectric/src/main/java/android/net/
H A DUri__FromAndroid.java59 cached result. As a result, we get thread safe caching with no concurrency
107 * Placeholder for strings which haven't been cached. This enables us
481 boolean cached = (scheme != NOT_CACHED);
482 return cached ? scheme : (scheme = parseScheme());
887 boolean cached = cachedString != NOT_CACHED;
888 if (cached) {
1021 boolean cached = (host != NOT_CACHED);
1022 return cached ? host
1216 boolean cached = (uriString != NOT_CACHED);
1217 return cached
[all...]
/external/icu/icu4c/source/i18n/
H A Dzonemeta.cpp243 // Checking the cached results
256 // Check if it was already cached
430 // Checking the cached results
437 // Check if it was already cached
438 UBool cached = FALSE; local
442 singleZone = cached = gSingleZoneCountries->contains((void*)region);
443 if (!cached) {
444 cached = gMultiZonesCountries->contains((void*)region);
449 if (!cached) {
/external/jetty/src/java/org/eclipse/jetty/security/authentication/
H A DFormAuthenticator.java194 Authentication cached=new SessionAuthentication(getAuthMethod(),user,password);
195 session.setAttribute(SessionAuthentication.__J_AUTHENTICATED, cached);
272 // Look for cached authentication
/external/bison/
H A Dconfigure2707 $as_echo_n "(cached) " >&6
2774 $as_echo_n "(cached) " >&6
2838 $as_echo_n "(cached) " >&6
2961 $as_echo_n "(cached) " >&6
3014 $as_echo_n "(cached) " >&6
3267 $as_echo_n "(cached) " >&6
3311 $as_echo_n "(cached) " >&6
3832 $as_echo_n "(cached) " >&6
4024 $as_echo_n "(cached) " >&6
4064 $as_echo_n "(cached) " >
[all...]
/external/javassist/src/main/javassist/compiler/
H A DMemberCodeGen.java457 MemberResolver.Method cached = expr.getMethod();
461 if (inStaticMethod || (cached != null && cached.isStatic()))
524 aload0pos, cached);
/external/wpa_supplicant_8/hostapd/src/pae/
H A Dieee802_1x_kay_i.h182 Boolean cached; member in struct:ieee802_1x_mka_participant
/external/wpa_supplicant_8/src/pae/
H A Dieee802_1x_kay_i.h182 Boolean cached; member in struct:ieee802_1x_mka_participant
/external/wpa_supplicant_8/wpa_supplicant/src/pae/
H A Dieee802_1x_kay_i.h182 Boolean cached; member in struct:ieee802_1x_mka_participant
/external/flac/libFLAC/
H A Dstream_decoder.c161 FLAC__bool cached; /* true if there is a byte in lookahead */ member in struct:FLAC__StreamDecoderPrivate
446 decoder->private_->cached = false;
1353 if(decoder->private_->cached) {
1355 decoder->private_->cached = false;
1390 decoder->private_->cached = true;
1988 if(decoder->private_->cached) {
1990 decoder->private_->cached = false;
2005 decoder->private_->cached = true;
2215 decoder->private_->cached = true;
2376 decoder->private_->cached
[all...]

Completed in 1271 milliseconds

1234