Home | History | Annotate | Download | only in DNS

Lines Matching full:tokenizer

88  * Parses a record from the tokenizer, and inserts a prerequisite that the
96 present(Name name, int type, Tokenizer tokenizer) throws IOException {
97 newPrereq(Record.fromString(name, type, dclass, 0, tokenizer, origin));
140 * Parses a record from the tokenizer, and indicates that the record
145 add(Name name, int type, long ttl, Tokenizer tokenizer) throws IOException {
146 newUpdate(Record.fromString(name, type, dclass, ttl, tokenizer,
207 * Parses a record from the tokenizer, and indicates that the record
212 delete(Name name, int type, Tokenizer tokenizer) throws IOException {
213 newUpdate(Record.fromString(name, type, DClass.NONE, 0, tokenizer,
257 * Parses a record from the tokenizer, and indicates that the record
263 replace(Name name, int type, long ttl, Tokenizer tokenizer) throws IOException
266 add(name, type, ttl, tokenizer);