HomeSort by relevance Sort by last modified time
    Searched defs:hostName (Results 1 - 25 of 39) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/network/
ProxyServer.h 53 ProxyServer(Type type, const String& hostName, int port)
55 , m_hostName(hostName)
61 const String& hostName() const { return m_hostName; }
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 134 String hostName = targetHost.getHostName();
141 hostName,
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 147 // establish the socket to the hostname in the certificate.
148 String hostName = host.trim().toLowerCase(Locale.ENGLISH);
171 match = hostName.endsWith(cn.substring(1));
175 match = countDots(hostName) == countDots(cn);
178 match = hostName.equals(cn);
185 throw new SSLException("hostname in certificate didn't match: <" + host + "> !=" + buf);
  /external/webkit/Source/WebCore/loader/
ResourceLoadScheduler.cpp 59 String hostName = url.host();
60 HostInformation* host = m_hosts.get(hostName);
62 host = new HostInformation(hostName, maxRequestsInFlightPerHost);
63 m_hosts.add(hostName, host);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestResults.java 127 String hostName = "";
129 hostName = InetAddress.getLocalHost().getHostName();
131 serializer.attribute(ns, "name", hostName);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
InetAddressThreadTest.java 86 String hostName = ia.getHostName();
91 // may not include a domain suffix on the hostname
92 if (!hostName.startsWith(correctName)) {
97 + hostName
  /external/okhttp/src/test/java/libcore/net/ssl/
SslContextBuilder.java 40 * self-signed certificate for a single hostname such as "localhost".
51 private final String hostName;
56 * @param hostName the subject of the host. For TLS this should be the
59 public SslContextBuilder(String hostName) {
60 this.hostName = hostName;
98 * Generates a certificate for {@code hostName} containing {@code keyPair}'s
104 X500Principal issuer = new X500Principal("CN=" + hostName);
105 X500Principal subject = new X500Principal("CN=" + hostName);
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.cpp 74 static String hostName(const KURL& url, bool secure)
222 builder.append(hostName(m_url, m_secure));
239 fields.append("Host: " + hostName(m_url, m_secure));
283 request.addHeaderField("Host", hostName(m_url, m_secure));
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLConnection.java 93 private String hostName;
108 hostName = url.getHost();
219 InetSocketAddress addr = new InetSocketAddress(hostName, port);
321 return new SocketPermission(hostName + ":" + port, "connect, resolve");
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockWebServer.java 121 String hostName = getHostName();
122 return hostName.contains(".") ? hostName : ".local";
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 431 String hostName = entry.getKey().getHostName();
432 StringBuilder line = new StringBuilder("p" + count++ + " " + hostName + " ");
  /libcore/luni/src/main/java/java/net/
InetAddress.java 50 * <p>An {@code InetAddress} may have a hostname (accessible via {@code getHostName}), but may not,
136 String hostName;
149 InetAddress(int family, byte[] ipaddress, String hostName) {
152 this.hostName = hostName;
188 * @param hostName the hostname corresponding to the IP address.
191 private static InetAddress[] bytesToInetAddresses(byte[][] rawAddresses, String hostName)
196 returnedAddresses[i] = makeInetAddress(rawAddresses[i], hostName);
209 * @param host the hostname or literal IP string to be resolved
440 String hostname = Libcore.os.getnameinfo(address, NI_NAMEREQD); local
    [all...]
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java     [all...]
  /frameworks/base/core/java/android/net/dhcp/
DhcpPacket.java 572 String hostName = null;
696 hostName = readAsciiString(packet, optionLen);
798 newPacket.mHostName = hostName;
888 InetAddress serverIdentifier, byte[] requestedParams, String hostName) {
893 pkt.mHostName = hostName;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupIncomingFragment.java 360 String hostname = recvAuth.mAddress; local
361 if (hostname != null) {
362 mServerView.setText(hostname);
437 String hostName = AccountSettingsUtils.inferServerName(recvAuth.mAddress, null, "smtp");
439 sendAuth.setConnection(sendAuth.mProtocol, hostName, sendAuth.mPort, sendAuth.mFlags);
AccountCheckSettingsFragment.java     [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 77 private String hostname; field in class:OpenSSLSocketImpl
193 String hostName = getPeerHostName();
195 if (hostName == null) {
198 OpenSSLSessionImpl session = (OpenSSLSessionImpl) sessionContext.getSession(hostName, port);
307 if (hostname != null) {
308 NativeCrypto.SSL_set_tlsext_host_name(sslNativePointer, hostname);
796 * @param hostname the desired SNI hostname, or null to disable
798 public void setHostname(String hostname) {
799 this.hostname = hostname
    [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 3411 char hostname[256]; local
    [all...]
  /external/okhttp/src/test/java/libcore/net/http/
URLConnectionTest.java 90 private String hostName;
107 hostName = server.getHostName();
604 * We were verifying the wrong hostname when connecting to an HTTPS site
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 90 private String hostName;
94 hostName = server.getHostName();
651 * We were verifying the wrong hostname when connecting to an HTTPS site
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /prebuilts/tools/common/http-client/
httpclient-4.1.1.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 899 milliseconds

1 2