OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HostCache
(Results
1 - 13
of
13
) sorted by null
/external/chromium/net/proxy/
proxy_resolver_request_context.h
11
class
HostCache
;
21
HostCache
* host_cache)
27
HostCache
* host_cache;
proxy_resolver_js_bindings.cc
231
HostCache
::Key cache_key(info.hostname(),
235
HostCache
* host_cache = current_request_context() ?
242
const
HostCache
::Entry* entry =
proxy_resolver_js_bindings_unittest.cc
264
HostCache
cache(50,
proxy_resolver_v8.cc
702
// In particular, we create a
HostCache
that is aggressive about caching
704
HostCache
host_cache(
/external/chromium/net/base/
host_cache.cc
14
HostCache
::Entry::Entry(int error,
20
HostCache
::Entry::~Entry() {
25
HostCache
::
HostCache
(size_t max_entries,
33
HostCache
::~
HostCache
() {
36
const
HostCache
::Entry*
HostCache
::Lookup(const Key& key,
53
HostCache
::Entry*
HostCache
::Set(const Key& key
[
all
...]
host_cache_unittest.cc
23
HostCache
::Key Key(const std::string& hostname) {
24
return
HostCache
::Key(hostname, ADDRESS_FAMILY_UNSPECIFIED, 0);
30
HostCache
cache(kMaxCacheEntries, kSuccessEntryTTL, kFailureEntryTTL);
35
const
HostCache
::Entry* entry1 = NULL; // Entry for foobar.com.
36
const
HostCache
::Entry* entry2 = NULL; // Entry for foobar2.com.
90
HostCache
cache(kMaxCacheEntries, kSuccessEntryTTL, kFailureEntryTTL);
112
HostCache
cache(kMaxCacheEntries,
119
const
HostCache
::Entry* entry1 = NULL; // Entry for foobar.com.
120
const
HostCache
::Entry* entry2 = NULL; // Entry for foobar2.com.
173
HostCache
cache(kMaxCacheEntries, kSuccessEntryTTL, kFailureEntryTTL)
[
all
...]
host_cache.h
22
class
HostCache
: public base::NonThreadSafe {
75
// Constructs a
HostCache
that caches successful host resolves for
78
HostCache
(size_t max_entries,
82
~
HostCache
();
124
// Returns true if this
HostCache
can contain no entries.
140
DISALLOW_COPY_AND_ASSIGN(
HostCache
);
host_resolver_impl.h
81
HostCache
* cache,
95
HostCache
* cache() { return cache_.get(); }
137
typedef
HostCache
::Key Key;
230
scoped_ptr<
HostCache
> cache_;
mock_host_resolver.cc
79
HostCache
* cache = NULL;
82
cache = new
HostCache
(
host_resolver_impl.cc
61
HostCache
* CreateDefaultCache() {
64
HostCache
* cache = new
HostCache
(
905
HostCache
* cache,
1019
const
HostCache
::Entry* cache_entry = cache_->Lookup
[
all
...]
host_resolver_impl_unittest.cc
32
HostCache
* CreateDefaultCache() {
33
return new
HostCache
(
[
all
...]
/external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc
75
// Returns the
HostCache
for |context|'s primary HostResolver, or NULL if
77
net::
HostCache
* GetHostResolverCache(net::URLRequestContext* context) {
[
all
...]
/external/chromium/chrome/browser/
io_thread.cc
636
net::
HostCache
* host_cache =
Completed in 319 milliseconds