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

1 2

  /device/moto/stingray/ril/
wrigley-dump.sh 17 hostName=$(getprop ro.product.device)
21 echo "file:begin:txt:${hostName}-iptables.txt"
24 echo "file:end:txt:${hostName}-iptables.txt"
28 echo "file:begin:txt:/${hostName}-ipv6_route.txt"
30 echo "file:end:txt:/${hostName}-ipv6_route.txt"
  /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; }
ProxyServer.cpp 50 ASSERT(!proxyServer.hostName().isNull());
51 builder.append(proxyServer.hostName());
  /libcore/luni/src/main/java/javax/net/ssl/
DefaultHostnameVerifier.java 69 * Returns true if {@code certificate} matches {@code hostName}.
71 private boolean verifyHostName(String hostName, X509Certificate certificate) {
72 hostName = hostName.toLowerCase(Locale.US);
76 if (verifyHostName(hostName, altName)) {
85 return verifyHostName(hostName, cn);
122 * Returns true if {@code hostName} matches the name or pattern {@code cn}.
124 * @param hostName lowercase host name.
128 public boolean verifyHostName(String hostName, String cn) {
129 if (hostName == null || hostName.isEmpty() || cn == null || cn.isEmpty())
    [all...]
  /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...]
Inet4Address.java 51 Inet4Address(byte[] ipaddress, String hostName) {
52 super(AF_INET, ipaddress, hostName);
129 return new Inet4Address(ipaddress, hostName);
Inet6Address.java 65 Inet6Address(byte[] ipaddress, String hostName, int scope_id) {
66 super(AF_INET6, ipaddress, hostName);
104 * the hostname associated with the address.
Socket.java 88 * Tries to connect a socket to all IP addresses of the given hostname.
135 * <p>This implementation tries each IP address for the given hostname (in
158 * <p>This implementation tries each IP address for the given hostname (in
182 * specified by the parameters {@code hostName} and {@code port}. The socket
185 * <p>This implementation tries each IP address for the given hostname (in
189 * @param hostName
205 public Socket(String hostName, int port, boolean streaming) throws IOException {
207 tryAllAddresses(hostName, port, null, 0, streaming);
    [all...]
  /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/nist-sip/java/gov/nist/core/
Host.java 43 * Stores hostname.
68 protected static final int HOSTNAME = 1;
72 /** hostName field
74 protected String hostname; field in class:Host
86 addressType = HOSTNAME;
94 public Host(String hostName) throws IllegalArgumentException {
95 if (hostName == null)
101 setHost(hostName, IPV4ADDRESS);
124 if (addressType == IPV6ADDRESS && !isIPv6Reference(hostname)) {
125 buffer.append('[').append(hostname).append(']')
    [all...]
  /external/webkit/Source/WebCore/platform/network/qt/
ProxyServerQt.cpp 66 servers.append(ProxyServer(proxyType, proxy.hostName(), proxy.port()));
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 70 * @param hostName hostname
74 public HopImpl(String hostName, int portNumber, String trans) {
75 host = hostName;
  /external/webkit/Tools/WebKitLauncher/
WebKitNightlyEnablerSparkle.m 48 NSString *hostName = objc_msgSend(host, @selector(name));
49 NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(updateItem, @selector(displayVersionString))],
50 [NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @selector(displayVersion))],
  /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);
  /external/apache-http/src/org/apache/http/client/protocol/
RequestAddCookies.java 134 String hostName = targetHost.getHostName();
141 hostName,
  /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");
  /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);
  /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;
  /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));
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountCheckSettingsFragment.java     [all...]
  /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/app/admin/
DevicePolicyManager.java     [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSocketImpl.java 75 private String hostname; field in class:OpenSSLSocketImpl
194 String hostName = getPeerHostName();
196 if (hostName == null) {
199 OpenSSLSessionImpl session = (OpenSSLSessionImpl) sessionContext.getSession(hostName, port);
326 if (hostname != null) {
327 NativeCrypto.SSL_set_tlsext_host_name(sslNativePointer, hostname);
836 * @param hostname the desired SNI hostname, or null to disable
838 public void setHostname(String hostname) {
839 this.hostname = hostname
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestQueue.java 431 String hostName = entry.getKey().getHostName();
432 StringBuilder line = new StringBuilder("p" + count++ + " " + hostName + " ");

Completed in 2530 milliseconds

1 2