/external/jmdns/src/javax/jmdns/impl/ |
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
|
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/mdnsresponder/ |
Android.mk | 64 LOCAL_SRC_FILES := Clients/dns-sd.c \
|
/system/netd/server/ |
Android.mk | 21 bionic/libc/dns/include \
|
/external/wpa_supplicant_8/src/tls/ |
x509v3.c | 31 os_free(name->dns); 34 name->alt_email = name->dns = name->uri = NULL; 873 os_free(name->dns); 874 name->dns = os_zalloc(len + 1); 875 if (name->dns == NULL) 877 os_memcpy(name->dns, pos, len); 878 if (os_strlen(name->dns) != len) { 881 name->dns); 882 os_free(name->dns); 883 name->dns = NULL [all...] |
/frameworks/base/core/java/android/net/ |
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/chromium_org/tools/telemetry/telemetry/core/backends/chrome/ |
cros_browser_backend.py | 43 dns=None) 144 dns=None), forwarding_flag='L')
|
chrome_browser_backend.py | 57 dns=forwarders.PortPair(53, 53)) 62 dns=None)
|
cros_interface_unittest.py | 131 https=None, dns=None))
|
android_browser_backend.py | 216 dns=forwarders.PortPair(0, 53))
|
/external/sepolicy/ |
property_contexts | 11 net.dns u:object_r:net_radio_prop:s0
|
/frameworks/base/core/java/android/os/ |
INetworkManagementService.aidl | 166 * Sets the list of DNS forwarders (in order of priority) 168 void setDnsForwarders(in Network network, in String[] dns); 171 * Returns the list of DNS forwarders (in order of priority) 312 * Bind name servers to a network in the DNS resolver. 317 * Flush the DNS cache associated with the specified network.
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
local_server.py | 77 named_port_pair_map = {'http': None, 'https': None, 'dns': None}
|
/external/smack/src/org/jivesoftware/smack/ |
ConnectionConfiguration.java | 25 import org.jivesoftware.smack.util.dns.HostAddress; 100 * A DNS SRV lookup will be performed to find out the actual host address 106 // Perform DNS lookup to get host and port to use 121 * A DNS SRV lookup will be performed to find out the actual host address 128 // Perform DNS lookup to get host and port to use 135 * service name. This is useful for manually overriding the DNS SRV lookup 140 * to the server in that case since a DNS SRV lookup for example.com would not 154 * service name. This is useful for manually overriding the DNS SRV lookup 159 * to the server in that case since a DNS SRV lookup for example.com would not 241 * might have been resolved by a DNS lookup as specified by the XMPP spec (and therefor [all...] |
XMPPConnection.java | 29 import org.jivesoftware.smack.util.dns.HostAddress; 108 * Creates a new connection to the specified XMPP server. A DNS SRV lookup will be [all...] |
/packages/apps/Settings/src/com/android/settings/wifi/ |
WifiConfigController.java | 585 String dns = mDns1View.getText().toString(); local 588 if (TextUtils.isEmpty(dns)) { 592 dnsAddr = getIPv4Address(dns); 600 dns = mDns2View.getText().toString(); 601 dnsAddr = getIPv4Address(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...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiServiceImpl.java | [all...] |
/external/smack/src/org/xbill/DNS/ |
DNSSEC.java | 3 package org.xbill.DNS; 15 * DNSSEC provides authentication for DNS information. 574 DSASignaturefromDNS(byte [] dns) throws DNSSECException, IOException { 575 if (dns.length != 1 + DSA_LEN * 2) 578 DNSInput in = new DNSInput(dns);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
RFC3280CertPathUtilities.java | 1167 ASN1Sequence dns; local [all...] |
/external/chromium_org/tools/telemetry/telemetry/core/forwarders/ |
android_forwarder.py | 77 if port_pairs.dns: 102 """Overrides DNS on device to point at the host.""" 112 """Overrides device's DNS configuration. 119 return # If there is no route, then nobody cares about DNS. 120 # DNS proxy in older versions of Android is configured via properties.
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
networkPanel.css | 228 .resource-timing-view .network-timing-bar.dns {
|
/frameworks/base/core/jni/ |
Android.mk | 181 $(TOP)/bionic/libc/dns/include \
|
/frameworks/base/services/core/java/com/android/server/ |
ConnectivityService.java | 623 // read our default dns server ip 624 String dns = Settings.Global.getString(context.getContentResolver(), local 626 if (dns == null || dns.length() == 0) { 627 dns = context.getResources().getString( 631 mDefaultDns = NetworkUtils.numericToInetAddress(dns); 633 loge("Error setting defaultDns using " + dns); [all...] |
/libcore/support/src/test/java/tests/resources/x509/ |
create.sh | 54 openssl req -config ${DIR}/default.cnf -new -key ${DIR}/privkey.pem -nodes -batch | openssl x509 -extfile ${DIR}/default.cnf -extensions alt_dns_cert -req -signkey ${DIR}/privkey.pem -outform d > ${DIR}/cert-alt-dns.der
|