Searched refs:logconfig (Results 1 - 18 of 18) sorted by relevance

/bind-9.11.3/bin/named/
H A Dlogconf.c37 * in 'ccat' and add it to 'logconfig'.
40 category_fromconf(const cfg_obj_t *ccat, isc_logconfig_t *logconfig) { argument
60 if (logconfig == NULL)
73 result = isc_log_usechannel(logconfig, channelname, category,
88 * in 'cchan' and add it to 'logconfig'.
91 channel_fromconf(const cfg_obj_t *channel, isc_logconfig_t *logconfig) argument
235 if (logconfig == NULL)
238 result = isc_log_createchannel(logconfig, channelname,
257 if (logconfig != NULL && !ns_g_nosyslog)
270 if (logconfig !
282 ns_log_configure(isc_logconfig_t *logconfig, const cfg_obj_t *logstmt) argument
[all...]
/bind-9.11.3/bin/tools/
H A Dnamed-journalprint.c32 isc_logconfig_t *logconfig = NULL; local
35 RUNTIME_CHECK(isc_log_create(mctx, &log, &logconfig) == ISC_R_SUCCESS);
44 RUNTIME_CHECK(isc_log_createchannel(logconfig, "stderr",
48 RUNTIME_CHECK(isc_log_usechannel(logconfig, "stderr",
/bind-9.11.3/lib/isc/tests/
H A Disctest.c104 isc_logconfig_t *logconfig = NULL; local
106 CHECK(isc_log_create(mctx, &lctx, &logconfig));
114 CHECK(isc_log_createchannel(logconfig, "stderr",
118 CHECK(isc_log_usechannel(logconfig, "stderr", NULL, NULL));
/bind-9.11.3/lib/isccfg/tests/
H A Dparser_test.c66 isc_logconfig_t *logconfig = NULL; local
68 CHECK(isc_log_create(mctx, &lctx, &logconfig));
76 CHECK(isc_log_createchannel(logconfig, "stderr",
80 CHECK(isc_log_usechannel(logconfig, "stderr", NULL, NULL));
/bind-9.11.3/bin/tests/
H A Dmakejournal.c85 isc_logconfig_t *logconfig = NULL; local
107 CHECK(isc_log_create(mctx, &lctx, &logconfig));
117 CHECK(isc_log_createchannel(logconfig, "stderr",
120 CHECK(isc_log_usechannel(logconfig, "stderr", NULL, NULL));
H A Dsig0_test.c64 isc_logconfig_t *logconfig = NULL; variable
243 RUNTIME_CHECK(isc_log_create(mctx, &lctx, &logconfig) == ISC_R_SUCCESS);
/bind-9.11.3/bin/tests/system/rsabigexponent/
H A Dbigkey.c130 isc_logconfig_t *logconfig; variable
189 CHECK(isc_log_create(mctx, &log_, &logconfig), "isc_log_create()");
193 CHECK(isc_log_settag(logconfig, "bigkey"), "isc_log_settag()");
198 CHECK(isc_log_createchannel(logconfig, "stderr",
204 CHECK(isc_log_usechannel(logconfig, "stderr", NULL, NULL),
/bind-9.11.3/lib/isc/
H A Dlog.c146 isc_logconfig_t * logconfig; member in struct:isc_log
303 lctx->logconfig = lcfg;
415 ENSURE(lctx->logconfig != NULL);
417 return (lctx->logconfig);
440 old_cfg = lctx->logconfig;
441 lctx->logconfig = lcfg;
462 if (lctx->logconfig != NULL) {
463 lcfg = lctx->logconfig;
464 lctx->logconfig = NULL;
505 * This function cannot be called with a logconfig tha
[all...]
/bind-9.11.3/bin/tests/system/tkey/
H A Dkeydelete.c150 isc_logconfig_t *logconfig; local
174 logconfig = NULL;
175 RUNCHECK(isc_log_create(mctx, &log, &logconfig));
H A Dkeycreate.c216 isc_logconfig_t *logconfig; local
244 logconfig = NULL;
245 RUNCHECK(isc_log_create(mctx, &log, &logconfig));
/bind-9.11.3/lib/dns/tests/
H A Ddnstest.c128 isc_logconfig_t *logconfig = NULL; local
130 CHECK(isc_log_create(mctx, &lctx, &logconfig));
140 CHECK(isc_log_createchannel(logconfig, "stderr",
144 CHECK(isc_log_usechannel(logconfig, "stderr", NULL, NULL));
/bind-9.11.3/bin/delv/
H A Ddelv.c267 isc_logconfig_t *logconfig = NULL; local
269 result = isc_log_create(mctx, &lctx, &logconfig);
285 result = isc_log_createchannel(logconfig, "stderr",
293 result = isc_log_settag(logconfig, ";; ");
297 result = isc_log_usechannel(logconfig, "stderr",
303 result = isc_log_createchannel(logconfig, "resolver",
311 result = isc_log_usechannel(logconfig, "resolver",
319 result = isc_log_createchannel(logconfig, "validator",
327 result = isc_log_usechannel(logconfig, "validator",
335 result = isc_log_createchannel(logconfig, "message
[all...]
/bind-9.11.3/bin/rndc/
H A Drndc.c775 isc_logconfig_t *logconfig = NULL; local
893 DO("create logging context", isc_log_create(rndc_mctx, &log, &logconfig));
895 DO("setting log tag", isc_log_settag(logconfig, progname));
901 isc_log_createchannel(logconfig, "stderr",
904 DO("enabling log channel", isc_log_usechannel(logconfig, "stderr",
/bind-9.11.3/bin/check/
H A Dcheck-tool.c557 isc_logconfig_t *logconfig = NULL; local
560 RUNTIME_CHECK(isc_log_create(mctx, &log, &logconfig) == ISC_R_SUCCESS);
571 RUNTIME_CHECK(isc_log_createchannel(logconfig, "stderr",
575 RUNTIME_CHECK(isc_log_usechannel(logconfig, "stderr",
/bind-9.11.3/bin/dnssec/
H A Ddnssectool.c152 isc_logconfig_t *logconfig = NULL; local
174 RUNTIME_CHECK(isc_log_create(mctx, &log, &logconfig) == ISC_R_SUCCESS);
179 RUNTIME_CHECK(isc_log_settag(logconfig, program) == ISC_R_SUCCESS);
191 result = isc_log_createchannel(logconfig, "stderr",
198 RUNTIME_CHECK(isc_log_usechannel(logconfig, "stderr",
/bind-9.11.3/lib/dns/
H A Dclient.c366 isc_logconfig_t *logconfig = NULL;
389 result = isc_log_create(mctx, &lctx, &logconfig);
395 result = isc_log_usechannel(logconfig, "default_debug", NULL, NULL);
/bind-9.11.3/bin/nsupdate/
H A Dnsupdate.c856 isc_logconfig_t *logconfig = NULL; local
873 result = isc_log_create(gmctx, &glctx, &logconfig);
880 result = isc_log_usechannel(logconfig, "default_debug", NULL, NULL);
/bind-9.11.3/bin/dig/
H A Ddighost.c1561 isc_logconfig_t *logconfig = NULL; local
1584 result = isc_log_create(mctx, &lctx, &logconfig);
1591 result = isc_log_usechannel(logconfig, "default_debug", NULL, NULL);

Completed in 2008 milliseconds