HomeSort by relevance Sort by last modified time
    Searched full:hostname (Results 1 - 25 of 1513) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dhcpcd/dhcpcd-hooks/
30-hostname 1 # Set the hostname from DHCP data if required
5 local hostname=""
9 *) hostname="$(hostname)";;
11 case "$hostname" in
25 hostname "$new_host_name"
27 hostname "$new_fqdn_name"
  /external/smack/src/org/xbill/DNS/windows/
DNSServer_de.properties 1 host_name=Hostname
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/_locales/en/
messages.json 9 "message": "Hostname Pattern"
21 "message": "Add a new hostname pattern"
  /libcore/luni/src/main/java/javax/net/ssl/
HostnameVerifier.java 21 * The interface to be used to provide hostname verification functionality.
24 * during a handshake if the URL's hostname does not match the peer's
25 * identification hostname.
29 * Verifies that the specified hostname is allowed within the specified SSL
32 * @param hostname
33 * the hostname.
36 * @return {@code true} if the specified hostname is allowed, otherwise
39 boolean verify(String hostname, SSLSession session);
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)) {
86 return verifyHostName(hostName, cn);
123 * Returns true if {@code hostName} matches the name or pattern {@code cn}.
125 * @param hostName lowercase host name.
129 public boolean verifyHostName(String hostName, String cn) {
130 if (hostName == null || hostName.isEmpty() || cn == null || cn.isEmpty())
    [all...]
  /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/chromium_org/chrome/renderer/net/
prescient_networking_dispatcher.cc 18 const blink::WebString& hostname) {
19 if (hostname.isEmpty())
22 std::string hostname_utf8 = base::UTF16ToUTF8(hostname);
  /external/chromium_org/sync/util/
get_session_name_linux.cc 16 char hostname[HOST_NAME_MAX]; local
17 if (gethostname(hostname, HOST_NAME_MAX) == 0) // Success.
18 return hostname;
  /external/chromium_org/content/common/
p2p_socket_type.h 42 P2PHostAndIPEndPoint(const std::string& hostname,
44 : hostname(hostname), ip_address(ip_address) {
47 std::string hostname; member in struct:content::P2PHostAndIPEndPoint
  /external/chromium_org/extensions/common/api/
dns.idl 20 // Resolves the given hostname or IP address literal.
21 // |hostname| : The hostname to resolve.
23 static void resolve(DOMString hostname,
  /external/dhcpcd/
dhcpcd.conf 4 # Inform the DHCP server of our hostname for DDNS.
5 hostname
21 # A hook script is provided to lookup the hostname if not set by the DHCP
23 nohook lookup-hostname
  /external/kernel-headers/original/uapi/asm-generic/
param.h 16 #define MAXHOSTNAMELEN 64 /* max length of hostname */
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
NanoWebSocketServer.java 14 public NanoWebSocketServer(String hostname, int port) {
15 super(hostname, port);
24 public NanoWebSocketServer(String hostname, int port, IWebSocketFactory webSocketFactory) {
25 super(hostname, port);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/asm-generic/
param.h 17 #define MAXHOSTNAMELEN 64 /* max length of hostname */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
param.h 17 #define MAXHOSTNAMELEN 64 /* max length of hostname */
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 4 // This international hostname has a non-ASCII character. It is represented
10 // unicode hostname.
  /external/chromium_org/net/data/proxy_resolver_v8_unittest/
international_domain_names.js 4 // This international hostname has a non-ASCII character. It is represented
10 // unicode hostname.
  /external/conscrypt/src/platform/java/org/conscrypt/
CertPinManager.java 61 * Given a {@code hostname} and a {@code chain} this verifies that the
63 * {@code hostname} is on the list of sites that should be pinned.
69 public boolean isChainValid(String hostname, List<X509Certificate> chain)
72 final PinListEntry entry = lookup(hostname);
74 // There was no entry in the pin list for this hostname.
134 private synchronized PinListEntry lookup(String hostname) throws PinManagerException {
140 // if so, check the hostname cache
141 String cn = hostnameCache.get(hostname);
148 cn = getMatchingCN(hostname);
150 hostnameCache.put(hostname, cn)
    [all...]
  /libcore/luni/src/main/java/java/net/
InetSocketAddress.java 31 // Exactly one of hostname or addr should be set.
33 private final String hostname; field in class:InetSocketAddress
42 this.hostname = null;
74 this.hostname = null;
80 * hostname {@code host}. The hostname is tried to be resolved and cannot be
87 * the specified hostname to which this socket is bound.
97 InetSocketAddress(String hostname, int port, boolean needResolved) {
98 if (hostname == null || port < 0 || port > 65535) {
99 throw new IllegalArgumentException("host=" + hostname + ", port=" + port)
    [all...]
AddressCache.java 47 AddressCacheKey(String hostname, int netId) {
48 mHostname = hostname;
98 * Returns the cached InetAddress[] for 'hostname' on network 'netId'. Returns null
99 * if nothing is known about 'hostname'. Returns a String suitable for use as an
100 * UnknownHostException detail message if 'hostname' is known not to exist.
102 public Object get(String hostname, int netId) {
103 AddressCacheEntry entry = cache.get(new AddressCacheKey(hostname, netId));
114 * Associates the given 'addresses' with 'hostname'. The association will expire after a
117 public void put(String hostname, int netId, InetAddress[] addresses) {
118 cache.put(new AddressCacheKey(hostname, netId), new AddressCacheEntry(addresses))
    [all...]
  /external/chromium_org/net/cert/
mock_cert_verifier.cc 18 const std::string& hostname,
22 hostname(hostname),
30 std::string hostname; member in struct:net::MockCertVerifier::Rule
40 const std::string& hostname,
52 if (!MatchPattern(hostname, it->hostname))
  /external/chromium_org/net/quic/test_tools/
crypto_test_utils_nss.cc 30 const string& hostname,
33 channel_id_key->reset(new ChannelIDKeyChromium(HostnameToKey(hostname)));
40 crypto::ECPrivateKey* HostnameToKey(const string& hostname) {
41 HostnameToKeyMap::const_iterator it = hostname_to_key_.find(hostname);
50 hostname_to_key_[hostname] = keypair;
  /development/tools/axl/
udpServer.py 13 # hostname = socket.gethostname()
14 hostname = "localhost"
15 ip = socket.gethostbyname(hostname)
  /external/chromium_org/chrome/browser/ui/
crypto_module_password_dialog.h 29 // affects the message displayed in the dialog. |hostname| is the hostname
35 const std::string& hostname,
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
OkHostnameVerifier.java 93 * Returns true if {@code certificate} matches {@code hostName}.
95 private boolean verifyHostName(String hostName, X509Certificate certificate) {
96 hostName = hostName.toLowerCase(Locale.US);
100 if (verifyHostName(hostName, altName)) {
110 return verifyHostName(hostName, cn);
147 * Returns true if {@code hostName} matches the name or pattern {@code cn}.
149 * @param hostName lowercase host name.
153 public boolean verifyHostName(String hostName, String cn) {
155 if (hostName == null || hostName.length() == 0 || cn == null || cn.length() == 0)
    [all...]

Completed in 1799 milliseconds

1 2 3 4 5 6 7 8 91011>>