Home
last modified time | relevance | path

Searched refs:dclass (Results 1 – 25 of 69) sorted by relevance

123

/external/smack/src/org/xbill/DNS/
DRecord.java22 protected int type, dclass; field in Record
34 Record(Name name, int type, int dclass, long ttl) { in Record() argument
38 DClass.check(dclass); in Record()
42 this.dclass = dclass; in Record()
53 getEmptyRecord(Name name, int type, int dclass, long ttl, boolean hasData) { in getEmptyRecord() argument
66 rec.dclass = dclass; in getEmptyRecord()
78 newRecord(Name name, int type, int dclass, long ttl, int length, DNSInput in) in newRecord() argument
82 rec = getEmptyRecord(name, type, dclass, ttl, in != null); in newRecord()
108 newRecord(Name name, int type, int dclass, long ttl, int length, byte [] data) { in newRecord() argument
112 DClass.check(dclass); in newRecord()
[all …]
DLookup.java41 private int dclass; field in Lookup
125 getDefaultCache(int dclass) { in getDefaultCache() argument
126 DClass.check(dclass); in getDefaultCache()
127 Cache c = (Cache) defaultCaches.get(Mnemonic.toInteger(dclass)); in getDefaultCache()
129 c = new Cache(dclass); in getDefaultCache()
130 defaultCaches.put(Mnemonic.toInteger(dclass), c); in getDefaultCache()
142 setDefaultCache(Cache cache, int dclass) { in setDefaultCache() argument
143 DClass.check(dclass); in setDefaultCache()
144 defaultCaches.put(Mnemonic.toInteger(dclass), cache); in setDefaultCache()
219 Lookup(Name name, int type, int dclass) { in Lookup() argument
[all …]
DGenerator.java32 public final int dclass; field in Generator
75 int type, int dclass, long ttl, String rdataPattern, Name origin) in Generator() argument
82 DClass.check(dclass); in Generator()
89 this.dclass = dclass; in Generator()
222 return Record.fromString(name, type, dclass, ttl, rdata, origin); in nextRecord()
237 list.add(Record.fromString(name, type, dclass, ttl, in expand()
257 if (dclass != DClass.IN || !Options.check("noPrintIN")) in toString()
258 sb.append(DClass.string(dclass) + " "); in toString()
DUpdate.java17 private int dclass; field in Update
25 Update(Name zone, int dclass) { in Update() argument
29 DClass.check(dclass); in Update()
34 this.dclass = dclass; in Update()
84 newPrereq(Record.fromString(name, type, dclass, 0, record, origin)); in present()
97 newPrereq(Record.fromString(name, type, dclass, 0, tokenizer, origin)); in present()
136 newUpdate(Record.fromString(name, type, dclass, ttl, record, origin)); in add()
146 newUpdate(Record.fromString(name, type, dclass, ttl, tokenizer, in add()
DTXTRecord.java30 TXTRecord(Name name, int dclass, long ttl, List strings) { in TXTRecord() argument
31 super(name, Type.TXT, dclass, ttl, strings); in TXTRecord()
40 TXTRecord(Name name, int dclass, long ttl, String string) { in TXTRecord() argument
41 super(name, Type.TXT, dclass, ttl, string); in TXTRecord()
DSPFRecord.java30 SPFRecord(Name name, int dclass, long ttl, List strings) { in SPFRecord() argument
31 super(name, Type.SPF, dclass, ttl, strings); in SPFRecord()
40 SPFRecord(Name name, int dclass, long ttl, String string) { in SPFRecord() argument
41 super(name, Type.SPF, dclass, ttl, string); in SPFRecord()
DTXTBase.java25 TXTBase(Name name, int type, int dclass, long ttl) { in TXTBase() argument
26 super(name, type, dclass, ttl); in TXTBase()
30 TXTBase(Name name, int type, int dclass, long ttl, List strings) { in TXTBase() argument
31 super(name, type, dclass, ttl); in TXTBase()
48 TXTBase(Name name, int type, int dclass, long ttl, String string) { in TXTBase() argument
49 this(name, type, dclass, ttl, Collections.singletonList(string)); in TXTBase()
DSingleNameBase.java24 SingleNameBase(Name name, int type, int dclass, long ttl) { in SingleNameBase() argument
25 super(name, type, dclass, ttl); in SingleNameBase()
29 SingleNameBase(Name name, int type, int dclass, long ttl, Name singleName, in SingleNameBase() argument
32 super(name, type, dclass, ttl); in SingleNameBase()
DDNSKEYRecord.java56 DNSKEYRecord(Name name, int dclass, long ttl, int flags, int proto, int alg, in DNSKEYRecord() argument
59 super(name, Type.DNSKEY, dclass, ttl, flags, proto, alg, key); in DNSKEYRecord()
72 DNSKEYRecord(Name name, int dclass, long ttl, int flags, int proto, int alg, in DNSKEYRecord() argument
75 super(name, Type.DNSKEY, dclass, ttl, flags, proto, alg, in DNSKEYRecord()
DU16NameBase.java25 U16NameBase(Name name, int type, int dclass, long ttl) { in U16NameBase() argument
26 super(name, type, dclass, ttl); in U16NameBase()
30 U16NameBase(Name name, int type, int dclass, long ttl, int u16Field, in U16NameBase() argument
33 super(name, type, dclass, ttl); in U16NameBase()
DDSRecord.java58 DSRecord(Name name, int dclass, long ttl, int footprint, int alg, in DSRecord() argument
61 super(name, Type.DS, dclass, ttl); in DSRecord()
74 DSRecord(Name name, int dclass, long ttl, int digestid, DNSKEYRecord key) in DSRecord() argument
76 this(name, dclass, ttl, key.getFootprint(), key.getAlgorithm(), in DSRecord()
DGPOSRecord.java47 GPOSRecord(Name name, int dclass, long ttl, double longitude, double latitude, in GPOSRecord() argument
50 super(name, Type.GPOS, dclass, ttl); in GPOSRecord()
65 GPOSRecord(Name name, int dclass, long ttl, String longitude, String latitude, in GPOSRecord() argument
68 super(name, Type.GPOS, dclass, ttl); in GPOSRecord()
DZoneTransferIn.java50 private int dclass; field in ZoneTransferIn
187 dclass = DClass.IN; in ZoneTransferIn()
333 setDClass(int dclass) { in setDClass() argument
334 DClass.check(dclass); in setDClass()
335 this.dclass = dclass; in setDClass()
358 Record question = Record.newRecord(zname, qtype, dclass); in sendQuery()
364 Record soa = new SOARecord(zname, dclass, 0, Name.root, in sendQuery()
487 if (type == Type.A && rec.getDClass() != dclass) in parseRR()
DInvalidDClassException.java14 InvalidDClassException(int dclass) { in InvalidDClassException() argument
15 super("Invalid DNS class: " + dclass); in InvalidDClassException()
DNSAP_PTRRecord.java28 NSAP_PTRRecord(Name name, int dclass, long ttl, Name target) { in NSAP_PTRRecord() argument
29 super(name, Type.NSAP_PTR, dclass, ttl, target, "target"); in NSAP_PTRRecord()
DPTRRecord.java28 PTRRecord(Name name, int dclass, long ttl, Name target) { in PTRRecord() argument
29 super(name, Type.PTR, dclass, ttl, target, "target"); in PTRRecord()
DMGRecord.java28 MGRecord(Name name, int dclass, long ttl, Name mailbox) { in MGRecord() argument
29 super(name, Type.MG, dclass, ttl, mailbox, "mailbox"); in MGRecord()
DMRRecord.java28 MRRecord(Name name, int dclass, long ttl, Name newName) { in MRRecord() argument
29 super(name, Type.MR, dclass, ttl, newName, "new name"); in MRRecord()
DMFRecord.java28 MFRecord(Name name, int dclass, long ttl, Name mailAgent) { in MFRecord() argument
29 super(name, Type.MF, dclass, ttl, mailAgent, "mail agent"); in MFRecord()
DNSRecord.java27 NSRecord(Name name, int dclass, long ttl, Name target) { in NSRecord() argument
28 super(name, Type.NS, dclass, ttl, target, "target"); in NSRecord()
DCNAMERecord.java27 CNAMERecord(Name name, int dclass, long ttl, Name alias) { in CNAMERecord() argument
28 super(name, Type.CNAME, dclass, ttl, alias, "alias"); in CNAMERecord()
DDNAMERecord.java27 DNAMERecord(Name name, int dclass, long ttl, Name alias) { in DNAMERecord() argument
28 super(name, Type.DNAME, dclass, ttl, alias, "alias"); in DNAMERecord()
DMDRecord.java28 MDRecord(Name name, int dclass, long ttl, Name mailAgent) { in MDRecord() argument
29 super(name, Type.MD, dclass, ttl, mailAgent, "mail agent"); in MDRecord()
DMBRecord.java27 MBRecord(Name name, int dclass, long ttl, Name mailbox) { in MBRecord() argument
28 super(name, Type.MB, dclass, ttl, mailbox, "mailbox"); in MBRecord()
DAFSDBRecord.java30 AFSDBRecord(Name name, int dclass, long ttl, int subtype, Name host) { in AFSDBRecord() argument
31 super(name, Type.AFSDB, dclass, ttl, subtype, "subtype", host, "host"); in AFSDBRecord()

123