Home | History | Annotate | Download | only in rpcapd

Lines Matching refs:priority

44 static void rpcapd_vlog_stderr(log_priority priority, const char *message, va_list ap)
50 * priority always has a valid enum value and therefore don't
61 switch (priority) {
92 static void rpcapd_vlog_systemlog(log_priority priority, const char *message,
121 rpcapd_vlog_stderr(priority, message, ap);
128 switch (priority) {
167 rpcapd_vlog_stderr(priority, message, ap);
171 static void rpcapd_vlog_systemlog(log_priority priority, const char *message,
185 switch (priority) {
242 void rpcapd_log(log_priority priority, const char *message, ...)
246 if (priority != LOGPRIO_DEBUG || log_debug_messages) {
250 rpcapd_vlog_systemlog(priority, message, ap);
254 rpcapd_vlog_stderr(priority, message, ap);