Searched defs:config (Results 1 - 25 of 36) sorted by relevance

12

/bind-9.6-ESV-R11/unit/atf-src/atf-c++/
H A Dconfig.hpp38 namespace config { namespace in namespace:atf
71 } // namespace config
H A Dconfig.cpp33 #include "atf-c/config.h"
36 #include "config.hpp"
75 atf::config::get(const std::string& varname)
85 atf::config::get_all(void)
94 atf::config::has(const std::string& varname)
107 namespace config { namespace in namespace:atf
122 } // namespace config
H A Dbuild_test.cpp36 #include "config.hpp"
48 namespace config { namespace in namespace:atf
171 atf::config::__reinit();
193 atf::config::__reinit();
216 atf::config::__reinit();
H A Dconfig_test.cpp33 #include "config.hpp"
70 namespace config { namespace in namespace:atf
124 ATF_REQUIRE_EQ(atf::config::get(v->lc), test_value);
126 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
137 set_md_var("descr", "Tests the config::get function");
144 atf::config::__reinit();
146 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
151 if (!atf::config::get(v->lc).empty()) {
153 atf::config::__reinit();
155 ATF_REQUIRE(atf::config
[all...]
H A Dmacros_test.cpp349 atf::tests::vars_map config; local
350 config["condition"] = t->cond;
355 run_h_tc< ATF_TEST_CASE_NAME(h_require) >(config);
396 atf::tests::vars_map config; local
397 config["v1"] = t->v1;
398 config["v2"] = t->v2;
405 run_h_tc< ATF_TEST_CASE_NAME(h_require_eq) >(config);
446 atf::tests::vars_map config; local
447 config["value"] = t->value;
450 run_h_tc< ATF_TEST_CASE_NAME(h_require_in) >(config);
488 atf::tests::vars_map config; local
538 atf::tests::vars_map config; local
581 atf::tests::vars_map config; local
633 atf::tests::vars_map config; local
684 atf::tests::vars_map config; local
732 atf::tests::vars_map config; local
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Dtc_test.c131 ATF_TC(config); variable
132 ATF_TC_HEAD(config, tc)
138 ATF_TC_BODY(config, tcin)
141 const char *const config[] = { "test-var", "test-value", NULL }; local
150 ATF_TC_BODY_NAME(empty), NULL, config));
185 ATF_TP_ADD_TC(tp, config);
H A Dtp.c80 atf_tp_init(atf_tp_t *tp, const char *const *config) argument
84 PRE(config != NULL);
94 err = atf_map_init_charpp(&tp->pimpl->m_config, config);
H A Dcheck_test.c40 #include "atf-c/config.h"
228 const char *const config[] = { NULL }; local
230 RE(atf_tc_init_pack(tc, tcpack, config));
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dtest_helpers.hpp94 run_h_tc_data(const atf::tests::vars_map& config) : argument
95 m_config(config) {}
112 run_h_tc(atf::tests::vars_map config = atf::tests::vars_map())
114 run_h_tc_data data(config);
/bind-9.6-ESV-R11/bin/named/
H A Dtsigconf.c22 #include <config.h>
36 #include <named/config.h>
143 ns_tsigkeyring_fromconfig(const cfg_obj_t *config, const cfg_obj_t *vconfig, argument
155 if (config != NULL)
156 maps[i++] = config;
H A Dconfig.c22 #include <config.h>
45 #include <named/config.h>
349 ns_config_getiplist(const cfg_obj_t *config, const cfg_obj_t *list, argument
379 result = ns_config_getport(config, &port);
444 ns_config_getipandkeylist(const cfg_obj_t *config, const cfg_obj_t *list, argument
482 result = ns_config_getport(config, &port);
532 tresult = get_masters_def(config, listname, &list);
719 ns_config_getport(const cfg_obj_t *config, in_port_t *portp) { argument
726 (void)cfg_map_get(config, "options", &options);
H A Dlwresd.c28 #include <config.h>
48 #include <named/config.h>
111 * Convert a resolv.conf file into a config structure.
756 ns_lwresd_configure(isc_mem_t *mctx, const cfg_obj_t *config) { argument
770 REQUIRE(config != NULL);
776 result = cfg_map_get(config, "lwres", &lwreslist);
786 * the underlying config code, or to the bind attempt getting an
815 CHECK(ns_config_getiplist(config, listenerslist,
H A Dzoneconf.c22 #include <config.h>
43 #include <named/config.h>
74 const cfg_obj_t *config, acl_type_t acltype,
144 if (config != NULL) {
146 (void)cfg_map_get(config, "options", &options);
160 result = cfg_acl_fromconfig(aclobj, config, ns_g_lctx, actx,
332 * Convert a config file zone type into a server zone type.
408 ns_zone_configure(const cfg_obj_t *config, const cfg_obj_t *vconfig, argument
452 if (config != NULL) {
453 (void)cfg_map_get(config, "option
73 configure_zone_acl(const cfg_obj_t *zconfig, const cfg_obj_t *vconfig, const cfg_obj_t *config, acl_type_t acltype, cfg_aclconfctx_t *actx, dns_zone_t *zone, void (*setzacl)(dns_zone_t *, dns_acl_t *), void (*clearzacl)(dns_zone_t *)) argument
[all...]
/bind-9.6-ESV-R11/contrib/zkt/
H A Dzkt-conf.c5 ** A config file utility for the DNSSEC Zone Key Tool
50 # include <config.h>
77 {"config", required_argument, NULL, 'c'},
79 {"config-option", required_argument, NULL, 'O'},
110 zconf_t *config; local
118 dbg_val0 ("Load built in config \"%s\"\n");
119 config = loadconfig ("", (zconf_t *)NULL); /* load built in config */
121 if ( fileexist (defconfname) ) /* load default config file */
123 dbg_val ("Load site wide config fil
[all...]
H A Dzkt-ls.c50 # include <config.h>
117 {"config", required_argument, NULL, 'c'},
119 {"config-option", required_argument, NULL, 'O'},
130 static void setglobalflags (zconf_t *config) argument
132 recflag = config->recursive;
133 ageflag = config->printage;
134 timeflag = config->printtime;
135 ljustflag = config->ljust;
136 term = config->colorterm;
151 zconf_t *config; local
[all...]
H A Ddnssec-zkt.c50 # include <config.h>
110 {"zone-config", no_argument, NULL, 'Z'},
115 {"config", required_argument, NULL, 'c'},
117 {"config-option", required_argument, NULL, 'O'},
141 static void setglobalflags (zconf_t *config) argument
143 recflag = config->recursive;
144 ageflag = config->printage;
145 timeflag = config->printtime;
146 ljustflag = config->ljust;
162 zconf_t *config; local
[all...]
H A Dzkt-keyman.c50 # include <config.h>
103 {"config", required_argument, NULL, 'c'},
105 {"config-option", required_argument, NULL, 'O'},
129 static void setglobalflags (zconf_t *config) argument
131 recflag = config->recursive;
147 zconf_t *config; local
155 config = loadconfig ("", (zconf_t *)NULL); /* load built in config */
156 if ( fileexist (defconfname) ) /* load default config file */
157 config
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-run/
H A Dconfig.cpp35 #include "atf-c++/config.hpp"
42 #include "config.hpp"
108 atf::tests::vars_map& config)
114 merge_maps(config, reader.get_vars());
123 dirs.push_back(atf::fs::path(atf::config::get("atf_confdir")));
161 "application/X-atf-config", 1);
214 atf::tests::vars_map config; local
219 merge_config_file((*iter) / "common.conf", config);
220 merge_config_file((*iter) / (test_suite_name + ".conf"), config);
223 return config;
107 merge_config_file(const atf::fs::path& config_path, atf::tests::vars_map& config) argument
[all...]
H A Dconfig_test.cpp32 #include "atf-c++/config.hpp"
35 #include "config.hpp"
43 namespace config { namespace in namespace:atf
47 } // namespace config
51 // Tests for the "config" parser.
86 "Content-Type: application/X-atf-config; version=\"1\"\n"
106 "Content-Type: application/X-atf-config; version=\"1\"\n"
132 "Content-Type: application/X-atf-config; version=\"1\"\n"
174 "Content-Type: application/X-atf-config; version=\"1\"\n"
196 "Content-Type: application/X-atf-config; versio
[all...]
H A Dmisc_helpers.cpp78 ATF_TEST_CASE(config); variable
79 ATF_TEST_CASE_HEAD(config)
83 ATF_TEST_CASE_BODY(config)
269 set_md_var("require.config", "var1 var2");
381 if (which == "config")
382 ATF_ADD_TEST_CASE(tcs, config);
H A Drequirements.cpp43 #include "atf-c++/config.hpp"
92 if ((*iter) == atf::config::get("atf_arch"))
104 check_config(const std::string& variables, const atf::tests::vars_map& config) argument
109 if (config.find((*iter)) == config.end())
141 if ((*iter) == atf::config::get("atf_machine"))
226 check_user(const std::string& user, const atf::tests::vars_map& config) argument
235 const atf::tests::vars_map::const_iterator iter = config.find(
237 if (iter == config.end())
261 const atf::tests::vars_map& config)
260 check_requirements(const atf::tests::vars_map& metadata, const atf::tests::vars_map& config) argument
296 get_required_user(const atf::tests::vars_map& metadata, const atf::tests::vars_map& config) argument
[all...]
H A Drequirements_test.cpp30 #include "atf-c++/config.hpp"
49 const atf::tests::vars_map& config = no_config)
51 const std::string actual = impl::check_requirements(metadata, config);
67 metadata["require.arch"] = atf::config::get("atf_arch");
83 metadata["require.arch"] = "__foo__ " + atf::config::get("atf_arch") +
98 // Tests for the require.config metadata property.
104 atf::tests::vars_map metadata, config; local
105 metadata["require.config"] = "var1";
106 config["var1"] = "some-value";
107 do_check("", metadata, config);
113 atf::tests::vars_map metadata, config; local
122 atf::tests::vars_map metadata, config; local
133 atf::tests::vars_map metadata, config; local
[all...]
H A Datf-run.cpp52 #include "atf-c++/config.hpp"
64 #include "config.hpp"
224 const atf::tests::vars_map& config)
233 impl::merge_configs(config, m_cmdline_vars);
373 const atf::tests::vars_map& config)
379 md = impl::get_metadata(tp, config);
391 impl::temp_dir resdir(atf::fs::path(atf::config::get("atf_workdir")) /
408 tcmd, config);
420 tcmd, config);
428 impl::temp_dir workdir(atf::fs::path(atf::config
222 run_test(const atf::fs::path& tp, impl::atf_tps_writer& w, const atf::tests::vars_map& config) argument
371 run_test_program(const atf::fs::path& tp, impl::atf_tps_writer& w, const atf::tests::vars_map& config) argument
[all...]
/bind-9.6-ESV-R11/bin/check/
H A Dnamed-checkconf.c22 #include <config.h>
185 const cfg_obj_t *config, isc_mem_t *mctx)
215 if (config != NULL) {
216 cfg_map_get(config, "options", &obj);
369 configure_view(const char *vclass, const char *view, const cfg_obj_t *config, argument
386 (void)cfg_map_get(config, "zone", &zonelist);
394 config, mctx);
404 load_zones_fromconfig(const cfg_obj_t *config, isc_mem_t *mctx) { argument
415 (void)cfg_map_get(config, "view", &views);
430 tresult = configure_view(vclass, vname, config, vconfi
183 configure_zone(const char *vclass, const char *view, const cfg_obj_t *zconfig, const cfg_obj_t *vconfig, const cfg_obj_t *config, isc_mem_t *mctx) argument
448 cfg_obj_t *config = NULL; local
[all...]
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dtp_main.c212 parse_vflag(char *arg, atf_map_t *config) argument
226 err = atf_map_insert(config, arg, split, false);

Completed in 1587 milliseconds

12