/external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
D | regress-89443.js | 45 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/ |
D | lasthit.rb | 22 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/ |
D | AuthScope.java | 84 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/ |
D | RFC2109DomainHandler.java | 69 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()
|
D | BasicDomainHandler.java | 72 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()
|
D | RFC2965DomainAttributeHandler.java | 99 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 …]
|
D | NetscapeDomainHandler.java | 51 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/ |
D | CookieOrigin.java | 45 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/ |
D | HttpHostConnectException.java | 45 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/ |
D | loader.cpp | 102 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/ |
D | AbstractVerifier.java | 86 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 …]
|
D | X509HostnameVerifier.java | 62 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
|
D | SSLSocketFactory.java | 279 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/ |
D | db_trans.py | 68 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/ |
D | ProtectionSpace.cpp | 46 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/ |
D | ip_util.c | 29 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/ |
D | KURLQt.cpp | 51 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/ |
D | scpmisc.c | 106 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()
|
D | scp.c | 169 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/ |
D | web | 42 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/ |
D | esd.h | 130 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/ |
D | WebURLProtectionSpace.cpp | 124 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/ |
D | getnameinfo.c | 100 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/ |
D | WorkerLocation.cpp | 47 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/ |
D | ClientParamBean.java | 80 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()
|