Home
last modified time | relevance | path

Searched refs:getRecordClass (Results 1 – 5 of 5) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
DDNSEntry.java65 …s.getRecordType().equals(other.getRecordType()) && this.getRecordClass() == other.getRecordClass(); in equals()
77 …) && ((DNSRecordClass.CLASS_ANY == entry.getRecordClass()) || this.getRecordClass().equals(entry.g… in isSameEntry()
135 public DNSRecordClass getRecordClass() { in getRecordClass() method in DNSEntry
205 return (entry != null) && (entry.getRecordClass() == this.getRecordClass()); in isSameRecordClass()
225 dout.writeShort(this.getRecordClass().indexValue()); in toByteArray()
269 …return this.getKey().hashCode() + this.getRecordType().indexValue() + this.getRecordClass().indexV… in hashCode()
281 aLog.append(", class: " + this.getRecordClass()); in toString()
DDNSQuestion.java142 … question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUniq… in addAnswers()
203 … question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUniq… in addAnswers()
DDNSOutgoing.java151 writeShort(question.getRecordClass().indexValue()); in writeQuestion()
157 …writeShort(rec.getRecordClass().indexValue() | ((rec.isUnique() && _out.isMulticast()) ? DNSRecord… in writeRecord()
DDNSCache.java412 …(type) && ((DNSRecordClass.CLASS_ANY == recordClass) || testDNSEntry.getRecordClass().equals(recor… in getDNSEntry()
435 …type) || ((DNSRecordClass.CLASS_ANY != recordClass) && !testDNSEntry.getRecordClass().equals(recor… in getDNSEntryList()
DJmDNSImpl.java1345 …cordType().equals(entry.getRecordType()) && newRecord.getRecordClass().equals(entry.getRecordClass in handleRecord()