Home | History | Annotate | Download | only in DNS

Lines Matching refs:RRset

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(); )
290 * Indicates that all of the records in the rrset should be inserted into the
294 replace(RRset rrset) {
295 delete(rrset.getName(), rrset.getType());
296 for (Iterator it = rrset.rrs(); it.hasNext(); )