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

1 2

  /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...]
  /frameworks/compile/mclinker/include/mcld/LD/
EhFrame.h 68 virtual RecordType getRecordType() const { return RECORD_UNKNOWN; }
84 virtual RecordType getRecordType() const { return RECORD_INPUT; }
156 virtual RecordType getRecordType() const { return RECORD_GENERATED; }
165 virtual RecordType getRecordType() const { return RECORD_GENERATED; }
  /external/clang/lib/AST/
APValue.cpp 448 ElemTy = Ctx.getRecordType(RD);
ASTContext.cpp     [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 304 QualType DerivedTy = getContext().getRecordType(Derived);
    [all...]
CGDebugInfo.cpp 694 if (llvm::DIType *T = getTypeOrNull(CGM.getContext().getRecordType(RD)))
    [all...]
CGOpenMPRuntime.cpp     [all...]
CGExprCXX.cpp 45 CallLoc, This, CGF.getContext().getRecordType(MD->getParent()));
    [all...]
CGStmt.cpp     [all...]
CGStmtOpenMP.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 149 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(MD->getParent()));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 541 QualType Ty = Ctx.getPointerType(Ctx.getRecordType(Class));
    [all...]
  /frameworks/compile/mclinker/lib/LD/
ELFObjectWriter.cpp 414 if (fde.getRecordType() == EhFrame::RECORD_GENERATED) {
  /external/clang/include/clang/AST/
ASTContext.h     [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]
SemaLookup.cpp     [all...]
SemaDeclAttr.cpp 402 static const RecordType *getRecordType(QualType QT) {
414 const RecordType *RT = getRecordType(Ty);
540 const RecordType *RT = getRecordType(ArgTy);
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]

Completed in 285 milliseconds

1 2