Home
last modified time | relevance | path

Searched refs:sameValue (Results 1 – 3 of 3) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java57 return (other instanceof DNSRecord) && super.equals(other) && sameValue((DNSRecord) other); in equals()
63 abstract boolean sameValue(DNSRecord other); in sameValue() method in DNSRecord
286 return ((sameName(other)) && ((sameValue(other)))); in same()
294 boolean sameValue(DNSRecord other) { in sameValue() method in DNSRecord.Address
440 … return super.isSameEntry(entry) && (entry instanceof Pointer) && this.sameValue((Pointer) entry); in isSameEntry()
449 boolean sameValue(DNSRecord other) { in sameValue() method in DNSRecord.Pointer
558 boolean sameValue(DNSRecord other) { in sameValue() method in DNSRecord.Text
710 boolean sameValue(DNSRecord other) { in sameValue() method in DNSRecord.Service
898 boolean sameValue(DNSRecord other) { in sameValue() method in DNSRecord.HostInformation
DHostInfo.java164 …n hostAddress.sameType(record) && hostAddress.sameName(record) && (!hostAddress.sameValue(record)); in conflictWithRecord()
DJmDNSImpl.java1363 …if (!newRecord.sameValue(cachedRecord) || (!newRecord.sameSubtype(cachedRecord) && (newRecord.getS… in handleRecord()