/bind-9.11.3/lib/dns/include/dns/ |
H A D | zt.h | 139 dns_zt_load(dns_zt_t *zt, isc_boolean_t stop); 142 dns_zt_loadnew(dns_zt_t *zt, isc_boolean_t stop); 147 * Load all zones in the table. If 'stop' is ISC_TRUE, 148 * stop on the first error and return it. If 'stop' 172 dns_zt_apply(dns_zt_t *zt, isc_boolean_t stop, 176 dns_zt_apply2(dns_zt_t *zt, isc_boolean_t stop, isc_result_t *sub, 180 * If 'stop' is 'ISC_TRUE' then walking the zone tree will stop if 188 * \li ISC_R_SUCCESS if action was applied to all nodes. If 'stop' i [all...] |
H A D | view.h | 798 dns_view_load(dns_view_t *view, isc_boolean_t stop); 801 dns_view_loadnew(dns_view_t *view, isc_boolean_t stop); 815 * If 'stop' is ISC_TRUE, stop on the first error and return it. 816 * If 'stop' is ISC_FALSE (or we are loading asynchronously), ignore errors.
|
/bind-9.11.3/lib/dns/ |
H A D | zt.c | 243 dns_zt_load(dns_zt_t *zt, isc_boolean_t stop) { argument 249 result = dns_zt_apply(zt, stop, load, NULL); 322 dns_zt_loadnew(dns_zt_t *zt, isc_boolean_t stop) { argument 328 result = dns_zt_apply(zt, stop, loadnew, NULL); 475 dns_zt_apply(dns_zt_t *zt, isc_boolean_t stop, argument 478 return (dns_zt_apply2(zt, stop, NULL, action, uap)); 482 dns_zt_apply2(dns_zt_t *zt, isc_boolean_t stop, isc_result_t *sub, argument 509 if (result != ISC_R_SUCCESS && stop) {
|
H A D | view.c | 1087 * static-stub zone we stop the search here 1532 dns_view_load(dns_view_t *view, isc_boolean_t stop) { argument 1537 return (dns_zt_load(view->zonetable, stop)); 1541 dns_view_loadnew(dns_view_t *view, isc_boolean_t stop) { argument 1546 return (dns_zt_loadnew(view->zonetable, stop));
|
H A D | master.c | 791 int i, n, start, stop, step = 0; local 810 n = sscanf(range, "%d-%d%1[/]%d", &start, &stop, dummy, &step); 811 if ((n != 2 && n != 4) || (start < 0) || (stop < 0) || 812 (n == 4 && step < 1) || (stop < start)) 852 for (i = start; i <= stop; i += step) {
|
H A D | zone.c | 2217 /* If we already have a load pending, stop now */ 6449 isc_stdtime_t now, inception, soaexpire, expire, stop; local 6505 stop = now + 5; 6531 resign > stop)
|
/bind-9.11.3/bin/tests/ |
H A D | entropy2_test.c | 67 stop(isc_entropysource_t *source, void *arg) { function 75 printf("stop called\n"); 136 result = isc_entropy_createcallbacksource(ent, start, get, stop, &kbd,
|
/bind-9.11.3/lib/isc/include/isc/ |
H A D | entropy.h | 161 * If we hit end-of-file, we will stop reading from this source. Callers 184 isc_entropystop_t stop, 202 * \brief Call the stop functions for callback sources that have had their
|
/bind-9.11.3/unit/atf-src/tools/ |
H A D | parser.hpp | 445 parser< TKZ >::reset(const token_type& stop) argument 449 while (t.type() != m_tkz.m_eof_type && t.type() != stop)
|
/bind-9.11.3/contrib/queryperf/ |
H A D | queryperf.c | 1085 * 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.11.3/lib/isc/ |
H A D | entropy.c | 864 isc_entropystop_t stop, 894 cbs->stopfunc = stop; 1190 fprintf(stderr, "stop typing.\r\n"); 861 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
|