OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DNSCache
(Results
1 - 4
of
4
) sorted by null
/external/jmdns/src/javax/jmdns/impl/
DNSListener.java
20
* @param
dnsCache
27
void updateRecord(
DNSCache
dnsCache
, long now, DNSEntry record);
DNSCache.java
28
* for (Iterator i=
dnscache
.allValues().iterator(); i.hasNext(); ) {
37
* for (Iterator i=
dnscache
.getDNSEntryList(name).iterator(); i.hasNext(); ) {
45
public class
DNSCache
extends AbstractMap<String, List<? extends DNSEntry>> {
47
// private static Logger logger = Logger.getLogger(
DNSCache
.class.getName());
54
public static final
DNSCache
EmptyCache = new _EmptyCache();
56
static final class _EmptyCache extends
DNSCache
{
256
public
DNSCache
() {
263
public
DNSCache
(
DNSCache
map) {
275
public
DNSCache
(int initialCapacity)
[
all
...]
JmDNSImpl.java
90
private final
DNSCache
_cache;
397
_cache = new
DNSCache
(100);
656
* Return the
DNSCache
associated with the cache variable
660
public
DNSCache
getCache() {
[
all
...]
ServiceInfoImpl.java
860
* @param
dnsCache
865
public void updateRecord(
DNSCache
dnsCache
, long now, DNSEntry rec) {
892
for (DNSEntry entry :
dnsCache
.getDNSEntryList(_server, DNSRecordType.TYPE_A, DNSRecordClass.CLASS_IN)) {
893
this.updateRecord(
dnsCache
, now, entry);
895
for (DNSEntry entry :
dnsCache
.getDNSEntryList(_server, DNSRecordType.TYPE_AAAA, DNSRecordClass.CLASS_IN)) {
896
this.updateRecord(
dnsCache
, now, entry);
[
all
...]
Completed in 71 milliseconds