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

1 2 3 4

  /external/chromium_org/remoting/ios/
host.h 16 @property(nonatomic, copy) NSString* hostName;
  /external/chromium_org/remoting/ios/ui/
pin_entry_view_controller.h 40 @property(nonatomic, copy) NSString* hostName;
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ProxyServer.h 54 ProxyServer(Type type, const String& hostName, int port)
56 , m_hostName(hostName)
62 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,
  /packages/apps/Email/src/com/android/email/activity/setup/
SecurityRequiredDialogFragment.java 43 private final static String ARGS_HOST_NAME = "SecurityRequiredDialog.HostName";
57 public static SecurityRequiredDialogFragment newInstance(String hostName) {
60 arguments.putString(ARGS_HOST_NAME, hostName);
69 final String hostName = arguments.getString(ARGS_HOST_NAME);
77 R.string.account_setup_security_policies_required_fmt, hostName))
AccountCheckSettingsFragment.java 100 * @param hostName Passed back from the MessagingException
102 void onCheckSettingsSecurityRequired(String hostName);
233 String hostName = ex.getMessage();
234 if (hostName != null) {
235 hostName = hostName.trim();
237 getCallbackTarget().onCheckSettingsSecurityRequired(hostName);
AccountSetupIncomingFragment.java 388 final String hostname = recvAuth.mAddress; local
389 if (hostname != null) {
390 mServerView.setText(hostname);
532 final String hostName =
535 sendAuth.setConnection(sendAuth.mProtocol, hostName, sendAuth.mPort, sendAuth.mFlags);
  /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/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 60 String hostName = null;
69 hostName = address.substring(0, i);
79 if (hostName != null) {
80 hostAddr = InetAddress.getByName(hostName);
88 if (hostName != null) {
140 String hostName = null;
148 hostName = address.substring(0, i);
164 transportSocket = new Socket(hostName, port);
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/internal/
SslContextBuilder.java 42 * self-signed certificate for a single hostname such as "localhost".
55 private final String hostName;
60 * @param hostName the subject of the host. For TLS this should be the
63 public SslContextBuilder(String hostName) {
64 this.hostName = hostName;
114 * Generates a certificate for {@code hostName} containing {@code keyPair}'s
120 X500Principal issuer = new X500Principal("CN=" + hostName);
121 X500Principal subject = new X500Principal("CN=" + hostName);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.cpp 79 static String hostName(const KURL& url, bool secure)
179 builder.append(hostName(m_url, m_secure));
198 fields.append("Host: " + hostName(m_url, m_secure));
242 request->addHeaderField("Host", AtomicString(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 122 String hostName = getHostName();
123 return hostName.contains(".") ? hostName : ".local";
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpURLConnectionImpl.java 221 String hostName = getURL().getHost();
225 hostName = proxyAddress.getHostName();
228 return new SocketPermission(hostName + ":" + hostPort, "connect, resolve");
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 427 String hostName = entry.getKey().getHostName();
428 StringBuilder line = new StringBuilder("p" + count++ + " " + hostName + " ");
  /libcore/luni/src/main/java/java/net/
InetAddress.java 48 * <p>An {@code InetAddress} may have a hostname (accessible via {@code getHostName}), but may not,
137 String hostName;
150 InetAddress(int family, byte[] ipaddress, String hostName) {
153 this.hostName = hostName;
189 * @param hostName the hostname corresponding to the IP address.
192 private static InetAddress[] bytesToInetAddresses(byte[][] rawAddresses, String hostName)
197 returnedAddresses[i] = makeInetAddress(rawAddresses[i], hostName);
210 * @param host the hostname or literal IP string to be resolved
473 String hostname = Libcore.os.getnameinfo(address, NI_NAMEREQD); local
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java 152 String hostName = getHostName();
153 return hostName.contains(".") ? hostName : ".local";
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 83 private final String hostName;
142 hostName = builder.hostName;
327 executor.submit(new NamedRunnable("OkHttp %s stream %d", hostName, streamId) {
342 executor.submit(new NamedRunnable("OkHttp Window Update %s stream %d", hostName, streamId) {
375 hostName, payload1, payload2) {
494 private String hostName;
510 public Builder(String hostName, boolean client, Socket socket) throws IOException {
511 this.hostName = hostName;
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java 74 public boolean verify(String hostname, SSLSession session) {
81 protected final String hostName = server.getHostName();
114 assertContains(request.getHeaders(), hostHeader + ": " + hostName + ":" + server.getPort());
URLConnectionTest.java 111 private String hostName;
114 hostName = server.getHostName();
    [all...]
  /frameworks/base/core/java/android/net/dhcp/
DhcpPacket.java 569 String hostName = null;
693 hostName = readAsciiString(packet, optionLen);
795 newPacket.mHostName = hostName;
885 InetAddress serverIdentifier, byte[] requestedParams, String hostName) {
890 pkt.mHostName = hostName;
  /libcore/luni/src/test/java/libcore/java/net/
URLConnectionTest.java 87 private String hostName;
92 hostName = server.getHostName();
607 * We were verifying the wrong hostname when connecting to an HTTPS site
    [all...]
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java     [all...]

Completed in 1163 milliseconds

1 2 3 4