Searched defs:host (Results 1 - 25 of 213) sorted by relevance

123456789

/external/chromium/net/base/
H A Dnet_util_win.cc25 std::string host = url.host(); local
26 if (host.empty()) {
27 // URL contains no host, the path is the filename. In this case, the path
35 // URL contains a host: this means it's UNC. We keep the preceeding slash
38 path.append(host);
H A Dfixed_host_resolver.cc13 FixedHostResolver::FixedHostResolver(const std::string& host) argument
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;
/external/ipsec-tools/src/racoon/
H A Dthrottle.h40 struct sockaddr_storage host; member in struct:throttle_entry
/external/webkit/WebCore/page/
H A DOriginAccessEntry.cpp38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting) argument
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()
[all...]
H A DLocation.cpp77 String Location::host() const function in class:WebCore::Location
83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
85 return url.port() ? url.host() + ":" + String::number((static_cast<int>(url.port()))) : url.host();
93 return url().host();
H A DUserContentURLPattern.h47 const String& host() const { return m_host; } function in class:WebCore::UserContentURLPattern
/external/apache-http/src/org/apache/http/conn/
H A DHttpHostConnectException.java45 private final HttpHost host; field in class:HttpHostConnectException
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) { argument
48 super("Connection to " + host + " refused");
49 this.host = host;
54 return this.host;
/external/apache-http/src/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java49 * Returns a socket connected to the given host that is layered over an
54 * @param host the host name/IP
55 * @param port the port on the host
62 * @throws UnknownHostException if the IP address of the host cannot be
67 String host,
65 createSocket( Socket socket, String host, int port, boolean autoClose ) argument
H A DSocketFactory.java71 * Connects a socket to the given host.
77 * @param host the host to connect to
78 * @param port the port to connect to on the host
90 * @throws UnknownHostException if the IP address of the target host
97 String host,
115 * socket to a host in the same intranet ("trusted zone")
95 connectSocket( Socket sock, String host, int port, InetAddress localAddress, int localPort, HttpParams params ) argument
/external/chromium/net/proxy/
H A Dproxy_server_mac.cc36 std::string host = base::SysCFStringRefToUTF8(host_ref); local
48 return ProxyServer(scheme, host, port);
/external/webkit/WebKit/chromium/src/
H A DApplicationCacheHostInternal.h44 ApplicationCacheHostInternal(ApplicationCacheHost* host) argument
45 : m_innerHost(host)
/external/apache-http/src/org/apache/http/conn/ssl/
H A DAllowAllHostnameVerifier.java43 final String host,
42 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DBrowserCompatHostnameVerifier.java51 final String host,
54 verify(host, cns, subjectAlts, false);
50 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DStrictHostnameVerifier.java58 final String host,
61 verify(host, cns, subjectAlts, true);
57 verify( final String host, final String[] cns, final String[] subjectAlts) argument
H A DX509HostnameVerifier.java62 boolean verify(String host, SSLSession session); argument
64 void verify(String host, SSLSocket ssl) throws IOException; argument
66 void verify(String host, X509Certificate cert) throws SSLException; argument
79 * @param host The hostname to verify.
82 void verify(String host, String[] cns, String[] subjectAlts) argument
/external/apache-http/src/org/apache/http/cookie/
H A DCookieOrigin.java45 private final String host; field in class:CookieOrigin
50 public CookieOrigin(final String host, int port, final String path, boolean secure) { argument
52 if (host == null) {
56 if (host.trim().length() == 0) {
67 this.host = host.toLowerCase(Locale.ENGLISH);
78 return this.host;
100 buffer.append(this.host);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DRFC2965DomainAttributeHandler.java78 // MAY NOT be an IP address of a host name
87 * Host A's name domain-matches host B's if
89 * <ul>their host name strings string-compare equal; or</ul>
95 * @param host host name where cookie is received from or being sent to.
97 * @return true if the specified host matches the given domain.
99 public boolean domainMatch(String host, String domain) { argument
100 boolean match = host.equals(domain)
101 || (domain.startsWith(".") && host.endsWith(domain));
117 String host
[all...]
/external/astl/tests/
H A DAndroid.mk29 # generate the right make target (host vs device). $(5) is used in the
30 # module's name to have different name for the host vs device
32 # typically the host libs have a _host suffix in their names.
53 # Compile using the host only on linux for valgrind support.
54 define host-test
84 $(call host-test, $(sources))
/external/gtest/test/
H A DAndroid.mk26 # Gtest depends on STLPort which does not build on host/simulator.
54 # generate the right make target (host vs device). $(4) is used in the
55 # module's name and to have different module names for the host vs
57 # libraries, typically the host libs have a _host suffix in their
80 define host-test
112 $(call host-test, $(sources))
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressFactoryImpl.java110 *@param host -- the host.
112 public javax.sip.address.SipURI createSipURI(String user, String host) argument
114 if (host == null)
115 throw new NullPointerException("null host");
123 //if host is an IPv6 string we should enclose it in sq brackets
124 if (host.indexOf(':') != host.lastIndexOf(':')
125 && host.trim().charAt(0) != '[')
126 host
[all...]
/external/nist-sip/java/javax/sip/
H A DIOExceptionEvent.java10 public IOExceptionEvent(Object source, String host, int port, argument
13 mHost = host;
/external/nist-sip/java/javax/sip/address/
H A DAddressFactory.java12 SipURI createSipURI(String user, String host) throws ParseException; argument
/external/ppp/pppd/plugins/radius/
H A Dip_util.c23 * Purpose: return an IP address in host long notation from a host
29 UINT4 rc_get_ipaddr (char *host) argument
33 if (rc_good_ipaddr (host) == 0)
35 return ntohl(inet_addr (host));
37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL)
39 error("rc_get_ipaddr: couldn't resolve hostname: %s", host);
98 * Purpose: Return a printable host name (or IP address in dot notation)
110 error("rc_ip_hostname: couldn't look up host by addr: %08lX", h_ipaddr);
119 * Purpose: get the IP address of this host i
[all...]
/external/webkit/WebCore/bindings/v8/
H A DV8GCController.h60 GlobalHandleInfo(void* host, GlobalHandleType type) : m_host(host), m_type(type) { } argument
/external/webkit/WebCore/platform/network/
H A DProtectionSpace.cpp50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme) argument
51 : m_host(host.length() ? host : "")
60 const String& ProtectionSpace::host() const function in class:WebCore::ProtectionSpace
108 if (a.host() != b.host())

Completed in 407 milliseconds

123456789