HomeSort by relevance Sort by last modified time
    Searched refs:cacheKey (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /prebuilts/go/linux-x86/src/net/http/
export_test.go 138 func (t *Transport) IdleConnCountForTesting(cacheKey string) int {
142 if k.String() == cacheKey {
171 cacheKey: connectMethodKey{"", "http", "example.com"},
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
Engine.java 254 public void onResourceReleased(Key cacheKey, EngineResource resource) {
255 activeResources.remove(cacheKey);
257 cache.put(cacheKey, resource);
  /external/testng/src/main/java/org/testng/internal/
MethodGroupsHelper.java 289 Pair<String, String> cacheKey = Pair.create(pattern.pattern(), group);
290 Boolean match = MATCH_CACHE.get(cacheKey);
293 MATCH_CACHE.put(cacheKey, match);
MethodHelper.java 90 Pair<String, String> cacheKey = Pair.create(regexp, methodName);
91 Boolean match = MATCH_CACHE.get(cacheKey);
94 MATCH_CACHE.put(cacheKey, match);
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 580 String cacheKey;
584 cacheKey = bytesToHexString(mDigest.digest());
586 cacheKey = String.valueOf(key.hashCode());
588 return cacheKey;
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageCache.java 580 String cacheKey;
584 cacheKey = bytesToHexString(mDigest.digest());
586 cacheKey = String.valueOf(key.hashCode());
588 return cacheKey;
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageCache.java 580 String cacheKey;
584 cacheKey = bytesToHexString(mDigest.digest());
586 cacheKey = String.valueOf(key.hashCode());
588 return cacheKey;
  /external/vogar/src/vogar/android/
AndroidSdk.java 292 String cacheKey = null;
295 cacheKey = dexCache.makeKey(classpathSubKey, multidexSubKey);
296 boolean cacheHit = dexCache.getFromCache(output, cacheKey);
347 dexCache.insert(cacheKey, output);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
ResourceBundleWrapper.java 150 String cacheKey = disableFallback ? name : name + '#' + defaultID;
151 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ResourceBundleWrapper.java 148 String cacheKey = disableFallback ? name : name + '#' + defaultID;
149 return BUNDLE_CACHE.getInstance(cacheKey, new Loader() {
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java 408 boolean isFramework, String cacheKey, BridgeContext context) throws IOException {
410 NinePatchChunk chunk = Bridge.getCached9Patch(cacheKey,
412 Bitmap bitmap = Bridge.getCachedBitmap(cacheKey,
424 Bridge.setCached9Patch(cacheKey, chunk,
433 Bridge.setCachedBitmap(cacheKey, bitmap,
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.10/
library-1.0.10.jar 
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardStatusView.java 382 static String cacheKey;
390 if (key.equals(cacheKey)) return;
405 cacheKey = key;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 478 final int cacheKey = config.getCacheKey();
479 ConversationItemViewCoordinates coordinates = cache.getCoordinates(cacheKey);
485 cache.put(cacheKey, coordinates);
  /frameworks/base/services/core/java/com/android/server/notification/
ValidateNotificationPeople.java 251 final String cacheKey = getCacheKey(context.getUserId(), handle);
252 LookupResult lookupResult = mPeopleCache.get(cacheKey);
508 final String cacheKey = getCacheKey(mContext.getUserId(), handle);
509 mPeopleCache.put(cacheKey, lookupResult);
  /external/icu/icu4c/source/i18n/
tzgnames.cpp 816 PartialLocationKey* cacheKey = (PartialLocationKey *)uprv_malloc(sizeof(PartialLocationKey));
817 if (cacheKey != NULL) {
818 cacheKey->tzID = key.tzID;
819 cacheKey->mzID = key.mzID;
820 cacheKey->isLong = key.isLong;
821 uhash_put(fPartialLocationNamesMap, (void *)cacheKey, (void *)uplname, &status);
823 uprv_free(cacheKey);
    [all...]
  /frameworks/base/core/java/android/os/
ZygoteProcess.java 602 String cacheKey, String abi) throws ZygoteStartFailedEx,
621 state.writer.write(cacheKey);
  /prebuilts/tools/common/m2/repository/com/mcxiaoke/volley/library/1.0.18/
library-1.0.18.jar 
  /external/skia/src/image/
SkImage_Lazy.cpp 121 GrUniqueKey* cacheKey) override;
675 GrUniqueKey* cacheKey) {
676 SkASSERT(!cacheKey->isValid());
679 GrUniqueKey::Builder builder(cacheKey, origKey, kDomain, 1, "Image");
    [all...]
  /external/skqp/src/image/
SkImage_Lazy.cpp 121 GrUniqueKey* cacheKey) override;
676 GrUniqueKey* cacheKey) {
677 SkASSERT(!cacheKey->isValid());
680 GrUniqueKey::Builder builder(cacheKey, origKey, kDomain, 1);
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/work/
action.go 34 actionCache map[cacheKey]*Action // a cache of already-constructed actions
143 // cacheKey is the key for the action cache.
144 type cacheKey struct {
214 b.actionCache = make(map[cacheKey]*Action)
298 a := b.actionCache[cacheKey{mode, p}]
301 b.actionCache[cacheKey{mode, p}] = a
  /prebuilts/go/linux-x86/src/cmd/go/internal/work/
action.go 34 actionCache map[cacheKey]*Action // a cache of already-constructed actions
143 // cacheKey is the key for the action cache.
144 type cacheKey struct {
214 b.actionCache = make(map[cacheKey]*Action)
298 a := b.actionCache[cacheKey{mode, p}]
301 b.actionCache[cacheKey{mode, p}] = a
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_client.go 114 var cacheKey string
130 cacheKey = clientSessionCacheKey(c.conn.RemoteAddr(), c.config)
131 candidateSession, ok := sessionCache.Get(cacheKey)
175 sessionCache.Put(cacheKey, hs.session)
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_client.go 114 var cacheKey string
130 cacheKey = clientSessionCacheKey(c.conn.RemoteAddr(), c.config)
131 candidateSession, ok := sessionCache.Get(cacheKey)
175 sessionCache.Put(cacheKey, hs.session)
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 324 String cacheKey) {
    [all...]

Completed in 390 milliseconds

12 3 4 5 6 7