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

  /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/components/nacl/browser/
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 137 std::string cache_key = local
141 if (cache_key.empty()) {
146 rv = cache_helper_.GetEntryInfoHTML(cache_key, request.context(),
  /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/net/http/
disk_based_cert_cache_unittest.cc 29 const char* cache_key; member in struct:net::__anon13873::TestCertMetaData
131 backend->CreateEntry(cert_data.cache_key, &entry, callback.callback());
161 int rv = backend->OpenEntry(cert_data.cache_key, &entry, callback.callback());
192 CreateMockTransaction(kCert1.cache_key, TEST_MODE_NORMAL));
202 EXPECT_EQ(kCert1.cache_key, set_callback.key());
209 CreateMockTransaction(kCert1.cache_key, TEST_MODE_NORMAL));
216 cache.GetCertificate(kCert1.cache_key, get_callback.callback());
229 CreateMockTransaction(kCert1.cache_key, TEST_MODE_SYNC_ALL));
239 EXPECT_EQ(kCert1.cache_key, set_callback.key());
247 CreateMockTransaction(kCert1.cache_key, TEST_MODE_SYNC_ALL))
    [all...]
  /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
239 // Return true iff a cached session was associated with the given |cache_key|.
240 bool SSLSessionIsInCache(const std::string& cache_key) const {
242 KeyIndex::const_iterator it = key_index_.find(cache_key);
402 std::string cache_key = config_.key_func(ssl); local
405 DVLOG(2) << "Add session " << session << " for " << cache_key; local
    [all...]
ssl_client_socket_openssl.cc 381 std::string cache_key = GetSessionCacheKey(); local
382 return context->session_cache()->SSLSessionIsInCache(cache_key);
    [all...]
  /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;

Completed in 502 milliseconds