Home
last modified time | relevance | path

Searched refs:host (Results 1 – 25 of 420) sorted by relevance

12345678910>>...17

/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
Dregress-89443.js45 function FindProxyForURL(url, host) argument
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/webkit/WebKitTools/iExploder/tools/
Dlasthit.rb22 host = $1
25 if (! hostHash[host])
26 hostHash[host] = Hash.new
28 if (! hostHash[host][agent])
29 hostHash[host][agent] = Hash.new
30 hostHash[host][agent]['total'] = 0
33 hostHash[host][agent]['last'] = testnum
35 hostHash[host][agent]['subtest'] = $1
37 hostHash[host][agent]['subtest'] = ''
39 hostHash[host][agent]['total'] = hostHash[host][agent]['total'] + 1
[all …]
/external/apache-http/src/org/apache/http/auth/
DAuthScope.java84 private final String host; field in AuthScope
106 public AuthScope(final String host, int port, in AuthScope() argument
109 this.host = (host == null) ? ANY_HOST: host.toLowerCase(Locale.ENGLISH); in AuthScope()
129 public AuthScope(final String host, int port, final String realm) { in AuthScope() argument
130 this(host, port, realm, ANY_SCHEME); in AuthScope()
144 public AuthScope(final String host, int port) { in AuthScope() argument
145 this(host, port, ANY_REALM, ANY_SCHEME); in AuthScope()
156 this.host = authscope.getHost(); in AuthScope()
166 return this.host; in getHost()
220 if (LangUtils.equals(this.host, that.host)) { in match()
[all …]
/external/apache-http/src/org/apache/http/impl/cookie/
DRFC2109DomainHandler.java69 String host = origin.getHost(); in validate() local
74 if (!domain.equals(host)) { in validate()
80 + host + "\""); in validate()
95 host = host.toLowerCase(Locale.ENGLISH); in validate()
96 if (!host.endsWith(domain)) { in validate()
99 + "\". Domain of origin: \"" + host + "\""); in validate()
102 String hostWithoutDomain = host.substring(0, host.length() - domain.length()); in validate()
118 String host = origin.getHost(); in match() local
123 return host.equals(domain) || (domain.startsWith(".") && host.endsWith(domain)); in match()
DBasicDomainHandler.java72 String host = origin.getHost(); in validate() local
77 if (host.contains(".")) { in validate()
82 if (!host.endsWith(domain)) { in validate()
86 if (!host.equals(domain)) { in validate()
89 + "\". Domain of origin: \"" + host + "\""); in validate()
93 if (!host.equals(domain)) { in validate()
96 + "\". Domain of origin: \"" + host + "\""); in validate()
108 String host = origin.getHost(); in match() local
113 if (host.equals(domain)) { in match()
119 return host.endsWith(domain) || host.equals(domain.substring(1)); in match()
DRFC2965DomainAttributeHandler.java99 public boolean domainMatch(String host, String domain) { in domainMatch() argument
100 boolean match = host.equals(domain) in domainMatch()
101 || (domain.startsWith(".") && host.endsWith(domain)); in domainMatch()
117 String host = origin.getHost().toLowerCase(Locale.ENGLISH); in validate() local
144 if (!domainMatch(host, cookieDomain)) { in validate()
152 String effectiveHostWithoutDomain = host.substring( in validate()
153 0, host.length() - cookieDomain.length()); in validate()
162 if (!cookie.getDomain().equals(host)) { in validate()
166 + host + "\""); in validate()
181 String host = origin.getHost().toLowerCase(Locale.ENGLISH); in match() local
[all …]
DNetscapeDomainHandler.java51 String host = origin.getHost(); in validate() local
53 if (host.contains(".")) { in validate()
98 String host = origin.getHost(); in match() local
103 return host.endsWith(domain); in match()
/external/apache-http/src/org/apache/http/cookie/
DCookieOrigin.java45 private final String host; field in CookieOrigin
50 public CookieOrigin(final String host, int port, final String path, boolean secure) { in CookieOrigin() argument
52 if (host == null) { in CookieOrigin()
56 if (host.trim().length() == 0) { in CookieOrigin()
67 this.host = host.toLowerCase(Locale.ENGLISH); in CookieOrigin()
78 return this.host; in getHost()
100 buffer.append(this.host); in toString()
/external/apache-http/src/org/apache/http/conn/
DHttpHostConnectException.java45 private final HttpHost host; field in HttpHostConnectException
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) { in HttpHostConnectException() argument
48 super("Connection to " + host + " refused"); in HttpHostConnectException()
49 this.host = host; in HttpHostConnectException()
54 return this.host; in getHost()
/external/webkit/WebCore/loader/
Dloader.cpp102 Host* host; in load() local
106 AtomicString hostName = url.host(); in load()
107 host = m_hosts.get(hostName.impl()); in load()
108 if (!host) { in load()
109 host = new Host(hostName, maxRequestsInFlightPerHost); in load()
110 m_hosts.add(hostName.impl(), host); in load()
113 host = &m_nonHTTPProtocolHost; in load()
115 bool hadRequests = host->hasRequests(); in load()
117 host->addRequest(request, priority); in load()
122 host->servePendingRequests(priority); in load()
[all …]
/external/apache-http/src/org/apache/http/conn/ssl/
DAbstractVerifier.java86 public final void verify(String host, SSLSocket ssl) in verify() argument
88 if(host == null) { in verify()
132 verify(host, x509); in verify()
135 public final boolean verify(String host, SSLSession session) { in verify() argument
139 verify(host, x509); in verify()
147 public final void verify(String host, X509Certificate cert) in verify() argument
151 verify(host, cns, subjectAlts); in verify()
154 public final void verify(final String host, final String[] cns, in verify() argument
176 String msg = "Certificate for <" + host + "> doesn't contain CN or DNS subjectAlt"; in verify()
185 String hostName = host.trim().toLowerCase(Locale.ENGLISH); in verify()
[all …]
DX509HostnameVerifier.java62 boolean verify(String host, SSLSession session); in verify() argument
64 void verify(String host, SSLSocket ssl) throws IOException; in verify() argument
66 void verify(String host, X509Certificate cert) throws SSLException; in verify() argument
82 void verify(String host, String[] cns, String[] subjectAlts) in verify() argument
DSSLSocketFactory.java279 final String host, in connectSocket() argument
286 if (host == null) { in connectSocket()
312 remoteAddress = new InetSocketAddress(this.nameResolver.resolve(host), port); in connectSocket()
314 remoteAddress = new InetSocketAddress(host, port); in connectSocket()
321 hostnameVerifier.verify(host, sslsock); in connectSocket()
371 final String host, in createSocket() argument
377 host, in createSocket()
381 hostnameVerifier.verify(host, sslSocket); in createSocket()
/external/clearsilver/python/examples/trans/
Ddb_trans.py68 def trans_connect(host = 'localhost', debug=0): argument
70 if host != 'localhost':
74 if local_name == host:
75 host = 'localhost'
77 if debug: p = profiler.Profiler("SQL", "Connect -- %s:trans" % (host))
78 db = MySQLdb.connect(host = host, user=USER, passwd = PASSWORD, db=DATABASE)
/external/webkit/WebCore/platform/network/
DProtectionSpace.cpp46 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType… in ProtectionSpace() argument
47 : m_host(host.length() ? host : "") in ProtectionSpace()
55 const String& ProtectionSpace::host() const in host() function in WebCore::ProtectionSpace
103 if (a.host() != b.host()) in operator ==()
/external/ppp/pppd/plugins/radius/
Dip_util.c29 UINT4 rc_get_ipaddr (char *host) in rc_get_ipaddr() argument
33 if (rc_good_ipaddr (host) == 0) in rc_get_ipaddr()
35 return ntohl(inet_addr (host)); in rc_get_ipaddr()
37 else if ((hp = gethostbyname (host)) == (struct hostent *) NULL) in rc_get_ipaddr()
39 error("rc_get_ipaddr: couldn't resolve hostname: %s", host); in rc_get_ipaddr()
/external/webkit/WebCore/platform/qt/
DKURLQt.cpp51 int host = m_string.find("://"); in operator QUrl() local
52 if (host != -1) { in operator QUrl()
53 host += 3; in operator QUrl()
55 path = m_string.find('/', host); in operator QUrl()
77 if (host == -1 || (path != -1 && i >= path)) in operator QUrl()
/external/dropbear/
Dscpmisc.c106 cleanhostname(char *host) in cleanhostname() argument
108 if (*host == '[' && host[strlen(host) - 1] == ']') { in cleanhostname()
109 host[strlen(host) - 1] = '\0'; in cleanhostname()
110 return (host + 1); in cleanhostname()
112 return host; in cleanhostname()
Dscp.c169 do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc) in do_cmd() argument
176 ssh_program, host, in do_cmd()
201 addargs(&args, "%s", host); in do_cmd()
225 addargs(&args, "%s", host); in do_cmd()
457 char *bp, *host, *src, *suser, *thost, *tuser, *arg; in toremote() local
498 host = strrchr(argv[i], '@'); in toremote()
500 if (host) { in toremote()
501 *host++ = 0; in toremote()
502 host = cleanhostname(host); in toremote()
511 host = cleanhostname(argv[i]); in toremote()
[all …]
/external/netcat/scripts/
Dweb42 host="$1"
64 read host
77 echo "=== ${host}:${specD}${specF} ===" >> $saving &&
122 echo GET "${spec}" | $BACKEND $host $port > ${TMPAGE}
127 echo "=== ${host}:${spec} ===" >> $saving
/external/esd/include/
Desd.h130 int esd_open_sound( const char *host );
146 const char *host, const char *name );
148 const char *host, const char *name );
150 const char *host, const char *name );
153 const char *host, const char *name );
155 const char *host, const char *name );
157 const char *host, const char *name );
/external/webkit/WebKit/win/
DWebURLProtectionSpace.cpp124 HRESULT STDMETHODCALLTYPE WebURLProtectionSpace::host( in host() function in WebURLProtectionSpace
127 BString str = m_protectionSpace.host(); in host()
149 /* [in] */ BSTR host, in initWithHost() argument
172 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType, in initWithHost()
179 /* [in] */ BSTR host, in initWithProxyHost() argument
202 m_protectionSpace = ProtectionSpace(String(host, SysStringLen(host)), port, serverType, in initWithProxyHost()
/external/tcpdump/missing/
Dgetnameinfo.c100 getnameinfo(sa, salen, host, hostlen, serv, servlen, flags) in getnameinfo() argument
103 char *host;
205 if (host == NULL || hostlen == 0) {
221 strcpy(host, numaddr);
231 char *ep = strchr(host, '\0');
265 strcpy(host, hp->h_name);
277 strcpy(host, numaddr);
/external/webkit/WebCore/dom/
DWorkerLocation.cpp47 String WorkerLocation::host() const in host() function in WebCore::WorkerLocation
49 …return m_url.port() ? m_url.host() + ":" + String::number((static_cast<int>(m_url.port()))) : m_ur… in host()
54 return m_url.host(); in hostname()
/external/apache-http/src/org/apache/http/client/params/
DClientParamBean.java80 public void setVirtualHost (final HttpHost host) { in setVirtualHost() argument
81 params.setParameter(ClientPNames.VIRTUAL_HOST, host); in setVirtualHost()
88 public void setDefaultHost (final HttpHost host) { in setDefaultHost() argument
89 params.setParameter(ClientPNames.DEFAULT_HOST, host); in setDefaultHost()

12345678910>>...17