Searched defs:it (Results 1 - 8 of 8) sorted by relevance

/bind-9.11.3/lib/dns/
H A Drriterator.c35 dns_rriterator_init(dns_rriterator_t *it, dns_db_t *db, dns_dbversion_t *ver, argument
39 it->magic = RRITERATOR_MAGIC;
40 it->db = db;
41 it->dbit = NULL;
42 it->ver = ver;
43 it->now = now;
44 it->node = NULL;
45 result = dns_db_createiterator(it->db, 0, &it->dbit);
48 it
58 dns_rriterator_first(dns_rriterator_t *it) argument
105 dns_rriterator_nextrrset(dns_rriterator_t *it) argument
145 dns_rriterator_next(dns_rriterator_t *it) argument
161 dns_rriterator_pause(dns_rriterator_t *it) argument
167 dns_rriterator_destroy(dns_rriterator_t *it) argument
179 dns_rriterator_current(dns_rriterator_t *it, dns_name_t **name, isc_uint32_t *ttl, dns_rdataset_t **rdataset, dns_rdata_t **rdata) argument
[all...]
H A Djournal.c333 unsigned int xpos; /*%< Current position in it */
335 } it; member in struct:dns_journal
585 "creating it", j->filename);
623 * allocated buffer and then convert it into a cooked index.
656 dns_name_init(&j->it.name, NULL);
657 dns_rdata_init(&j->it.rdata);
664 isc_buffer_init(&j->it.source, NULL, 0);
665 isc_buffer_init(&j->it.target, NULL, 0);
666 dns_decompress_init(&j->it.dctx, -1, DNS_DECOMPRESS_NONE);
727 * server receiving the IXFR - it ma
[all...]
H A Dmaster.c681 genname(char *name, int it, char *buffer, size_t length) { argument
735 mode[0], it + delta);
738 it + delta);
1471 * new name is for glue and treat it as such,
1929 * expired, ignore it.
1938 * If it does not exist create new one and prepend to list
2334 * Besides, it is very unlikely that we can recover from an error
2382 * it might cause a hazardous result when "totallen"
2388 * at least one rdata (however large it is).
2536 * necessarily critical, but it ver
[all...]
H A Dcatz.c167 /* This option is always taken from config, so it's always 'default' */
407 * xxxwpk: make it a separate verification phase?
601 /* Either it's a new one or it's being reconfigured. */
1061 * We're pre-preparing the data once, we'll put it into
1062 * the right spot in the masters array once we find it.
1115 * if it exists.
1261 continue; /* xxxwpk log it or simply ignore? */
1308 * rid of it in verification phase.
1543 * DSCP value has no default, but when it i
1737 dns_dbiterator_t *it = NULL; local
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Dtimers.cpp125 struct ::itimerspec it; local
126 it.it_interval.tv_sec = 0;
127 it.it_interval.tv_nsec = 0;
128 it.it_value.tv_sec = seconds;
129 it.it_value.tv_nsec = 0;
130 if (::timer_settime(m_pimpl->m_timer, 0, &it, &m_pimpl->m_old_it) == -1) {
137 ::itimerval it; local
138 it.it_interval.tv_sec = 0;
139 it.it_interval.tv_usec = 0;
140 it
[all...]
/bind-9.11.3/lib/isc/
H A Dht.c211 isc_ht_iter_t *it; local
216 it = isc_mem_get(ht->mctx, sizeof(isc_ht_iter_t));
217 if (it == NULL)
220 it->ht = ht;
221 it->i = 0;
222 it->cur = NULL;
224 *itp = it;
231 isc_ht_iter_t *it; local
236 it = *itp;
237 ht = it
244 isc_ht_iter_first(isc_ht_iter_t *it) argument
260 isc_ht_iter_next(isc_ht_iter_t *it) argument
278 isc_ht_iter_delcurrent_next(isc_ht_iter_t *it) argument
322 isc_ht_iter_current(isc_ht_iter_t *it, void **valuep) argument
329 isc_ht_iter_currentkey(isc_ht_iter_t *it, unsigned char **key, size_t *keysize) argument
[all...]
/bind-9.11.3/bin/named/
H A Dxfrout.c305 dns_rriterator_t it; member in struct:axfr_rrstream
334 CHECK(dns_rriterator_init(&s->it, db, ver, 0));
349 result = dns_rriterator_first(&s->it);
357 dns_rriterator_current(&s->it, &name_dummy,
361 result = dns_rriterator_next(&s->it);
378 result = dns_rriterator_next(&s->it);
381 dns_rriterator_current(&s->it, &name_dummy,
394 dns_rriterator_current(&s->it, name, ttl, NULL, rdata);
400 dns_rriterator_pause(&s->it);
407 dns_rriterator_destroy(&s->it);
[all...]
H A Dserver.c157 * using it has a 'result' variable and a 'cleanup' label.
550 * If the ACL is given in an optional tuple, retrieve it.
565 * configure_view_acl() except it calls cfg_acl_fromconfig with a
961 * If bind.keys exists and is populated, it overrides
1709 * If the cache cannot even reused for the same view, it cannot be
2243 /* Is it there yet? */
2260 /* If the zone loaded partially, unload it */
2461 isc_ht_iter_t *it = NULL; local
2478 result = dns_catz_get_iterator(zone, &it);
2485 for (result = isc_ht_iter_first(it);
[all...]

Completed in 39 milliseconds