/external/chromium_org/net/http/ |
http_transaction_factory.h | 14 class HttpCache; 29 virtual HttpCache* GetCache() = 0;
|
failing_http_transaction_factory.h | 16 class HttpCache; 32 virtual HttpCache* GetCache() OVERRIDE;
|
http_cache.cc | 63 HttpCache::DefaultBackend::DefaultBackend( 76 HttpCache::DefaultBackend::~DefaultBackend() {} 79 HttpCache::BackendFactory* HttpCache::DefaultBackend::InMemory(int max_bytes) { 84 int HttpCache::DefaultBackend::CreateBackend( 101 HttpCache::ActiveEntry::ActiveEntry(disk_cache::Entry* entry) 108 HttpCache::ActiveEntry::~ActiveEntry() { 119 struct HttpCache::PendingOp { 142 class HttpCache::WorkItem { 198 class HttpCache::MetadataWriter [all...] |
disk_cache_based_quic_server_info.h | 19 class HttpCache; 31 HttpCache* http_cache); 94 HttpCache* const http_cache_;
|
http_cache_transaction.cc | 210 UMA_HISTOGRAM_ENUMERATION("HttpCache.OfflineStatus", status, 229 UMA_HISTOGRAM_ENUMERATION("HttpCache.Vary", vary, VARY_MAX); 312 HttpCache::Transaction::Transaction( 314 HttpCache* cache) 343 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders == 351 HttpCache::Transaction::~Transaction() { 374 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len, 390 bool HttpCache::Transaction::AddTruncatedFlag() { 411 LoadState HttpCache::Transaction::GetWriterLoadState() const { 419 const BoundNetLog& HttpCache::Transaction::net_log() const [all...] |
http_cache.h | 9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for 66 class NET_EXPORT HttpCache : public HttpTransactionFactory, 83 // A BackendFactory creates a backend object to be used by the HttpCache. 129 // The HttpCache takes ownership of the |backend_factory|. 130 HttpCache(const net::HttpNetworkSession::Params& params, 137 // HttpCache takes ownership of the |backend_factory|. 138 HttpCache(HttpNetworkSession* session, BackendFactory* backend_factory); 141 // |network_layer| and |backend_factory| are managed by the HttpCache and 142 // will be destroyed using |delete| when the HttpCache is destroyed. 143 HttpCache(HttpTransactionFactory* network_layer [all...] |
http_network_layer.h | 48 virtual HttpCache* GetCache() OVERRIDE;
|
http_cache_unittest.cc | 122 void RunTransactionTestBase(net::HttpCache* cache, 166 void RunTransactionTestWithRequest(net::HttpCache* cache, 174 void RunTransactionTestAndGetTiming(net::HttpCache* cache, 182 void RunTransactionTest(net::HttpCache* cache, 187 void RunTransactionTestWithResponseInfo(net::HttpCache* cache, 195 net::HttpCache* cache, 204 void RunTransactionTestWithResponse(net::HttpCache* cache, 213 net::HttpCache* cache, 541 TEST(HttpCache, CreateThenDestroy) { 549 TEST(HttpCache, GetBackend) [all...] |
http_cache_transaction.h | 5 // This file declares HttpCache::Transaction, a private class of HttpCache so 28 // This is the transaction that is returned by the HttpCache transaction 30 class HttpCache::Transaction : public HttpTransaction { 62 HttpCache* cache); 94 HttpCache::ActiveEntry* entry() { return entry_; } 412 base::WeakPtr<HttpCache> cache_; 413 HttpCache::ActiveEntry* entry_; 414 HttpCache::ActiveEntry* new_entry_; 429 bool cache_pending_; // We are waiting for the HttpCache [all...] |
mock_http_cache.h | 157 class MockBackendFactory : public net::HttpCache::BackendFactory { 167 explicit MockHttpCache(net::HttpCache::BackendFactory* disk_cache_factory); 169 net::HttpCache* http_cache() { return &http_cache_; } 208 net::HttpCache http_cache_; 217 class MockBackendNoCbFactory : public net::HttpCache::BackendFactory { 225 class MockBlockingBackendFactory : public net::HttpCache::BackendFactory {
|
http_network_layer.cc | 69 HttpCache* HttpNetworkLayer::GetCache() {
|
failing_http_transaction_factory.cc | 188 HttpCache* FailingHttpTransactionFactory::GetCache() {
|
/external/chromium_org/chrome/browser/devtools/ |
devtools_network_transaction_factory.h | 16 class HttpCache; 33 virtual net::HttpCache* GetCache() OVERRIDE;
|
devtools_network_transaction_factory.cc | 36 net::HttpCache* DevToolsNetworkTransactionFactory::GetCache() {
|
/external/chromium_org/chrome/browser/ |
chrome_net_benchmarking_message_filter.cc | 120 net::HttpCache::Mode mode = enabled ? 121 net::HttpCache::NORMAL : net::HttpCache::DISABLE; 122 net::HttpCache* http_cache = request_context_->GetURLRequestContext()->
|
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/ |
HttpUrlRequestFactoryConfig.java | 24 enableHttpCache(HttpCache.IN_MEMORY, 100 * 1024); 76 public enum HttpCache { DISABLED, IN_MEMORY, DISK }; 77 public HttpUrlRequestFactoryConfig enableHttpCache(HttpCache value,
|
/external/chromium_org/content/shell/browser/ |
shell_url_request_context_getter.cc | 140 net::HttpCache::DefaultBackend* main_backend = 141 new net::HttpCache::DefaultBackend( 200 net::HttpCache* main_cache = new net::HttpCache(
|
/external/chromium_org/chrome/browser/profiles/ |
profile_impl_io_data.cc | 538 net::HttpCache::DefaultBackend* main_backend = 539 new net::HttpCache::DefaultBackend( 545 scoped_ptr<net::HttpCache> main_cache = CreateMainHttpFactory( 552 net::HttpCache::RECORD : net::HttpCache::PLAYBACK); 668 net::HttpCache::BackendFactory* app_backend = NULL; 670 app_backend = net::HttpCache::DefaultBackend::InMemory(0); 672 app_backend = new net::HttpCache::DefaultBackend( 681 scoped_ptr<net::HttpCache> app_http_cache = 695 net::HttpCache::RECORD : net::HttpCache::PLAYBACK) [all...] |
off_the_record_profile_io_data.cc | 255 net::HttpCache::BackendFactory* main_backend = 256 net::HttpCache::DefaultBackend::InMemory(0); 357 net::HttpCache::BackendFactory* app_backend = 358 net::HttpCache::DefaultBackend::InMemory(0); 361 scoped_ptr<net::HttpCache> app_http_cache =
|
profile_io_data.h | 478 scoped_ptr<net::HttpCache> CreateMainHttpFactory( 480 net::HttpCache::BackendFactory* main_backend) const; 483 scoped_ptr<net::HttpCache> CreateHttpFactory( 485 net::HttpCache::BackendFactory* backend) const;
|
/external/chromium_org/net/url_request/ |
url_request_context_builder.cc | 366 HttpCache::BackendFactory* http_cache_backend = NULL; 368 http_cache_backend = new HttpCache::DefaultBackend( 376 HttpCache::DefaultBackend::InMemory(http_cache_params_.max_size); 379 http_transaction_factory = new HttpCache(
|
view_cache_helper.cc | 215 HttpCache* http_cache = context_->http_transaction_factory()->GetCache(); 304 if (HttpCache::ParseResponseInfo( 354 if (index_ < HttpCache::kNumCacheEntryDataIndices) {
|
/external/chromium_org/android_webview/browser/net/ |
aw_url_request_context_getter.cc | 221 net::HttpCache* main_cache = new net::HttpCache( 223 new net::HttpCache::DefaultBackend(
|
/external/chromium_org/content/renderer/ |
browser_render_view_browsertest.cc | 84 net::HttpCache* cache( 118 net::HttpCache* cache(
|
/external/chromium_org/chromecast/shell/browser/ |
url_request_context_factory.cc | 356 net::HttpCache::BackendFactory* main_backend = 357 net::HttpCache::DefaultBackend::InMemory(16 * 1024 * 1024); 368 new net::HttpCache(network_session_params, main_backend),
|