OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DNSEntry
(Results
1 - 7
of
7
) sorted by null
/external/jmdns/src/javax/jmdns/impl/
DNSListener.java
27
void updateRecord(DNSCache dnsCache, long now,
DNSEntry
record);
DNSCache.java
29
*
DNSEntry
entry = i.next();
38
*
DNSEntry
entry = i.next();
45
public class DNSCache extends AbstractMap<String, List<? extends
DNSEntry
>> {
49
private transient Set<Map.Entry<String, List<? extends
DNSEntry
>>> _entrySet = null;
94
public List<
DNSEntry
> get(Object key) {
110
public Collection<List<? extends
DNSEntry
>> values() {
118
public Set<Map.Entry<String, List<? extends
DNSEntry
>>> entrySet() {
134
public List<? extends
DNSEntry
> put(String key, List<? extends
DNSEntry
> value) {
151
protected static class _CacheEntry extends Object implements Map.Entry<String, List<? extends
DNSEntry
>> {
[
all
...]
DNSEntry.java
22
public abstract class
DNSEntry
{
23
// private static Logger logger = Logger.getLogger(
DNSEntry
.class.getName());
41
DNSEntry
(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
63
if (obj instanceof
DNSEntry
) {
64
DNSEntry
other = (
DNSEntry
) obj;
76
public boolean isSameEntry(
DNSEntry
entry) {
86
public boolean sameSubtype(
DNSEntry
other) {
204
public boolean isSameRecordClass(
DNSEntry
entry) {
214
public boolean isSameType(
DNSEntry
entry)
[
all
...]
DNSQuestion.java
24
public class DNSQuestion extends
DNSEntry
{
188
public boolean isSameType(
DNSEntry
entry) {
262
boolean answeredBy(
DNSEntry
rec) {
292
* @see javax.jmdns.impl.
DNSEntry
#isStale(long)
301
* @see javax.jmdns.impl.
DNSEntry
#isExpired(long)
321
* @see javax.jmdns.impl.
DNSEntry
#toString(java.lang.StringBuilder)
JmDNSImpl.java
88
* Cache for
DNSEntry
's.
759
DNSEntry
pointerEntry = this.getCache().getDNSEntry(new DNSRecord.Pointer(type, DNSRecordClass.CLASS_ANY, false, 0, info.getQualifiedName()));
768
DNSEntry
serviceEntry = this.getCache().getDNSEntry(info.getQualifiedName(), DNSRecordType.TYPE_SRV, DNSRecordClass.CLASS_ANY);
777
DNSEntry
addressEntry = this.getCache().getDNSEntry(server, DNSRecordType.TYPE_A, DNSRecordClass.CLASS_ANY);
797
DNSEntry
textEntry = this.getCache().getDNSEntry(cachedInfo.getQualifiedName(), DNSRecordType.TYPE_TXT, DNSRecordClass.CLASS_ANY);
[
all
...]
ServiceInfoImpl.java
865
public void updateRecord(DNSCache dnsCache, long now,
DNSEntry
rec) {
892
for (
DNSEntry
entry : dnsCache.getDNSEntryList(_server, DNSRecordType.TYPE_A, DNSRecordClass.CLASS_IN)) {
895
for (
DNSEntry
entry : dnsCache.getDNSEntryList(_server, DNSRecordType.TYPE_AAAA, DNSRecordClass.CLASS_IN)) {
[
all
...]
DNSRecord.java
32
public abstract class DNSRecord extends
DNSEntry
{
53
* @see javax.jmdns.impl.
DNSEntry
#equals(java.lang.Object)
136
* @see javax.jmdns.impl.
DNSEntry
#isExpired(long)
145
* @see javax.jmdns.impl.
DNSEntry
#isStale(long)
436
* @see javax.jmdns.impl.
DNSEntry
#isSameEntry(javax.jmdns.impl.
DNSEntry
)
439
public boolean isSameEntry(
DNSEntry
entry) {
[
all
...]
Completed in 40 milliseconds