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

  /external/smack/src/org/jivesoftware/smack/util/dns/
DNSResolver.java 16 package org.jivesoftware.smack.util.dns;
21 * Implementations of this interface define a class that is capable of resolving DNS addresses.
SRVRecord.java 16 package org.jivesoftware.smack.util.dns;
19 * @see <a href="http://tools.ietf.org/html/rfc2782>RFC 2782: A DNS RR for specifying the location of services (DNS
42 "DNS SRV records weight must be a 16-bit unsiged integer (i.e. between 0-65535. Weight was: "
47 "DNS SRV records priority must be a 16-bit unsiged integer (i.e. between 0-65535. Priority was: "
DNSJavaResolver.java 16 package org.jivesoftware.smack.util.dns;
21 import org.xbill.DNS.Lookup;
22 import org.xbill.DNS.Record;
23 import org.xbill.DNS.Type;
26 * This implementation uses the <a href="http://www.dnsjava.org/">dnsjava</a> implementation for resolving DNS addresses.
52 org.xbill.DNS.SRVRecord srvRecord = (org.xbill.DNS.SRVRecord) record;
HostAddress.java 16 package org.jivesoftware.smack.util.dns;
53 "DNS SRV records weight must be a 16-bit unsiged integer (i.e. between 0-65535. Port was: " + port);
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
HAREntry.js 132 // Order of events: request_start = 0, [proxy], [dns], [connect [ssl]], [send], receive_headers_end
137 return {blocked: -1, dns: -1, connect: -1, send: 0, wait: 0, receive: 0, ssl: -1};
150 var dns = -1; variable
152 dns = firstNonNegative([timing.connectStart, timing.sendStart]) - timing.dnsStart;
166 return {blocked: blocked, dns: dns, connect: connect, send: send, wait: wait, receive: receive, ssl: ssl};
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 38 const char *dns[],
49 const char *dns[],
107 const char *dns[5] = {dns1, dns2, dns3, dns4, NULL}; local
119 dns, server, &lease, vendorInfo, domains, mtu);
122 dns, server, &lease, vendorInfo, domains, mtu);
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralName.java 165 // according to RFC 3280 p.34 the DNS name should be
352 // DNS name [2] that can be constructed by simply adding
355 String dns = (String) name; local
357 if (dns.equalsIgnoreCase(_dns)) {
360 return _dns.toLowerCase(Locale.US).endsWith("." + dns.toLowerCase(Locale.US));
554 * Checks the correctness of the string representation of DNS name as
561 public static void checkDNS(String dns) throws IOException {
562 String string = dns.toLowerCase(Locale.US);
570 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 42 * multiple dns servers but only one http proxy and one
275 * Adds the given {@link InetAddress} to the list of DNS servers, if not present.
277 * @param dnsServer The {@link InetAddress} to add to the list of DNS servers.
278 * @return true if the DNS server was added, false if it was already present.
290 * Replaces the DNS servers in this {@code LinkProperties} with
293 * @param addresses The {@link Collection} of DNS servers to set in this object.
304 * Returns all the {@link InetAddress} for DNS servers on this link.
306 * @return An umodifiable {@link List} of {@link InetAddress} for DNS servers on
314 * Sets the DNS domain search path used on this link.
325 * Get the DNS domains search path set for this link
557 String dns = "DnsAddresses: ["; local
    [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_org/third_party/webrtc/base/
win32socketserver.cc 326 LOG_F(LS_INFO) << "async dns lookup (" << addr.hostname() << ")";
327 DnsLookup * dns = new DnsLookup; local
334 dns->handle = WSAAsyncGetHostByName(sink_->handle(), WM_DNSNOTIFY,
335 addr.hostname().c_str(), dns->buffer,
336 sizeof(dns->buffer));
338 if (!dns->handle) {
340 delete dns;
346 dns->port = addr.port();
347 dns_ = dns;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 83 private final FakeDns dns = new FakeDns(); field in class:RouteSelectorTest
89 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
93 dns.inetAddresses = makeFakeAddresses(255, 1);
94 assertConnection(routeSelector.next("GET"), address, NO_PROXY, dns.inetAddresses[0], uriPort,
96 dns.assertRequests(uriHost);
109 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
113 dns.inetAddresses = makeFakeAddresses(255, 1);
117 routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns, routeDatabase);
118 assertConnection(routeSelector.next("GET"), address, NO_PROXY, dns.inetAddresses[0], uriPort,
131 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
    [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...]
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api_browsertest.cc 182 DownloadsNotificationSource* dns = variable
185 dns->profile,
186 dns->event_name,
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 588 String dns = mDns1View.getText().toString(); local
591 if (TextUtils.isEmpty(dns)) {
595 dnsAddr = getIPv4Address(dns);
603 dns = mDns2View.getText().toString();
604 dnsAddr = getIPv4Address(dns);
    [all...]
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java 616 // read our default dns server ip
617 String dns = Settings.Global.getString(context.getContentResolver(), local
619 if (dns == null || dns.length() == 0) {
620 dns = context.getResources().getString(
624 mDefaultDns = NetworkUtils.numericToInetAddress(dns);
626 loge("Error setting defaultDns using " + dns);
    [all...]
  /external/qemu/qapi-auto-generated/
qapi-types.h 2626 char * dns; member in struct:NetdevUserOptions
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 857 milliseconds