Lines Matching refs:fmt
46 fatal(const char *fmt, ...) in fatal() argument
50 va_start(ap, fmt); in fatal()
51 (void) vsyslog(LOG_DAEMON|LOG_CRIT, fmt, ap); in fatal()
58 quit(const char *fmt, ...) in quit() argument
62 va_start(ap, fmt); in quit()
63 (void) vsyslog(LOG_DAEMON|LOG_ERR, fmt, ap); in quit()
71 noise(const char *fmt, ...) in noise() argument
75 va_start(ap, fmt); in noise()
76 (void) vsyslog(LOG_DAEMON|LOG_WARNING, fmt, ap); in noise()
81 warning(const char *fmt, ...) in warning() argument
85 va_start(ap, fmt); in warning()
86 (void) vsyslog(LOG_DAEMON|LOG_WARNING, fmt, ap); in warning()
92 info(const char *fmt, ...) in info() argument
101 va_start(ap, fmt); in info()
102 (void) vsyslog(LOG_DAEMON|LOG_INFO, fmt, ap); in info()
108 debug(uint_t level, const char *fmt, ...) in debug() argument
118 (void) snprintf(dbgmsg, sizeof (dbgmsg), DEBUGMSG, level, fmt); in debug()
119 va_start(ap, fmt); in debug()