/bind-9.6-ESV-R11/lib/isccfg/include/isccfg/ |
H A D | cfg.h | 78 (*cfg_parsecallback_t)(const char *clausename, const cfg_obj_t *obj, void *arg); 147 cfg_obj_isvoid(const cfg_obj_t *obj); 149 * Return true iff 'obj' is of void type (e.g., an optional 154 cfg_obj_ismap(const cfg_obj_t *obj); 156 * Return true iff 'obj' is of a map type. 160 cfg_map_get(const cfg_obj_t *mapobj, const char* name, const cfg_obj_t **obj); 168 * \li 'obj' is non-NULL and '*obj' is NULL. 189 cfg_obj_istuple(const cfg_obj_t *obj); 191 * Return true iff 'obj' i [all...] |
H A D | grammar.h | 167 cfg_obj_t *obj; member in struct:cfg_listelt 288 cfg_print_uint32(cfg_printer_t *pctx, const cfg_obj_t *obj); 291 cfg_print_uint64(cfg_printer_t *pctx, const cfg_obj_t *obj); 297 cfg_print_ustring(cfg_printer_t *pctx, const cfg_obj_t *obj); 318 cfg_print_sockaddr(cfg_printer_t *pctx, const cfg_obj_t *obj); 337 cfg_print_tuple(cfg_printer_t *pctx, const cfg_obj_t *obj); 353 cfg_print_bracketed_list(cfg_printer_t *pctx, const cfg_obj_t *obj); 362 cfg_print_spacelist(cfg_printer_t *pctx, const cfg_obj_t *obj); 392 cfg_print_map(cfg_printer_t *pctx, const cfg_obj_t *obj); 401 cfg_print_mapbody(cfg_printer_t *pctx, const cfg_obj_t *obj); [all...] |
/bind-9.6-ESV-R11/bin/named/ |
H A D | zoneconf.c | 336 const cfg_obj_t *obj = NULL; local 339 result = cfg_map_get(map, "type", &obj); 340 INSIST(result == ISC_R_SUCCESS && obj != NULL); 341 return (ns_config_getzonetype(obj)); 419 const cfg_obj_t *obj; local 479 obj = NULL; 480 result = cfg_map_get(zoptions, "database", &obj); 482 cpval = isc_mem_strdup(mctx, cfg_obj_asstring(obj)); 507 obj = NULL; 508 result = cfg_map_get(zoptions, "file", &obj); 1020 const cfg_obj_t *obj = NULL; local [all...] |
H A D | tkeyconf.c | 64 const cfg_obj_t *obj; local 71 obj = NULL; 72 result = cfg_map_get(options, "tkey-dhkey", &obj); 74 s = cfg_obj_asstring(cfg_tuple_get(obj, "name")); 75 n = cfg_obj_asuint32(cfg_tuple_get(obj, "keyid")); 87 obj = NULL; 88 result = cfg_map_get(options, "tkey-domain", &obj); 90 s = cfg_obj_asstring(obj); 106 obj = NULL; 107 result = cfg_map_get(options, "tkey-gssapi-credential", &obj); [all...] |
H A D | server.c | 574 const cfg_obj_t *obj; local 588 obj = cfg_listelt_value(element); 589 str = cfg_obj_asstring(cfg_tuple_get(obj, "name")); 594 value = cfg_obj_asboolean(cfg_tuple_get(obj, "value")); 616 const cfg_obj_t *obj = NULL; local 621 result = ns_config_get(maps, "query-source", &obj); 625 result = ns_config_get(maps, "query-source-v6", &obj); 632 sa = *(cfg_obj_assockaddr(obj)); 668 INSIST(obj != NULL); 670 cfg_obj_log(obj, ns_g_lct 720 const cfg_obj_t *obj; local 784 const cfg_obj_t *obj; local 1151 const cfg_obj_t *obj; local 1332 const cfg_obj_t *obj; local 2868 const cfg_obj_t *obj = NULL; local 2881 directory_callback(const char *clausename, const cfg_obj_t *obj, void *arg) argument 3144 setoptstring(ns_server_t *server, char **field, const cfg_obj_t *obj) argument 3156 const cfg_obj_t *obj = NULL; local 3204 const cfg_obj_t *obj = cfg_listelt_value(element); local 3284 const cfg_obj_t *obj; local [all...] |
/bind-9.6-ESV-R11/lib/dns/win32/ |
H A D | libdns.mak | 123 -@erase "$(INTDIR)\acache.obj"
124 -@erase "$(INTDIR)\acl.obj"
125 -@erase "$(INTDIR)\adb.obj"
126 -@erase "$(INTDIR)\byaddr.obj"
127 -@erase "$(INTDIR)\cache.obj"
128 -@erase "$(INTDIR)\callbacks.obj"
129 -@erase "$(INTDIR)\compress.obj"
130 -@erase "$(INTDIR)\db.obj"
131 -@erase "$(INTDIR)\dbiterator.obj"
132 -@erase "$(INTDIR)\dbtable.obj"
[all...] |
/bind-9.6-ESV-R11/lib/isc/win32/ |
H A D | libisc.mak | 116 -@erase "$(INTDIR)\app.obj"
117 -@erase "$(INTDIR)\assertions.obj"
118 -@erase "$(INTDIR)\base32.obj"
119 -@erase "$(INTDIR)\base64.obj"
120 -@erase "$(INTDIR)\bitstring.obj"
121 -@erase "$(INTDIR)\buffer.obj"
122 -@erase "$(INTDIR)\bufferlist.obj"
123 -@erase "$(INTDIR)\commandline.obj"
124 -@erase "$(INTDIR)\condition.obj"
125 -@erase "$(INTDIR)\dir.obj"
[all...] |
/bind-9.6-ESV-R11/lib/lwres/win32/ |
H A D | liblwres.mak | 116 -@erase "$(INTDIR)\context.obj"
117 -@erase "$(INTDIR)\DLLMain.obj"
118 -@erase "$(INTDIR)\gai_strerror.obj"
119 -@erase "$(INTDIR)\getaddrinfo.obj"
120 -@erase "$(INTDIR)\gethost.obj"
121 -@erase "$(INTDIR)\getipnode.obj"
122 -@erase "$(INTDIR)\getnameinfo.obj"
123 -@erase "$(INTDIR)\getrrset.obj"
124 -@erase "$(INTDIR)\herror.obj"
125 -@erase "$(INTDIR)\lwbuffer.obj"
[all...] |
/bind-9.6-ESV-R11/lib/isccfg/ |
H A D | parser.c | 58 #define CLEANUP_OBJ(obj) \ 59 do { if ((obj) != NULL) cfg_obj_destroy(pctx, &(obj)); } while (0) 67 free_tuple(cfg_parser_t *pctx, cfg_obj_t *obj); 73 print_list(cfg_printer_t *pctx, const cfg_obj_t *obj); 76 free_list(cfg_parser_t *pctx, cfg_obj_t *obj); 86 free_string(cfg_parser_t *pctx, cfg_obj_t *obj); 92 free_map(cfg_parser_t *pctx, cfg_obj_t *obj); 100 free_noop(cfg_parser_t *pctx, cfg_obj_t *obj); 139 cfg_print_obj(cfg_printer_t *pctx, const cfg_obj_t *obj) { argument 182 cfg_print(const cfg_obj_t *obj, void (*f)(void *closure, const char *text, int textlen), void *closure) argument 201 cfg_obj_t *obj = NULL; local 232 cfg_obj_t *obj = NULL; local 248 cfg_print_tuple(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 278 free_tuple(cfg_parser_t *pctx, cfg_obj_t *obj) argument 296 cfg_obj_istuple(const cfg_obj_t *obj) argument 475 cfg_obj_t *obj = NULL; local 554 cfg_print_void(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 566 cfg_obj_isvoid(const cfg_obj_t *obj) argument 582 cfg_obj_t *obj = NULL; local 612 cfg_print_uint32(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 617 cfg_obj_isuint32(const cfg_obj_t *obj) argument 623 cfg_obj_asuint32(const cfg_obj_t *obj) argument 638 cfg_obj_isuint64(const cfg_obj_t *obj) argument 644 cfg_obj_asuint64(const cfg_obj_t *obj) argument 650 cfg_print_uint64(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 673 cfg_obj_t *obj = NULL; local 755 check_enum(cfg_parser_t *pctx, cfg_obj_t *obj, const char *const *enums) argument 766 cfg_obj_t *obj = NULL; local 789 cfg_print_ustring(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 794 print_qstring(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 801 free_string(cfg_parser_t *pctx, cfg_obj_t *obj) argument 807 cfg_obj_isstring(const cfg_obj_t *obj) argument 813 cfg_obj_asstring(const cfg_obj_t *obj) argument 841 cfg_obj_isboolean(const cfg_obj_t *obj) argument 847 cfg_obj_asboolean(const cfg_obj_t *obj) argument 857 cfg_obj_t *obj = NULL; local 893 print_boolean(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 910 cfg_create_list(cfg_parser_t *pctx, const cfg_type_t *type, cfg_obj_t **obj) argument 937 free_list(cfg_parser_t *pctx, cfg_obj_t *obj) argument 1007 print_list(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1033 cfg_print_bracketed_list(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1080 cfg_print_spacelist(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1094 cfg_obj_islist(const cfg_obj_t *obj) argument 1100 cfg_list_first(const cfg_obj_t *obj) argument 1118 cfg_list_length(const cfg_obj_t *obj, isc_boolean_t recurse) argument 1164 cfg_obj_t *obj = NULL; local 1324 cfg_obj_t *obj = NULL; local 1405 cfg_print_mapbody(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1423 cfg_obj_t *obj = symval.as_pointer; local 1486 cfg_print_map(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1548 cfg_obj_ismap(const cfg_obj_t *obj) argument 1554 cfg_map_get(const cfg_obj_t *mapobj, const char* name, const cfg_obj_t **obj) argument 1582 cfg_obj_t *obj = NULL; local 1844 cfg_obj_t *obj = NULL; local 1916 cfg_obj_t *obj = NULL; local 1965 print_netprefix(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1974 cfg_obj_isnetprefix(const cfg_obj_t *obj) argument 1980 cfg_obj_asnetprefix(const cfg_obj_t *obj, isc_netaddr_t *netaddr, unsigned int *prefixlen) argument 2003 cfg_obj_t *obj = NULL; local 2035 cfg_print_sockaddr(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 2081 cfg_obj_issockaddr(const cfg_obj_t *obj) argument 2087 cfg_obj_assockaddr(const cfg_obj_t *obj) argument 2300 cfg_obj_log(const cfg_obj_t *obj, isc_log_t *lctx, int level, const char *fmt, ...) argument 2319 cfg_obj_file(const cfg_obj_t *obj) argument 2324 cfg_obj_line(const cfg_obj_t *obj) argument 2330 cfg_obj_t *obj; local 2346 cfg_obj_t *obj = symval.as_pointer; local 2360 cfg_obj_t *obj = NULL; local 2379 free_map(cfg_parser_t *pctx, cfg_obj_t *obj) argument 2385 cfg_obj_istype(const cfg_obj_t *obj, const cfg_type_t *type) argument 2394 cfg_obj_t *obj; local 2406 free_noop(cfg_parser_t *pctx, cfg_obj_t *obj) argument [all...] |
H A D | namedconf.c | 44 #define CLEANUP_OBJ(obj) \ 45 do { if ((obj) != NULL) cfg_obj_destroy(pctx, &(obj)); } while (0) 63 print_keyvalue(cfg_printer_t *pctx, const cfg_obj_t *obj); 471 print_none(cfg_printer_t *pctx, const cfg_obj_t *obj) { argument 472 UNUSED(obj); 512 print_hostname(cfg_printer_t *pctx, const cfg_obj_t *obj) { argument 513 UNUSED(obj); 584 cfg_obj_t *obj = NULL; local 599 CHECK(cfg_create_tuple(pctx, &cfg_type_porttuple, &obj)); 1218 cfg_obj_t *obj = NULL; local 1279 cfg_obj_t *obj = NULL; local 1339 print_keyvalue(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1570 cfg_obj_t *obj = NULL; local 1633 print_querysource(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1715 print_negated(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 1888 cfg_obj_t *obj = NULL; local 1934 print_logfile(cfg_printer_t *pctx, const cfg_obj_t *obj) argument 2126 cfg_obj_t *obj = NULL; local 2208 cfg_obj_t *obj = NULL; local [all...] |
/bind-9.6-ESV-R11/bin/check/ |
H A D | named-checkconf.c | 77 directory_callback(const char *clausename, const cfg_obj_t *obj, void *arg) { argument 89 directory = cfg_obj_asstring(obj); 92 cfg_obj_log(obj, logc, ISC_LOG_ERROR, 102 get_maps(const cfg_obj_t **maps, const char *name, const cfg_obj_t **obj) { argument 107 if (cfg_map_get(maps[i], name, obj) == ISC_R_SUCCESS) 113 get_checknames(const cfg_obj_t **maps, const cfg_obj_t **obj) { argument 129 *obj = checknames; 139 *obj = cfg_tuple_get(value, "mode"); 146 config_get(const cfg_obj_t **maps, const char *name, const cfg_obj_t **obj) { argument 152 if (cfg_map_get(maps[i], name, obj) 198 const cfg_obj_t *obj = NULL; local [all...] |
/bind-9.6-ESV-R11/bin/named/win32/ |
H A D | named.mak | 126 -@erase "$(INTDIR)\builtin.obj"
127 -@erase "$(INTDIR)\client.obj"
128 -@erase "$(INTDIR)\config.obj"
129 -@erase "$(INTDIR)\control.obj"
130 -@erase "$(INTDIR)\controlconf.obj"
131 -@erase "$(INTDIR)\interfacemgr.obj"
132 -@erase "$(INTDIR)\listenlist.obj"
133 -@erase "$(INTDIR)\log.obj"
134 -@erase "$(INTDIR)\logconf.obj"
135 -@erase "$(INTDIR)\lwaddr.obj"
[all...] |
/bind-9.6-ESV-R11/lib/bind9/ |
H A D | check.c | 65 const cfg_obj_t *obj; local 72 obj = cfg_tuple_get(ent, "class"); 73 if (cfg_obj_isstring(obj)) { 75 DE_CONST(cfg_obj_asstring(obj), r.base); 79 cfg_obj_log(obj, logctx, ISC_LOG_ERROR, 86 obj = cfg_tuple_get(ent, "type"); 87 if (cfg_obj_isstring(obj)) { 89 DE_CONST(cfg_obj_asstring(obj), r.base); 93 cfg_obj_log(obj, logctx, ISC_LOG_ERROR, 100 obj 148 const cfg_obj_t *obj = NULL; local 169 const cfg_obj_t *obj; local 260 const cfg_obj_t *obj; local 300 nameexist(const cfg_obj_t *obj, const char *name, int value, isc_symtab_t *symtab, const char *fmt, isc_log_t *logctx, isc_mem_t *mctx) argument 337 const cfg_obj_t *obj; local 426 const cfg_obj_t *options, *aclobj, *obj = NULL; local 503 const cfg_obj_t *obj = NULL; local 837 validate_masters(const cfg_obj_t *obj, const cfg_obj_t *config, isc_uint32_t *countp, isc_log_t *logctx, isc_mem_t *mctx) argument 1029 const cfg_obj_t *obj = NULL; local 1059 const cfg_obj_t *obj = NULL; local 1583 const cfg_obj_t *obj; local 1613 const cfg_obj_t *obj; local 1791 const cfg_obj_t *obj; local 2239 const cfg_obj_t *obj; local [all...] |
/bind-9.6-ESV-R11/lib/isccc/win32/ |
H A D | libisccc.mak | 127 -@erase "$(INTDIR)\alist.obj"
128 -@erase "$(INTDIR)\base64.obj"
129 -@erase "$(INTDIR)\cc.obj"
130 -@erase "$(INTDIR)\ccmsg.obj"
131 -@erase "$(INTDIR)\DLLMain.obj"
132 -@erase "$(INTDIR)\lib.obj"
133 -@erase "$(INTDIR)\result.obj"
134 -@erase "$(INTDIR)\sexpr.obj"
135 -@erase "$(INTDIR)\symtab.obj"
137 -@erase "$(INTDIR)\version.obj"
[all...] |
/bind-9.6-ESV-R11/bin/win32/BINDInstall/ |
H A D | BINDInstall.mak | 116 -@erase "$(INTDIR)\AccountInfo.obj"
117 -@erase "$(INTDIR)\BINDInstall.obj"
120 -@erase "$(INTDIR)\BINDInstallDlg.obj"
121 -@erase "$(INTDIR)\DirBrowse.obj"
122 -@erase "$(INTDIR)\ntgroups.obj"
123 -@erase "$(INTDIR)\StdAfx.obj"
125 -@erase "$(INTDIR)\VersionInfo.obj"
142 "$(INTDIR)\AccountInfo.obj" \
143 "$(INTDIR)\BINDInstall.obj" \
144 "$(INTDIR)\BINDInstallDlg.obj" \
[all...] |
/bind-9.6-ESV-R11/lib/isccfg/win32/ |
H A D | libisccfg.mak | 127 -@erase "$(INTDIR)\DLLMain.obj"
128 -@erase "$(INTDIR)\aclconf.obj"
129 -@erase "$(INTDIR)\log.obj"
130 -@erase "$(INTDIR)\namedconf.obj"
131 -@erase "$(INTDIR)\parser.obj"
133 -@erase "$(INTDIR)\version.obj"
153 "$(INTDIR)\DLLMain.obj" \
154 "$(INTDIR)\aclconf.obj" \
155 "$(INTDIR)\log.obj" \
156 "$(INTDIR)\parser.obj" \
[all...] |
/bind-9.6-ESV-R11/bin/rndc/win32/ |
H A D | confgen.mak | 115 -@erase "$(INTDIR)\os.obj"
116 -@erase "$(INTDIR)\rndc-confgen.obj"
117 -@erase "$(INTDIR)\util.obj"
133 "$(INTDIR)\os.obj" \
134 "$(INTDIR)\rndc-confgen.obj" \
135 "$(INTDIR)\util.obj"
155 -@erase "$(INTDIR)\os.obj"
157 -@erase "$(INTDIR)\rndc-confgen.obj"
159 -@erase "$(INTDIR)\util.obj"
188 "$(INTDIR)\os.obj" \
[all...] |
/bind-9.6-ESV-R11/lib/bind9/win32/ |
H A D | libbind9.mak | 127 -@erase "$(INTDIR)\check.obj"
128 -@erase "$(INTDIR)\DLLMain.obj"
129 -@erase "$(INTDIR)\getaddresses.obj"
131 -@erase "$(INTDIR)\version.obj"
151 "$(INTDIR)\check.obj" \
152 "$(INTDIR)\DLLMain.obj" \
153 "$(INTDIR)\getaddresses.obj" \
154 "$(INTDIR)\version.obj" \
188 -@erase "$(INTDIR)\check.obj"
190 -@erase "$(INTDIR)\DLLMain.obj"
[all...] |
/bind-9.6-ESV-R11/bin/dnssec/win32/ |
H A D | dsfromkey.mak | 112 -@erase "$(INTDIR)\dnssec-dsfromkey.obj"
113 -@erase "$(INTDIR)\dnssectool.obj"
124 .c{$(INTDIR)}.obj::
129 .cpp{$(INTDIR)}.obj::
134 .cxx{$(INTDIR)}.obj::
162 "$(INTDIR)\dnssec-dsfromkey.obj" \
163 "$(INTDIR)\dnssectool.obj"
183 -@erase "$(INTDIR)\dnssec-dsfromkey.obj"
185 -@erase "$(INTDIR)\dnssectool.obj"
201 .c{$(INTDIR)}.obj [all...] |
H A D | keyfromlabel.mak | 112 -@erase "$(INTDIR)\dnssec-keyfromlabel.obj"
113 -@erase "$(INTDIR)\dnssectool.obj"
124 .c{$(INTDIR)}.obj::
129 .cpp{$(INTDIR)}.obj::
134 .cxx{$(INTDIR)}.obj::
162 "$(INTDIR)\dnssec-keyfromlabel.obj" \
163 "$(INTDIR)\dnssectool.obj"
183 -@erase "$(INTDIR)\dnssec-keyfromlabel.obj"
185 -@erase "$(INTDIR)\dnssectool.obj"
201 .c{$(INTDIR)}.obj [all...] |
H A D | keygen.mak | 112 -@erase "$(INTDIR)\dnssec-keygen.obj"
113 -@erase "$(INTDIR)\dnssectool.obj"
124 .c{$(INTDIR)}.obj::
129 .cpp{$(INTDIR)}.obj::
134 .cxx{$(INTDIR)}.obj::
162 "$(INTDIR)\dnssec-keygen.obj" \
163 "$(INTDIR)\dnssectool.obj"
183 -@erase "$(INTDIR)\dnssec-keygen.obj"
185 -@erase "$(INTDIR)\dnssectool.obj"
201 .c{$(INTDIR)}.obj [all...] |
H A D | signzone.mak | 112 -@erase "$(INTDIR)\dnssec-signzone.obj"
113 -@erase "$(INTDIR)\dnssectool.obj"
124 .c{$(INTDIR)}.obj::
129 .cpp{$(INTDIR)}.obj::
134 .cxx{$(INTDIR)}.obj::
162 "$(INTDIR)\dnssec-signzone.obj" \
163 "$(INTDIR)\dnssectool.obj"
183 -@erase "$(INTDIR)\dnssec-signzone.obj"
185 -@erase "$(INTDIR)\dnssectool.obj"
201 .c{$(INTDIR)}.obj [all...] |
/bind-9.6-ESV-R11/bin/named/include/named/ |
H A D | config.h | 34 ns_config_get(const cfg_obj_t **maps, const char* name, const cfg_obj_t **obj); 38 const cfg_obj_t **obj);
|
/bind-9.6-ESV-R11/bin/check/win32/ |
H A D | namedcheckzone.mak | 123 -@erase "$(INTDIR)\check-tool.obj"
124 -@erase "$(INTDIR)\named-checkzone.obj"
135 .c{$(INTDIR)}.obj::
140 .cpp{$(INTDIR)}.obj::
145 .cxx{$(INTDIR)}.obj::
173 "$(INTDIR)\check-tool.obj" \
174 "$(INTDIR)\named-checkzone.obj" \
208 -@erase "$(INTDIR)\check-tool.obj"
210 -@erase "$(INTDIR)\named-checkzone.obj"
226 .c{$(INTDIR)}.obj [all...] |
/bind-9.6-ESV-R11/bin/dig/win32/ |
H A D | dig.mak | 126 -@erase "$(INTDIR)\dig.obj"
127 -@erase "$(INTDIR)\dighost.obj"
143 "$(INTDIR)\dig.obj" \
144 "$(INTDIR)\dighost.obj" \
179 -@erase "$(INTDIR)\dig.obj"
181 -@erase "$(INTDIR)\dighost.obj"
209 "$(INTDIR)\dig.obj" \
210 "$(INTDIR)\dighost.obj" \
224 .c{$(INTDIR)}.obj::
229 .cpp{$(INTDIR)}.obj [all...] |