HomeSort by relevance Sort by last modified time
    Searched refs:dns (Results 1 - 16 of 16) sorted by null

  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 2 # DNS server addresses given by the DHCP server.
12 setprop dhcp.${interface}.dns${i} ""
17 setprop dhcp.${interface}.dns${count} ${dnsaddr}
25 setprop dhcp.${interface}.dns${i} ""
  /external/ppp/android/
ip-up-vpn.c 77 char *dns = getenv("DNS1"); local
78 property_set("vpn.dns1", dns ? dns : "");
79 dns = getenv("DNS2");
80 property_set("vpn.dns2", dns ? dns : "");
  /external/netcat/data/
dns-any.d 0 # dns "any for ." query, to udp 53
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 47 ASN1Sequence dns,
55 if (subtree.size() > dns.size())
62 if (!subtree.getObjectAt(j).equals(dns.getObjectAt(j)))
71 public void checkPermittedDN(ASN1Sequence dns)
74 checkPermittedDN(permittedSubtreesDN, dns);
77 public void checkExcludedDN(ASN1Sequence dns)
80 checkExcludedDN(excludedSubtreesDN, dns);
83 private void checkPermittedDN(Set permitted, ASN1Sequence dns)
91 if (permitted.isEmpty() && dns.size() == 0)
101 if (withinDNSubtree(dns, subtree)
1035 String dns = extractNameAsString(((GeneralSubtree)it.next()) local
    [all...]
RFC3280CertPathUtilities.java 1185 ASN1Sequence dns; local
    [all...]
  /frameworks/base/services/java/com/android/server/
WifiWatchdogService.java 52 * connects to an access point, the watchdog verifies whether the DNS server is
63 * DNS. There are settings that allow disabling the watchdog, or tweaking the
315 * Gets the DNS of the current AP.
317 * @return The DNS of the current AP.
329 * Checks whether the DNS can be reached using multiple attempts according
332 * @return Whether the DNS is reachable
335 int dns = getDns(); local
336 if (dns == -1) {
338 myLogV("checkDnsConnectivity: Invalid DNS, returning false");
345 Integer.toHexString(Integer.reverseBytes(dns)) + " for connectivity")
424 int dns = getDns(); local
    [all...]
ConnectivityService.java 81 * used both as a refcount and for per-PID DNS selection
649 // this gets used for per-pid dns when connected
660 // add the pid-specific dns
    [all...]
NetworkManagementService.java 460 public void setDnsForwarders(String[] dns) throws IllegalStateException {
464 String cmd = "tether dns set";
465 for (String s : dns) {
472 "Unable to communicate to native daemon for setting tether dns");
475 throw new IllegalStateException("Error resolving dns name", e);
484 "tether dns list", NetdResponseCode.TetherDnsFwdTgtListResult);
487 "Unable to communicate to native daemon for listing tether dns");
  /external/dhcpcd/
Android.mk 43 LOCAL_MODULE := 20-dns.conf
  /frameworks/base/core/java/android/os/
INetworkManagementService.aidl 111 * Sets the list of DNS forwarders (in order of priority)
113 void setDnsForwarders(in String[] dns);
116 * Returns the list of DNS fowarders (in order of priority)
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 157 // according to RFC 3280 p.34 the DNS name should be
371 // DNS name [2] that can be constructed by simply adding
374 String dns = (String) name; local
376 if (dns.equalsIgnoreCase(_dns)) {
379 return _dns.toLowerCase().endsWith("." + dns.toLowerCase());
578 * Checks the correctness of the string representation of DNS name.
582 public static void checkDNS(String dns) throws IOException {
583 byte[] bytes = dns.toLowerCase().getBytes(Charsets.UTF_8);
594 throw new IOException("DNS name must start with a letter: " + dns);
    [all...]
  /external/openssl/crypto/x509v3/
v3_ncons.c 78 static int nc_dns(ASN1_IA5STRING *sub, ASN1_IA5STRING *dns);
391 static int nc_dns(ASN1_IA5STRING *dns, ASN1_IA5STRING *base)
394 char *dnsptr = (char *)dns->data;
399 * compare RHS and if dns is longer and expect '.' as preceding
402 if (dns->length > base->length)
404 dnsptr += dns->length - base->length;
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
AccessPointParserHelper.java 98 boolean dns = false;
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java 783 String[] dns = phone.getDnsServers(phone.getActiveApnTypes()[0]); local
784 if (dns != null) {
785 sb.append("\ndns: ").append(dns[0]).append(", ").append(dns[1]);
    [all...]
  /external/ppp/pppd/
ipcp.c 92 static bool usepeerdns; /* Ask peer for DNS addrs */
177 { "ms-dns", 1, (void *)setdnsaddr,
178 "DNS address for the peer's use" },
210 "Ask peer for DNS address(es)", 1 },
332 * setdnsaddr - set the dns address(es)
338 u_int32_t dns; local
341 dns = inet_addr(*argv);
342 if (dns == (u_int32_t) -1) {
344 option_error("invalid address parameter '%s' for ms-dns option",
348 dns = *(u_int32_t *)hp->h_addr
    [all...]
  /build/core/
user_tags.mk 29 20-dns.conf \

Completed in 1186 milliseconds