Home
last modified time | relevance | path

Searched refs:host_prefix (Results 1 – 5 of 5) sorted by relevance

/third_party/curl/lib/
Dconnect.c276 static const char *host_prefix = "host!"; in bindlocal() local
282 else if(strncmp(host_prefix, dev, strlen(host_prefix)) == 0) { in bindlocal()
283 dev += strlen(host_prefix); in bindlocal()
/third_party/python/Lib/http/
Dcookiejar.py1067 host_prefix = req_host[:-len(domain)]
1068 if (host_prefix.find(".") >= 0 and
1071 host_prefix, domain)
/third_party/grpc/src/core/ext/filters/client_channel/xds/
Dxds_api.cc979 absl::string_view host_prefix(expected_host_name.c_str(), in DomainMatch() local
981 return pattern_prefix == host_prefix; in DomainMatch()
/third_party/grpc/src/core/ext/xds/
Dxds_api.cc239 absl::string_view host_prefix(expected_host_name.c_str(), in DomainMatch() local
241 return pattern_prefix == host_prefix; in DomainMatch()
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch52312 + const base::StringPiece host_prefix = "__Host-";
52314 + // Compare the value to the host_prefix.
52315 + if (base::StartsWith(value_without_BWS, host_prefix)) {
52318 + if (value_without_BWS.find_first_of('=', host_prefix.size()) !=