/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 | 218 void MediaInternals::SendUpdateAndCache(const std::string& cache_key, 224 if (!cached_data_.HasKey(cache_key)) { 225 cached_data_.Set(cache_key, value->DeepCopy()); 230 CHECK(cached_data_.GetDictionary(cache_key, &existing_dict)); 235 const std::string& cache_key, 242 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/components/nacl/browser/ |
pnacl_host.cc | 210 std::string cache_key(disk_cache_->GetKey(cache_info)); 211 if (cache_key.empty()) { 221 pt.cache_key = cache_key; 224 SendCacheQueryAndTempFileRequest(cache_key, id); 230 void PnaclHost::SendCacheQueryAndTempFileRequest(const std::string& cache_key, 234 cache_key, 289 std::string key(entry->second.cache_key); 318 if (it->second.cache_key == entry->second.cache_key & [all...] |
pnacl_host.h | 122 std::string cache_key; member in class:pnacl::PnaclHost::PendingTranslation
|
/external/chromium/chrome/browser/net/ |
view_http_cache_job_factory.cc | 129 std::string cache_key = local 133 if (cache_key.empty()) { 138 rv = cache_helper_.GetEntryInfoHTML(cache_key, request.context(),
|
/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/net/proxy/ |
proxy_resolver_js_bindings.cc | 231 HostCache::Key cache_key(info.hostname(), 243 host_cache->Lookup(cache_key, base::TimeTicks::Now()); 257 host_cache->Set(cache_key, result, *address_list,
|
/external/chromium_org/chrome/browser/policy/cloud/ |
component_cloud_policy_browsertest.cc | 297 std::string cache_key; local 298 ASSERT_TRUE(Base64Encode("extension-policy", &cache_key)); 304 .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 | 844 # directory is also used in cache_key (it becomes a tuple). 850 cache_key = str(contents) 851 cached_value = cached_command_results.get(cache_key, None) [all...] |