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

  /external/jmdns/src/javax/jmdns/
JmmDNS.java 16 * Java Multihomed Multicast DNS
86 JmmDNS dns = null; local
89 dns = delegate.newJmmDNS();
91 return (dns != null ? dns : new JmmDNSImpl());
95 * Return the instance of the Multihommed Multicast DNS.
148 * Get service information. If the information is not cached, the method will block until updated information is received on all DNS.
162 * Get service information. If the information is not cached, the method will block until updated information is received on all DNS.
178 * Get service information. If the information is not cached, the method will block until updated information is received on all DNS.
194 * Get service information. If the information is not cached, the method will block until updated information is received on all DNS
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSRecord.java 28 * DNS record
77 abstract boolean handleQuery(JmDNSImpl dns, long expirationTime);
84 abstract boolean handleResponse(JmDNSImpl dns);
89 abstract DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) throws IOException;
330 boolean handleQuery(JmDNSImpl dns, long expirationTime) {
331 if (dns.getLocalHost().conflictWithRecord(this)) {
332 DNSRecord.Address localAddress = dns.getLocalHost().getDNSAddressRecord(this.getRecordType(), this.isUnique(), DNSConstants.DNS_TTL);
346 if (dns.isProbing() && comparison > 0) {
348 dns.getLocalHost().incrementHostName();
349 dns.getCache().clear()
    [all...]
ServiceInfoImpl.java 110 public void setDns(JmDNSImpl dns) {
111 super.setDns(dns);
858 * JmDNS callback to update a DNS record.
922 JmDNSImpl dns = this.getDns(); local
923 if (dns != null) {
924 ServiceEvent event = ((DNSRecord) rec).getServiceEvent(dns);
925 event = new ServiceEventImpl(dns, event.getType(), event.getName(), this);
926 dns.handleServiceResolved(event);
    [all...]
  /external/libppp/src/
ipcp.h 64 struct in_addr dns[2]; /* DNS addresses offered */ member in struct:ipcp::__anon9600::__anon9602
65 unsigned dns_neg : 2; /* dns negotiation */
80 struct in_addr dns[2]; /* Current DNS addresses */ member in struct:ipcp::__anon9604
bundle.c 1872 struct in_addr *dns = bundle->ncp.ipcp.ns.dns; local
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 163 // according to RFC 3280 p.34 the DNS name should be
354 // DNS name [2] that can be constructed by simply adding
357 String dns = (String) name; local
359 if (dns.equalsIgnoreCase(_dns)) {
362 return _dns.toLowerCase(Locale.US).endsWith("." + dns.toLowerCase(Locale.US));
542 * Checks the correctness of the string representation of DNS name as
549 public static void checkDNS(String dns) throws IOException {
550 String string = dns.toLowerCase(Locale.US);
558 throw new IOException("DNS name must start with a letter: " + dns);
    [all...]
  /external/wpa_supplicant_8/src/tls/
x509v3.h 41 char *dns; /* dNSName */ member in struct:x509_name
  /frameworks/base/core/java/android/net/
DnsPinger.java 43 * Performs a simple DNS "ping" by sending a "server status" query packet to the
44 * DNS server. As long as the server replies, we consider it a success.
73 //Invalidates old dns requests upon a cancel
79 * Async response packet for dns pings.
110 InetAddress dns; field in class:DnsPinger.DnsArg
114 dns = d;
145 InetAddress dnsAddress = dnsArg.dns;
165 // Send the DNS query
240 * Returns a list of DNS addresses, coming from either the link properties of the
241 * specified connection or the default system DNS if the link properties has no dnses
298 String dns = Settings.Global.getString(mContext.getContentResolver(), local
    [all...]
LinkProperties.java 35 * multiple dns servers but only one http proxy.
37 * Because it's a single network, the dns's
44 * the local network. The dns servers all return
115 public void addDns(InetAddress dns) {
116 if (dns != null) mDnses.add(dns);
161 String dns = "DnsAddresses: ["; local
162 for (InetAddress addr : mDnses) dns += addr.getHostAddress() + ",";
163 dns += "] ";
170 return ifaceName + linkAddresses + routes + dns + proxy
    [all...]
  /external/bouncycastle/bcprov/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 1167 ASN1Sequence dns; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
win32socketserver.cc 340 LOG_F(LS_INFO) << "async dns lookup (" << addr.IPAsString() << ")";
341 DnsLookup * dns = new DnsLookup; local
342 dns->handle = WSAAsyncGetHostByName(sink_->handle(), WM_DNSNOTIFY,
343 addr.IPAsString().c_str(), dns->buffer, sizeof(dns->buffer));
345 if (!dns->handle) {
347 delete dns;
353 dns->port = addr.port();
354 dns_ = dns;
  /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...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 481 String dns = mDns1View.getText().toString(); local
484 if (TextUtils.isEmpty(dns)) {
489 dnsAddr = NetworkUtils.numericToInetAddress(dns);
497 dns = mDns2View.getText().toString();
499 dnsAddr = NetworkUtils.numericToInetAddress(dns);
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 184 * used both as a refcount and for per-PID DNS selection
276 * used internally to restore DNS properties back to the
380 // read our default dns server ip
381 String dns = Settings.Global.getString(context.getContentResolver(), local
383 if (dns == null || dns.length() == 0) {
384 dns = context.getResources().getString(
388 mDefaultDns = NetworkUtils.numericToInetAddress(dns);
390 loge("Error setting defaultDns using " + dns);
    [all...]

Completed in 650 milliseconds