Searched refs:stop (Results 1 - 13 of 13) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/include/dns/
H A Dzt.h133 dns_zt_load(dns_zt_t *zt, isc_boolean_t stop);
136 dns_zt_loadnew(dns_zt_t *zt, isc_boolean_t stop);
138 * Load all zones in the table. If 'stop' is ISC_TRUE,
139 * stop on the first error and return it. If 'stop'
159 dns_zt_apply(dns_zt_t *zt, isc_boolean_t stop,
163 dns_zt_apply2(dns_zt_t *zt, isc_boolean_t stop, isc_result_t *sub,
167 * If 'stop' is 'ISC_TRUE' then walking the zone tree will stop if
175 * \li ISC_R_SUCCESS if action was applied to all nodes. If 'stop' i
[all...]
H A Dview.h636 dns_view_load(dns_view_t *view, isc_boolean_t stop);
639 dns_view_loadnew(dns_view_t *view, isc_boolean_t stop);
646 * If 'stop' is ISC_TRUE, stop on the first error and return it.
647 * If 'stop' is ISC_FALSE, ignore errors.
/bind-9.6-ESV-R11/bin/tests/
H A Dentropy2_test.c75 stop(isc_entropysource_t *source, void *arg) { function
83 printf("stop called\n");
144 result = isc_entropy_createcallbacksource(ent, start, get, stop, &kbd,
/bind-9.6-ESV-R11/lib/dns/
H A Dzt.c231 dns_zt_load(dns_zt_t *zt, isc_boolean_t stop) { argument
237 result = dns_zt_apply(zt, stop, load, NULL);
253 dns_zt_loadnew(dns_zt_t *zt, isc_boolean_t stop) { argument
259 result = dns_zt_apply(zt, stop, loadnew, NULL);
347 dns_zt_apply(dns_zt_t *zt, isc_boolean_t stop, argument
350 return (dns_zt_apply2(zt, stop, NULL, action, uap));
354 dns_zt_apply2(dns_zt_t *zt, isc_boolean_t stop, isc_result_t *sub, argument
380 if (result != ISC_R_SUCCESS && stop) {
H A Dview.c1240 dns_view_load(dns_view_t *view, isc_boolean_t stop) { argument
1245 return (dns_zt_load(view->zonetable, stop));
1249 dns_view_loadnew(dns_view_t *view, isc_boolean_t stop) { argument
1254 return (dns_zt_loadnew(view->zonetable, stop));
H A Dmaster.c742 unsigned int start, stop, step, i; local
760 n = sscanf(range, "%u-%u/%u", &start, &stop, &step);
761 if (n < 2 || stop < start) {
808 for (i = start; i <= stop; i += step) {
H A Dzone.c4037 isc_stdtime_t now, inception, soaexpire, expire, stop; local
4089 stop = now + 5;
4114 resign > stop) {
/bind-9.6-ESV-R11/lib/isc/include/isc/
H A Dentropy.h170 * If we hit end-of-file, we will stop reading from this source. Callers
193 isc_entropystop_t stop,
211 * \brief Call the stop functions for callback sources that have had their
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dparser.hpp445 parser< TKZ >::reset(const token_type& stop) argument
449 while (t.type() != m_tkz.m_eof_type && t.type() != stop)
/bind-9.6-ESV-R11/contrib/zkt/
H A Dmisc.c986 time_t stop = time (NULL); local
988 return stop - start;
/bind-9.6-ESV-R11/contrib/queryperf/
H A Dqueryperf.c1085 * Should we keep sending queries or stop here?
1088 * Return FALSE if we should stop
1097 static int stop = FALSE; local
1099 if (stop == TRUE)
1114 stop = TRUE;
/bind-9.6-ESV-R11/lib/isc/
H A Dentropy.c860 isc_entropystop_t stop,
890 cbs->stopfunc = stop;
1186 fprintf(stderr, "stop typing.\r\n");
857 isc_entropy_createcallbacksource(isc_entropy_t *ent, isc_entropystart_t start, isc_entropyget_t get, isc_entropystop_t stop, void *arg, isc_entropysource_t **sourcep) argument
/bind-9.6-ESV-R11/bin/named/
H A Dserver.c4124 load_zones(ns_server_t *server, isc_boolean_t stop) { argument
4138 CHECK(dns_view_load(view, stop));
4153 load_new_zones(ns_server_t *server, isc_boolean_t stop) { argument
4167 CHECK(dns_view_loadnew(view, stop));

Completed in 1192 milliseconds