| /src/external/bsd/nsd/dist/ |
| options.c | 441 /* insert free entry into zonelist free buckets */ 531 /* zonelist looks like this: 543 opt->zonelist = NULL; 547 /* try to open the zonelist file, an empty or nonexist file is OK */ 548 opt->zonelist = fopen(opt->zonelistfile, "r+"); 549 if(!opt->zonelist) { 558 if(fread(hdr, 1, strlen(ZONELIST_HEADER), opt->zonelist) != 562 fclose(opt->zonelist); 563 opt->zonelist = NULL; 569 while(fgets(buf, sizeof(buf), opt->zonelist)) { [all...] |
| options.h | 57 /* free space in zonelist file, contains zonelist_bucket */ 59 /* number of free space lines in zonelist file */ 61 /* zonelist file if open */ 62 FILE* zonelist; member in struct:nsd_options 370 /* if not part of config, the offset and linesize of zonelist entry */ 376 /* zone is fixed into the main config, not in zonelist, cannot delete */ 477 /** zonelist free bucket for a particular line length */ 559 /* create (potential) catalog producer member entry and add to the zonelist */ 562 /* create zone entry and add to the zonelist file */ 566 /* create zonelist entry, do not insert in file (called by _add) * [all...] |
| /src/external/mpl/bind/dist/bin/check/ |
| named-checkconf.c | 472 const cfg_obj_t *zonelist; local 481 zonelist = NULL; 483 (void)cfg_map_get(voptions, "zone", &zonelist); 485 (void)cfg_map_get(config, "zone", &zonelist); 488 for (element = cfg_list_first(zonelist); element != NULL;
|
| /src/external/mpl/bind/dist/bin/named/ |
| server.c | 274 ISC_LIST(struct zonelistentry) zonelist; member in struct:viewlistentry 3607 const cfg_obj_t *zonelist, const char **empty_dbtype, 3641 for (element = cfg_list_first(zonelist); element != NULL; 4188 const cfg_obj_t *zonelist; local 4306 zonelist = NULL; 4308 (void)cfg_map_get(voptions, "zone", &zonelist); 4310 (void)cfg_map_get(config, "zone", &zonelist); 4316 for (element = cfg_list_first(zonelist); element != NULL; 5986 CHECK(create_empty_zone(zone, name, view, zonelist, 6234 for (element = cfg_list_first(zonelist); 8043 const cfg_obj_t *zonelist; local 13582 const cfg_obj_t *zonelist; local [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/checkconf/ |
| tests.sh | 553 diff good.zonelist checkconf.out$n >diff.out$n || ret=1
|