Lines Matching refs:rrset
53 CacheRRset(RRset rrset, int cred, long maxttl) { in CacheRRset() argument
54 super(rrset); in CacheRRset()
56 this.expire = limitExpire(rrset.getTTL(), maxttl); in CacheRRset()
351 addRRset(RRset rrset, int cred) { in addRRset() argument
352 long ttl = rrset.getTTL(); in addRRset()
353 Name name = rrset.getName(); in addRRset()
354 int type = rrset.getType(); in addRRset()
364 if (rrset instanceof CacheRRset) in addRRset()
365 crrset = (CacheRRset) rrset; in addRRset()
367 crrset = new CacheRRset(rrset, cred, maxcache); in addRRset()
570 markAdditional(RRset rrset, Set names) { in markAdditional() argument
571 Record first = rrset.first(); in markAdditional()
575 Iterator it = rrset.rrs(); in markAdditional()