HomeSort by relevance Sort by last modified time
    Searched refs:getRecordType (Results 1 - 20 of 20) sorted by null

  /external/jmdns/src/javax/jmdns/impl/
DNSEntry.java 65 result = this.getKey().equals(other.getKey()) && this.getRecordType().equals(other.getRecordType()) && this.getRecordClass() == other.getRecordClass();
77 return this.getKey().equals(entry.getKey()) && this.getRecordType().equals(entry.getRecordType()) && ((DNSRecordClass.CLASS_ANY == entry.getRecordClass()) || this.getRecordClass().equals(entry.getRecordClass()));
128 public DNSRecordType getRecordType() {
215 return (entry != null) && (entry.getRecordType() == this.getRecordType());
224 dout.writeShort(this.getRecordType().indexValue());
269 return this.getKey().hashCode() + this.getRecordType().indexValue() + this.getRecordClass().indexValue();
280 aLog.append(" type: " + this.getRecordType());
    [all...]
DNSQuestion.java 37 DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL);
61 DNSRecord answer = jmDNSImpl.getLocalHost().getDNSAddressRecord(this.getRecordType(), DNSRecordClass.UNIQUE, DNSConstants.DNS_TTL);
DNSCache.java 412 if (testDNSEntry.getRecordType().equals(type) && ((DNSRecordClass.CLASS_ANY == recordClass) || testDNSEntry.getRecordClass().equals(recordClass))) {
435 if (!testDNSEntry.getRecordType().equals(type) || ((DNSRecordClass.CLASS_ANY != recordClass) && !testDNSEntry.getRecordClass().equals(recordClass))) {
DNSOutgoing.java 150 writeShort(question.getRecordType().indexValue());
156 writeShort(rec.getRecordType().indexValue());
JmDNSImpl.java     [all...]
HostInfo.java 162 DNSRecord.Address hostAddress = this.getDNSAddressRecord(record.getRecordType(), record.isUnique(), DNSConstants.DNS_TTL);
DNSRecord.java 69 return this.getRecordType() == other.getRecordType();
332 DNSRecord.Address localAddress = dns.getLocalHost().getDNSAddressRecord(this.getRecordType(), this.isUnique(), DNSConstants.DNS_TTL);
    [all...]
ServiceInfoImpl.java 868 switch (rec.getRecordType()) {
    [all...]
  /external/clang/lib/AST/
APValue.cpp 406 ElemTy = Ctx.getRecordType(RD);
ASTContext.cpp     [all...]
ExprConstant.cpp     [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp     [all...]
CGBlocks.cpp 311 thisType = C.getPointerType(C.getRecordType(RD));
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 811 QualType getRecordType(const RecordDecl *Decl) const;
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp 262 static const RecordType *getRecordType(QualType QT) {
277 const RecordType *RT = getRecordType(Ty);
318 const RecordType *RT = getRecordType(ArgTy);
479 const RecordType *RT = getRecordType(QT);
    [all...]
SemaLookup.cpp     [all...]
SemaDeclCXX.cpp     [all...]
SemaExprCXX.cpp 683 S.Context.getRecordType(Record).withCVRQualifiers(CXXThisTypeQuals));
    [all...]
TreeTransform.h     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 945 milliseconds