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

  /external/smack/src/org/xbill/DNS/
SetResponse.java 68 SetResponse(int type, RRset rrset) {
72 this.data = rrset;
105 addRRset(RRset rrset) {
109 l.add(rrset);
155 public RRset []
160 return (RRset []) l.toArray(new RRset[l.size()]);
168 return (CNAMERecord)((RRset)data).first()
    [all...]
Zone.java 29 private RRset NS;
35 private RRset [] current;
44 RRset [] sets = allRRsets(originNode);
45 current = new RRset[sets.length];
78 RRset [] sets = allRRsets(entry.getValue());
101 RRset rrset = oneRRset(originNode, Type.SOA); local
102 if (rrset == null || rrset.size() != 1)
105 Iterator it = rrset.rrs()
335 RRset rrset; local
473 RRset rrset = findRRset(name, rtype); local
493 RRset rrset = findRRset(name, rtype); local
525 RRset rrset = sets[i]; local
    [all...]
RRset.java 17 public class RRset implements Serializable {
29 /** Creates an empty RRset */
31 RRset() {
37 /** Creates an RRset and sets its contents to the specified record */
39 RRset(Record record) {
44 /** Creates an RRset with the contents of an existing RRset */
46 RRset(RRset rrset) {
    [all...]
Message.java 54 private static RRset [] emptyRRsetArray = new RRset[0];
219 * Determines if an RRset with the given name and type is already
221 * @see RRset
237 * Determines if an RRset with the given name and type is already
239 * @see RRset
351 * @see RRset
354 public RRset []
366 RRset set = (RRset) sets.get(j)
    [all...]
Cache.java 11 * avoid repeated failed DNS queries. The credibility of each RRset is
14 * @see RRset
38 private static class CacheRRset extends RRset implements Element {
53 CacheRRset(RRset rrset, int cred, long maxttl) {
54 super(rrset);
56 this.expire = limitExpire(rrset.getTTL(), maxttl);
345 * Adds an RRset to the Cache.
346 * @param rrset The RRset to be adde
    [all...]
Update.java 66 * Inserts a prerequisite that the specified rrset exists; that is, there
121 * Inserts a prerequisite that the specified rrset does not exist; that is,
168 * Indicates that all of the records in the rrset should be inserted into the
172 add(RRset rrset) {
173 for (Iterator it = rrset.rrs(); it.hasNext(); )
235 * Indicates that all of the records in the rrset should be deleted from the
239 delete(RRset rrset) {
240 for (Iterator it = rrset.rrs(); it.hasNext();
    [all...]
DNSSEC.java 18 * @see RRset
128 * @param rrsig The RRSIG record used to sign/verify the rrset.
129 * @param rrset The data to be signed/verified.
133 digestRRset(RRSIGRecord rrsig, RRset rrset) {
137 int size = rrset.size();
140 Iterator it = rrset.rrs();
141 Name name = rrset.getName();
155 header.writeU16(rrset.getType());
156 header.writeU16(rrset.getDClass())
    [all...]
Lookup.java 408 RRset [] rrsets = response.answers();

Completed in 436 milliseconds