Lines Matching refs:msg
63 char msg[MAX_MSG_LEN];
66 vsnprintf(msg, sizeof (msg), fmt, ap);
67 message(LOG_DEBUG, msg);
72 char msg[MAX_MSG_LEN];
75 vsnprintf(msg, sizeof (msg), fmt, ap);
76 message(IO_ERROR, msg);
81 char msg[MAX_MSG_LEN];
84 vsnprintf(msg, sizeof (msg), fmt, ap);
85 message(INTERNAL_ERROR, msg);
90 char msg[MAX_MSG_LEN];
93 vsnprintf(msg, sizeof (msg), fmt, ap);
94 message(USER_ERROR, msg);
108 void message(int priority, const char *msg);