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

  /external/chromium/net/url_request/
url_request_filter.cc 43 HostnameHandlerMap::iterator host_it = local
45 if (host_it != hostname_handler_map_.end())
76 HostnameHandlerMap::iterator host_it = local
78 if (host_it != hostname_handler_map_.end())
  /external/chromium_org/net/http/
http_pipelined_host_pool.cc 96 HostMap::iterator host_it = host_map_.find(key); local
97 if (host_it != host_map_.end()) {
98 CHECK(host_it->second);
99 return host_it->second;
  /external/chromium_org/chrome/browser/predictors/
resource_prefetcher.cc 97 std::map<std::string, int>::iterator host_it = local
99 if (host_it == host_inflight_counts_.end() ||
100 host_it->second <
148 std::map<std::string, int>::iterator host_it = host_inflight_counts_.find( local
150 CHECK_GT(host_it->second, 0);
151 host_it->second -= 1;
152 if (host_it->second == 0)
  /external/chromium_org/net/url_request/
url_request_filter.cc 81 HostnameHandlerMap::iterator host_it = local
83 if (host_it != hostname_handler_map_.end())
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_dom_feature_extractor_browsertest.cc 135 std::map<std::string, std::string>::const_iterator host_it = local
137 if (host_it == request.headers.end())
141 std::string("http://") + host_it->second + request.relative_url;
phishing_classifier_delegate_browsertest.cc 196 std::map<std::string, std::string>::const_iterator host_it = local
198 if (host_it == request.headers.end())
202 std::string("http://") + host_it->second + request.relative_url;
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_url_filter.cc 270 std::map<std::string, bool>::const_iterator host_it = host_map_.find(host); local
271 if (host_it != host_map_.end())
272 return host_it->second ? ALLOW : BLOCK;
276 for (std::map<std::string, bool>::const_iterator host_it =
277 host_map_.begin(); host_it != host_map_.end(); ++host_it) {
278 if ((host_it->second == (default_behavior_ == BLOCK)) &&
279 HostMatchesPattern(host, host_it->first)) {
280 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 283 milliseconds