HomeSort by relevance Sort by last modified time
    Searched refs:cache_key (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_store.h 34 CloudExternalDataStore(const std::string& cache_key,
cloud_external_data_store.cc 31 const std::string& cache_key,
34 : cache_key_(cache_key),
  /external/chromium_org/content/browser/media/
media_internals.h 64 // Caches |value| under |cache_key| so that future SendEverything() calls will
68 void SendUpdateAndCache(const std::string& cache_key,
71 void SendUpdateAndPurgeCache(const std::string& cache_key,
media_internals.cc 249 void MediaInternals::SendUpdateAndCache(const std::string& cache_key,
255 if (!cached_data_.HasKey(cache_key)) {
256 cached_data_.Set(cache_key, value->DeepCopy());
261 CHECK(cached_data_.GetDictionary(cache_key, &existing_dict));
266 const std::string& cache_key,
273 CHECK(cached_data_.Remove(cache_key, &out_value));
  /external/chromium_org/net/socket/
ssl_session_cache_openssl.cc 198 std::string cache_key = config_.key_func(ssl); local
199 if (cache_key.empty())
202 return SetSSLSessionWithKey(ssl, cache_key);
207 bool SetSSLSessionWithKey(SSL* ssl, const std::string& cache_key) {
210 DCHECK_EQ(config_.key_func(ssl), cache_key);
217 KeyIndex::iterator it = key_index_.find(cache_key);
224 DVLOG(2) << "Lookup session: " << session << " for " << cache_key; local
379 // Add |session| to the cache in association with |cache_key|. If a session
386 std::string cache_key = config_.key_func(ssl); local
387 KeyIndex::iterator it = key_index_.find(cache_key);
389 DVLOG(2) << "Add session " << session << " for " << cache_key; local
    [all...]
ssl_session_cache_openssl.h 106 // ensure that the value of |cache_key| matches the result of calling the
114 bool SetSSLSessionWithKey(SSL* ssl, const std::string& cache_key);
ssl_session_cache_openssl_unittest.cc 121 // a given unique |cache_key|. This does _not_ add the session to the cache.
123 SSL* NewSSL(const std::string& cache_key) {
128 SSLKeyHelper::Set(ssl, cache_key); // associate cache key.
  /external/chromium_org/build/
compiler_version.py 50 cache_key = (compiler, tool)
51 cached_version = compiler_version_cache.get(cache_key)
92 compiler_version_cache[cache_key] = result
  /external/chromium_org/components/nacl/browser/
pnacl_host.cc 261 std::string cache_key(disk_cache_->GetKey(cache_info));
262 if (cache_key.empty()) {
272 pt.cache_key = cache_key;
275 SendCacheQueryAndTempFileRequest(cache_key, id);
281 void PnaclHost::SendCacheQueryAndTempFileRequest(const std::string& cache_key,
285 cache_key,
340 std::string key(entry->second.cache_key);
369 if (it->second.cache_key == entry->second.cache_key &
    [all...]
pnacl_host.h 126 std::string cache_key; member in class:pnacl::PnaclHost::PendingTranslation
  /external/chromium_org/content/browser/net/
view_http_cache_job_factory.cc 136 std::string cache_key = local
140 if (cache_key.empty()) {
145 rv = cache_helper_.GetEntryInfoHTML(cache_key, request.context(),
  /external/chromium_org/chrome/browser/policy/cloud/
component_cloud_policy_browsertest.cc 306 std::string cache_key; local
307 ASSERT_TRUE(Base64UrlEncode("extension-policy", &cache_key));
313 .AppendASCII(cache_key)
  /external/chromium_org/net/dns/
mdns_cache.cc 93 Key cache_key = Key::CreateFor(record.get()); local
96 if (record->ttl() == 0 && mdns_cache_.find(cache_key) == mdns_cache_.end())
104 mdns_cache_.insert(std::make_pair(cache_key, (const RecordParsed*)NULL));
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/android/
native_android.cpp 85 } cache_key; member in struct:android_surface
239 memset(&asurf->cache_key, 0, sizeof(asurf->cache_key));
251 if (asurf->cache_key.width != abuf->width ||
252 asurf->cache_key.height != abuf->height ||
253 asurf->cache_key.format != abuf->format)
279 asurf->cache_key.width = abuf->width;
280 asurf->cache_key.height = abuf->height;
281 asurf->cache_key.format = abuf->format;
  /external/mesa3d/src/gallium/state_trackers/egl/android/
native_android.cpp 85 } cache_key; member in struct:android_surface
239 memset(&asurf->cache_key, 0, sizeof(asurf->cache_key));
251 if (asurf->cache_key.width != abuf->width ||
252 asurf->cache_key.height != abuf->height ||
253 asurf->cache_key.format != abuf->format)
279 asurf->cache_key.width = abuf->width;
280 asurf->cache_key.height = abuf->height;
281 asurf->cache_key.format = abuf->format;
  /external/chromium_org/tools/gyp/pylib/gyp/
input.py 871 cache_key = (str(contents), build_file_dir)
872 cached_value = cached_command_results.get(cache_key, None)
    [all...]

Completed in 232 milliseconds