HomeSort by relevance Sort by last modified time
    Searched refs:HttpCache (Results 1 - 25 of 47) sorted by null

1 2

  /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 57 HttpCache::DefaultBackend::DefaultBackend(CacheType type,
69 HttpCache::DefaultBackend::~DefaultBackend() {}
72 HttpCache::BackendFactory* HttpCache::DefaultBackend::InMemory(int max_bytes) {
77 int HttpCache::DefaultBackend::CreateBackend(
94 HttpCache::ActiveEntry::ActiveEntry(disk_cache::Entry* entry)
101 HttpCache::ActiveEntry::~ActiveEntry() {
112 struct HttpCache::PendingOp {
135 class HttpCache::WorkItem {
191 class HttpCache::MetadataWriter
    [all...]
http_cache_transaction.cc 98 UMA_HISTOGRAM_ENUMERATION("HttpCache.OfflineStatus", status,
117 UMA_HISTOGRAM_ENUMERATION("HttpCache.Vary", vary, VARY_MAX);
193 HttpCache::Transaction::Transaction(
195 HttpCache* cache)
225 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders ==
230 HttpCache::Transaction::~Transaction() {
253 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len,
269 bool HttpCache::Transaction::AddTruncatedFlag() {
290 LoadState HttpCache::Transaction::GetWriterLoadState() const {
298 const BoundNetLog& HttpCache::Transaction::net_log() const
    [all...]
disk_cache_based_quic_server_info.h 19 class HttpCache;
31 HttpCache* http_cache);
95 HttpCache* const http_cache_;
http_cache.h 9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for
62 class NET_EXPORT HttpCache : public HttpTransactionFactory,
79 // A BackendFactory creates a backend object to be used by the HttpCache.
123 // The HttpCache takes ownership of the |backend_factory|.
124 HttpCache(const net::HttpNetworkSession::Params& params,
131 // HttpCache takes ownership of the |backend_factory|.
132 HttpCache(HttpNetworkSession* session, BackendFactory* backend_factory);
135 // |network_layer| and |backend_factory| are managed by the HttpCache and
136 // will be destroyed using |delete| when the HttpCache is destroyed.
137 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_; }
394 base::WeakPtr<HttpCache> cache_;
395 HttpCache::ActiveEntry* entry_;
396 HttpCache::ActiveEntry* new_entry_;
411 bool cache_pending_; // We are waiting for the HttpCache
    [all...]
mock_http_cache.h 158 class MockBackendFactory : public net::HttpCache::BackendFactory {
168 explicit MockHttpCache(net::HttpCache::BackendFactory* disk_cache_factory);
170 net::HttpCache* http_cache() { return &http_cache_; }
206 net::HttpCache http_cache_;
215 class MockBackendNoCbFactory : public net::HttpCache::BackendFactory {
223 class MockBlockingBackendFactory : public net::HttpCache::BackendFactory {
http_network_layer.cc 71 HttpCache* HttpNetworkLayer::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/components/cronet/android/java/src/org/chromium/net/
HttpUrlRequestFactoryConfig.java 22 enableHttpCache(HttpCache.IN_MEMORY, 100 * 1024);
62 public enum HttpCache { DISABLED, IN_MEMORY, DISK };
63 public HttpUrlRequestFactoryConfig enableHttpCache(HttpCache value,
  /external/chromium_org/chrome/browser/
chrome_net_benchmarking_message_filter.cc 119 net::HttpCache::Mode mode = enabled ?
120 net::HttpCache::NORMAL : net::HttpCache::DISABLE;
121 net::HttpCache* http_cache = request_context_->GetURLRequestContext()->
  /external/chromium_org/mojo/services/network/
network_context.cc 99 net::HttpCache::DefaultBackend* main_backend =
100 new net::HttpCache::DefaultBackend(
107 net::HttpCache* main_cache = new net::HttpCache(
  /external/chromium_org/content/shell/browser/
shell_url_request_context_getter.cc 140 net::HttpCache::DefaultBackend* main_backend =
141 new net::HttpCache::DefaultBackend(
201 net::HttpCache* main_cache = new net::HttpCache(
  /external/chromium_org/chrome/browser/profiles/
off_the_record_profile_io_data.cc 234 net::HttpCache::BackendFactory* main_backend =
235 net::HttpCache::DefaultBackend::InMemory(0);
337 net::HttpCache::BackendFactory* app_backend =
338 net::HttpCache::DefaultBackend::InMemory(0);
341 scoped_ptr<net::HttpCache> app_http_cache =
profile_impl_io_data.cc 484 net::HttpCache::DefaultBackend* main_backend =
485 new net::HttpCache::DefaultBackend(
492 scoped_ptr<net::HttpCache> main_cache = CreateMainHttpFactory(
508 net::HttpCache::RECORD : net::HttpCache::PLAYBACK);
630 net::HttpCache::BackendFactory* app_backend = NULL;
632 app_backend = net::HttpCache::DefaultBackend::InMemory(0);
634 app_backend = new net::HttpCache::DefaultBackend(
644 scoped_ptr<net::HttpCache> app_http_cache =
658 net::HttpCache::RECORD : net::HttpCache::PLAYBACK)
    [all...]
profile_io_data.h 376 scoped_ptr<net::HttpCache> CreateMainHttpFactory(
378 net::HttpCache::BackendFactory* main_backend) const;
381 scoped_ptr<net::HttpCache> CreateHttpFactory(
383 net::HttpCache::BackendFactory* backend) const;
profile_io_data.cc     [all...]
  /external/chromium_org/chrome/service/net/
service_url_request_context.cc 136 storage_.set_http_transaction_factory(new net::HttpCache(
137 network_session.get(), net::HttpCache::DefaultBackend::InMemory(0)));
  /external/chromium_org/net/url_request/
url_request_context_builder.cc 307 HttpCache::BackendFactory* http_cache_backend = NULL;
309 http_cache_backend = new HttpCache::DefaultBackend(
317 HttpCache::DefaultBackend::InMemory(http_cache_params_.max_size);
320 http_transaction_factory = new HttpCache(
view_cache_helper.cc 216 HttpCache* http_cache = context_->http_transaction_factory()->GetCache();
303 if (HttpCache::ParseResponseInfo(
353 if (index_ < HttpCache::kNumCacheEntryDataIndices) {
  /external/chromium_org/android_webview/browser/net/
aw_url_request_context_getter.cc 219 net::HttpCache* main_cache = new net::HttpCache(
221 new net::HttpCache::DefaultBackend(

Completed in 3347 milliseconds

1 2