OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:host_it
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/chrome/browser/predictors/
resource_prefetcher.cc
97
std::map<std::string, size_t>::iterator
host_it
=
local
99
if (
host_it
== host_inflight_counts_.end() ||
100
host_it
->second <
150
std::map<std::string, size_t>::iterator
host_it
= host_inflight_counts_.find(
local
152
CHECK_GT(
host_it
->second, 0U);
153
host_it
->second -= 1;
154
if (
host_it
->second == 0)
/external/chromium_org/net/url_request/
url_request_filter.cc
67
HostnameInterceptorMap::const_iterator
host_it
=
local
69
if (
host_it
!= hostname_interceptor_map_.end())
/external/chromium_org/chrome/renderer/safe_browsing/
phishing_dom_feature_extractor_browsertest.cc
143
std::map<std::string, std::string>::const_iterator
host_it
=
local
145
if (
host_it
== request.headers.end())
149
std::string("http://") +
host_it
->second + request.relative_url;
phishing_classifier_delegate_browsertest.cc
202
std::map<std::string, std::string>::const_iterator
host_it
=
local
204
if (
host_it
== request.headers.end())
208
std::string("http://") +
host_it
->second + request.relative_url;
/external/chromium_org/chrome/browser/supervised_user/
supervised_user_url_filter.cc
279
std::map<std::string, bool>::const_iterator
host_it
= host_map_.find(host);
local
280
if (
host_it
!= host_map_.end())
281
return
host_it
->second ? ALLOW : BLOCK;
285
for (std::map<std::string, bool>::const_iterator
host_it
=
286
host_map_.begin();
host_it
!= host_map_.end(); ++
host_it
) {
287
if ((
host_it
->second == (default_behavior_ == BLOCK)) &&
288
HostMatchesPattern(host,
host_it
->first)) {
289
return
host_it
->second ? ALLOW : BLOCK;
/external/chromium_org/net/tools/quic/
spdy_utils.cc
181
BlockIt
host_it
= header_block.find(kV3Host);
local
186
if (
host_it
== end_it || path_it == end_it || scheme_it == end_it ||
192
url.append(
host_it
->second);
Completed in 1232 milliseconds