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

1 2

  /external/mdnsresponder/Clients/
Makefile 29 TARGETS = build/dns-sd build/dns-sd64
32 TARGETS = build/dns-sd
44 build/dns-sd: build dns-sd.c ClientCommon.c
47 build/dns-sd64: build dns-sd.c ClientCommon.c
50 # Note, we can make a 'fat' version of dns-sd using 'lipo', as shown below, but we
51 # don't, because we don't want or need a 'fat' version of dns-sd, because it will
54 # lipo -create dns-sd dns-sd64 -output dns-sd-fa
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
udhcpd-p2p.conf 82 # as the dns option, they can be listed on the same line, or multiple
86 opt dns 192.168.2.1
98 #opt dns
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 77 private final FakeDns dns = new FakeDns(); field in class:RouteSelectorTest
97 Internal.instance.setNetwork(client, dns);
114 dns.inetAddresses = makeFakeAddresses(255, 1);
115 assertRoute(routeSelector.next(), address, NO_PROXY, dns.inetAddresses[0], uriPort);
116 dns.assertRequests(uriHost);
131 dns.inetAddresses = makeFakeAddresses(255, 1);
135 assertRoute(routeSelector.next(), address, NO_PROXY, dns.inetAddresses[0], uriPort);
151 dns.inetAddresses = makeFakeAddresses(255, 2);
152 assertRoute(routeSelector.next(), address, proxyA, dns.inetAddresses[0], proxyAPort);
153 assertRoute(routeSelector.next(), address, proxyA, dns.inetAddresses[1], proxyAPort)
    [all...]
  /external/dhcpcd/dhcpcd-hooks/
20-dns.conf 2 # DNS server addresses given by the DHCP server.
19 setprop dhcp.${intf}.dns${i} ""
24 setprop dhcp.${intf}.dns${count} ${dnsaddr}
42 setprop dhcp.${intf}.dns${i} ""
  /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...]
HostInfo.java 48 * @param dns
50 public HostInfoState(JmDNSImpl dns) {
52 this.setDns(dns);
60 * @param dns
66 public static HostInfo newHostInfo(InetAddress address, JmDNSImpl dns, String jmdnsName) {
104 localhost = new HostInfo(addr, aName, dns);
121 private HostInfo(final InetAddress address, final String name, final JmDNSImpl dns) {
123 this._state = new HostInfoState(dns);
DNSStatefulObject.java 136 protected void setDns(JmDNSImpl dns) {
137 this._dns = dns;
412 return (_dns != null ? "DNS: " + _dns.getName() : "NO DNS") + " state: " + _state + " task: " + _task;
418 * Returns the DNS associated with this object.
420 * @return DNS resolver
  /system/core/include/netutils/
dhcp.h 32 char *dns[],
  /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...]
StaticIpConfiguration.java 113 for (InetAddress dns : dnsServers) {
114 lp.addDnsServer(dns);
129 str.append(" DNS servers: [");
  /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...]
JmDNS.java 30 * @param dns
31 * target DNS
33 * service info registered with the DNS
35 public void cannotRecoverFromIOError(JmDNS dns, Collection<ServiceInfo> infos);
339 * This is support for shared records that can be rescued by some other cooperation DNS.
342 * Clients receiving a Multicast DNS Response with a TTL of zero SHOULD NOT immediately delete the record from the cache, but instead record a TTL of 1 and then delete the record one second later.
  /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)
1039 String dns = extractNameAsString(((GeneralSubtree)it.next()) local
    [all...]
  /frameworks/base/native/android/
Android.mk 39 bionic/libc/dns/include \
  /system/core/libnetutils/
dhcp_utils.c 93 char *dns[],
146 for (x=0; dns[x] != NULL; x++) {
147 snprintf(prop_name, sizeof(prop_name), "%s.%s.dns%d", DHCP_PROP_NAME_PREFIX, p2p_interface, x+1);
148 property_get(prop_name, dns[x], NULL);
178 char *dns[],
201 if (fill_ip_info(interface, ipaddr, gateway, prefixLength, dns,
  /external/android-clat/
Android.mk 7 LOCAL_C_INCLUDES := external/libnl/include bionic/libc/dns/include
  /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...]
  /system/netd/client/
Android.mk 19 LOCAL_C_INCLUDES := bionic/libc/dns/include system/netd/include
  /build/target/product/
base.mk 19 20-dns.conf \
  /external/wpa_supplicant_8/src/tls/
x509v3.h 41 char *dns; /* dNSName */ member in struct:x509_name
  /external/boringssl/src/crypto/x509v3/
v3_ncons.c 81 static int nc_dns(ASN1_IA5STRING *sub, ASN1_IA5STRING *dns);
395 static int nc_dns(ASN1_IA5STRING *dns, ASN1_IA5STRING *base)
398 char *dnsptr = (char *)dns->data;
403 * compare RHS and if dns is longer and expect '.' as preceding
406 if (dns->length > base->length)
408 dnsptr += dns->length - base->length;
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 49 const char *dns[],
109 const char *dns[5] = {dns1, dns2, dns3, dns4, NULL}; local
120 dns, server, &lease, vendorInfo, domains, mtu);
  /external/dhcpcd/
Android.mk 43 LOCAL_MODULE := 20-dns.conf
  /external/mdnsresponder/
Android.mk 86 LOCAL_SRC_FILES := Clients/dns-sd.c Clients/ClientCommon.c
  /external/openssh/contrib/cygwin/
Makefile 48 -$(INSTALL) -m 644 $(srcdir)/README.dns $(DESTDIR)$(sshdocdir)/README.dns

Completed in 441 milliseconds

1 2