Lines Matching refs:format
105 * the master logging function. this function will format the message as
111 * @param [in] format the formatting string for the message
118 const char *format,
136 * format the level onto the beginning of the string and do
155 retval = vsnprintf(buffer, buflen, format, args);
177 * @param [in] format the formating string for the message
182 int esas2r_log(const long level, const char *format, ...)
187 va_start(args, format);
189 retval = esas2r_log_master(level, NULL, format, args);
202 * @param [in] format the formatting string for the message
209 const char *format,
215 va_start(args, format);
217 retval = esas2r_log_master(level, dev, format, args);