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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/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);
  /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/com/squareup/okhttp/internal/
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;
96 * Generates a certificate for {@code hostName} containing {@code keyPair}'s
102 X500Principal issuer = new X500Principal("CN=" + hostName);
103 X500Principal subject = new X500Principal("CN=" + hostName);
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/mockspdyserver/
MockSpdyServer.java 97 String hostName = getHostName();
98 return hostName.contains(".") ? hostName : ".local";
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.cpp 79 static String hostName(const KURL& url, bool secure)
177 builder.append(hostName(m_url, m_secure));
194 fields.append("Host: " + hostName(m_url, m_secure));
246 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 119 String hostName = getHostName();
120 return hostName.contains(".") ? hostName : ".local";
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java 210 String hostName = getURL().getHost();
214 hostName = proxyAddress.getHostName();
217 return new SocketPermission(hostName + ":" + hostPort, "connect, resolve");
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
HttpOverSpdyTest.java 60 public boolean verify(String hostname, SSLSession session) {
76 private final String hostName = server.getHostName();
105 assertContains(request.getHeaders(), ":host: " + hostName + ":" + server.getPort());
  /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...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 94 private final String hostName;
115 hostName = builder.hostName;
117 new Thread(new Reader(), "Spdy Reader " + hostName).start();
203 executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
218 executor.submit(new NamedRunnable("OkHttp SPDY Writer %s stream %d", hostName, streamId) {
253 executor.submit(new NamedRunnable("OkHttp SPDY Writer %s ping %d", hostName, streamId) {
372 private String hostName;
390 public Builder(String hostName, boolean client, Socket socket) throws IOException {
391 this(hostName, client, socket.getInputStream(), socket.getOutputStream())
    [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 429 final String hostname = recvAuth.mAddress; local
430 if (hostname != null) {
431 mServerView.setText(hostname);
525 final String hostName =
528 sendAuth.setConnection(sendAuth.mProtocol, hostName, sendAuth.mPort, sendAuth.mFlags);
AccountCheckSettingsFragment.java     [all...]
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLSocketImpl.java 79 private String hostname; field in class:OpenSSLSocketImpl
199 String hostName = getPeerHostName();
201 if (hostName == null) {
204 OpenSSLSessionImpl session = (OpenSSLSessionImpl) sessionContext.getSession(hostName, port);
317 if (hostname != null) {
318 NativeCrypto.SSL_set_tlsext_host_name(sslNativePointer, hostname);
821 * @param hostname the desired SNI hostname, or null to disable
823 public void setHostname(String hostname) {
824 this.hostname = hostname
    [all...]
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 3411 char hostname[256]; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 86 private String hostName;
91 hostName = server.getHostName();
663 * We were verifying the wrong hostname when connecting to an HTTPS site
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
URLConnectionTest.java 97 private String hostName;
111 hostName = server.getHostName();
697 * 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 
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 

Completed in 625 milliseconds

1 2 3