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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-89443.js 45 function FindProxyForURL(url, host)
48 if (isPlainHostName(host)
49 || dnsDomainIs(host, ".hennepin.lib.mn.us")
50 || dnsDomainIs(host, ".hclib.org")
53 else if (isPlainHostName(host)
57 || dnsDomainIs(host, ".asahi.com")
58 || dnsDomainIs(host, ".2facts.com")
59 || dnsDomainIs(host, ".oclc.org")
60 || dnsDomainIs(host, ".collegesource.com")
61 || dnsDomainIs(host, ".cq.com"
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
return_function.js 1 function FindProxyForURL(url, host) {
return_null.js 1 function FindProxyForURL(url, host) {
return_undefined.js 1 function FindProxyForURL(url, host) {
return_object.js 1 function FindProxyForURL(url, host) {
  /external/iproute2/etc/iproute2/
rt_scopes 6 254 host
  /external/apache-http/src/org/apache/http/conn/
HttpHostConnectException.java 45 private final HttpHost host; field in class:HttpHostConnectException
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
48 super("Connection to " + host + " refused");
49 this.host = host;
54 return this.host;
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallIdentifier.java 53 * host field
55 protected String host; field in class:CallIdentifier
66 * @param host is the host.
68 public CallIdentifier(String localId, String host) {
70 this.host = host;
93 if (host != null) {
94 buffer.append(AT).append(host);
114 if (this.host == that.host
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
MockSecurityManager.java 19 MockSecurityManager(String host) {
21 this.validHost = host;
37 public void checkConnect(String host, int port) {
41 if (!this.validHost.equals(host)) {
45 if ("127.0.0.1".equals(host)) {
48 super.checkConnect(host, port);
51 public void checkAccept(String host, int port) {
55 if (!this.validHost.equals(host)) {
64 if ("127.0.0.1".equals(host)) {
67 super.checkAccept(host, port)
    [all...]
  /frameworks/base/core/java/android/net/
Proxy.java 40 * Return the proxy host set by the user.
41 * @param ctx A Context used to get the settings for the proxy host.
42 * @return String containing the host name. If the user did not set a host
43 * name it returns the default host. A null value means that no
44 * host is to be used.
49 String host = Settings.Secure.getString( local
52 if (host != null) {
53 int i = host.indexOf(':');
56 Assert.assertTrue(host.length() == 0)
73 String host = Settings.Secure.getString( local
    [all...]
  /external/webkit/WebCore/page/
OriginAccessEntry.cpp 38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting)
40 , m_host(host.lower())
46 // Assume that any host that ends with a digit is trying to be an IP address.
52 ASSERT(origin.host() == origin.host().lower());
58 // Special case: Include subdomains and empty host means "all hosts, including ip addresses".
63 if (m_host == origin.host())
75 if (origin.host().length() > m_host.length() && origin.host()[origin.host().length() - m_host.length() - 1] == '.' && origin.host().endsWith(m_host)
    [all...]
  /external/chromium/googleurl/src/
url_canon_ip.h 39 // Searches the host name for the portions of the IPv4 address. On success,
41 // It will return false if the host can not be separated as an IPv4 address
54 // Mozilla), so this code path never gets hit. Our host canonicalization will
58 const url_parse::Component& host,
61 const url_parse::Component& host,
76 const url_parse::Component& host,
80 const url_parse::Component& host,
87 // NOTE that |host| is expected to be surrounded by square brackets.
90 const url_parse::Component& host,
93 const url_parse::Component& host,
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostPort.java 47 // host / ipv4/ ipv6/
48 /** host field
50 protected Host host; field in class:HostPort
61 host = null;
76 host.encode(buffer);
92 return port == that.port && host.equals(that.host);
95 /** get the Host field
96 * @return host fiel
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestFeeder.java 31 Request getRequest(HttpHost host);
34 * @return true if a request for this host is available
36 boolean haveRequest(HttpHost host);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 54 protected String host; field in class:HopImpl
65 return host + ":" + port + "/" + transport;
69 * Create new hop given host, port and transport.
75 host = hostName;
79 if(host.indexOf(":") >= 0)
80 if(host.indexOf("[") < 0)
81 host = "[" + host + "]";
90 * @param hop is a hop string in the form of host:port/Transport
104 this.host = hop.substring(0,colon)
    [all...]
  /external/chromium/net/base/
fixed_host_resolver.cc 13 FixedHostResolver::FixedHostResolver(const std::string& host)
17 if (!ParseHostAndPort(host, &parsed_host, &port)) {
18 LOG(DFATAL) << "Invalid FixedHostResolver information: " << host;
22 int rv = SystemHostResolverProc(host, net::ADDRESS_FAMILY_UNSPECIFIED,
25 LOG(ERROR) << "Could not resolve fixed host: " << host;
registry_controlled_domain.cc 64 const url_parse::Component host = local
65 gurl.parsed_for_possibly_invalid_spec().host;
66 if ((host.len <= 0) || gurl.HostIsIPAddress())
69 gurl.possibly_invalid_spec().data() + host.begin, host.len));
74 const std::string& host) {
76 const std::string canon_host(net::CanonicalizeHost(host, &host_info));
84 const std::wstring& host) {
86 const std::string canon_host(net::CanonicalizeHost(host, &host_info));
104 gurl1.parsed_for_possibly_invalid_spec().host;
118 const url_parse::Component host = local
    [all...]
https_prober.cc 12 bool HTTPSProber::HaveProbed(const std::string& host) const {
13 return probed_.find(host) != probed_.end();
16 bool HTTPSProber::InFlight(const std::string& host) const {
17 return inflight_probes_.find(host) != inflight_probes_.end();
20 bool HTTPSProber::ProbeHost(const std::string& host, URLRequestContext* ctx,
22 if (HaveProbed(host) || InFlight(host)) {
26 inflight_probes_[host] = delegate;
28 GURL url("https://" + host);
29 DCHECK_EQ(url.host(), host)
    [all...]
registry_controlled_domain.h 132 // Returns the registered, organization-identifying host and all its registry
134 // string if the GURL is invalid, has no host (e.g. a file: URL), has multiple
139 // the host is assumed to be the registry.
146 // file:///C:/bar.html -> "" (no host)
150 // http://co.uk/file.html -> "" (host is a registry)
154 // Like the GURL version, but takes a host (which is canonicalized internally)
156 static std::string GetDomainAndRegistry(const std::string& host);
157 static std::string GetDomainAndRegistry(const std::wstring& host);
168 // Finds the length in bytes of the registrar portion of the host in the
170 // host (e.g. a file: URL). Returns 0 if the GURL has multiple trailing dots
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
ClientSessionContext.java 24 * Caches client sessions. Indexes by host and port. Users are typically
25 * looking to reuse any session for a given host and port.
30 * Sessions indexed by host and port. Protect from concurrent
47 String host = session.getPeerHost(); local
49 if (host == null) {
52 HostAndPort hostAndPortKey = new HostAndPort(host, port);
59 * Finds a cached session for the given host name and port.
61 * @param host of server
65 public SSLSession getSession(String host, int port) {
66 if (host == null)
100 String host = session.getPeerHost(); local
121 final String host; field in class:ClientSessionContext.HostAndPort
    [all...]
  /ndk/build/awk/
gen-windows-host-path.awk 20 # 'cygwin-to-host-path' that will transform a Cygwin-specific path into the
23 # $(call cygwin-to-host-path,/cygdrive/c/Stuff/) --> c:/Stuff
27 # cygwin-to-host-path = $(shell cygpath -m $1)
59 # record a new (host-path,cygwin-path) pair
61 host[count] = $1
73 if (!match(host[nn],"^[A-Za-z]:$")) {
77 letter = substr(host[nn],1,1)
85 host[count] = host[nn]
94 host[count] = host[nn
    [all...]
  /libcore/luni/src/main/java/javax/net/
DefaultSocketFactory.java 40 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
41 return new Socket(host, port);
45 public Socket createSocket(String host, int port, InetAddress localHost, int localPort)
47 return new Socket(host, port, localHost, localPort);
51 public Socket createSocket(InetAddress host, int port) throws IOException {
52 return new Socket(host, port);

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011>>