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