Lines Matching defs:level

74 	int 				level;
241 isc_logmodule_t *module, int level, isc_boolean_t write_once,
334 int level = ISC_LOG_INFO;
346 lcfg->highest_level = level;
370 ISC_LOG_TOSYSLOG, level,
381 level,
703 unsigned int type, int level,
715 REQUIRE(level >= ISC_LOG_CRITICAL);
734 channel->level = level;
831 isc_logmodule_t *module, int level, const char *format, ...)
840 isc_log_doit(lctx, category, module, level, ISC_FALSE,
847 isc_logmodule_t *module, int level,
853 isc_log_doit(lctx, category, module, level, ISC_FALSE,
859 isc_logmodule_t *module, int level, const char *format, ...)
868 isc_log_doit(lctx, category, module, level, ISC_TRUE,
875 isc_logmodule_t *module, int level,
881 isc_log_doit(lctx, category, module, level, ISC_TRUE,
887 isc_logmodule_t *module, int level,
898 isc_log_doit(lctx, category, module, level, ISC_FALSE,
905 isc_logmodule_t *module, int level,
912 isc_log_doit(lctx, category, module, level, ISC_FALSE,
918 isc_logmodule_t *module, int level,
929 isc_log_doit(lctx, category, module, level, ISC_TRUE,
936 isc_logmodule_t *module, int level,
943 isc_log_doit(lctx, category, module, level, ISC_TRUE,
953 isc_log_setdebuglevel(isc_log_t *lctx, unsigned int level) {
960 lctx->debug_level = level;
962 * Close ISC_LOG_DEBUGONLY channels if level is zero.
1087 * Remember the highest logging level set by any channel in the
1092 if (lcfg->highest_level < channel->level)
1093 lcfg->highest_level = channel->level;
1094 if (channel->level == ISC_LOG_DYNAMIC)
1377 isc_log_wouldlog(isc_log_t *lctx, int level) {
1381 * messages that the debug level is not high enough to print.
1383 * If the level is (mathematically) less than or equal to the
1384 * highest_level, or if there is a dynamic channel and the level is
1385 * less than or equal to the debug level, the main loop must be
1398 return (ISC_TF(level <= lctx->logconfig->highest_level ||
1400 level <= lctx->debug_level)));
1405 isc_logmodule_t *module, int level, isc_boolean_t write_once,
1425 REQUIRE(level != ISC_LOG_DYNAMIC);
1439 if (! isc_log_wouldlog(lctx, level))
1503 if (channel->level == ISC_LOG_DYNAMIC) {
1504 if (lctx->debug_level < level)
1506 } else if (channel->level < level)
1520 if (level < ISC_LOG_CRITICAL)
1525 "level %d: "),
1526 level);
1527 else if (level > ISC_LOG_DYNAMIC)
1530 level);
1533 "%s: ", log_level_strings[-level]);
1732 if (level > 0)
1734 else if (level < ISC_LOG_CRITICAL)
1737 syslog_level = syslog_map[-level];