Lines Matching refs:format
106 #pragma GCC diagnostic ignored "-Wsuggest-attribute=format"
110 * the master logging function. this function will format the message as
116 * @param [in] format the formatting string for the message
123 const char *format,
141 * format the level onto the beginning of the string and do
160 retval = vsnprintf(buffer, buflen, format, args);
184 * @param [in] format the formating string for the message
189 int esas2r_log(const long level, const char *format, ...)
194 va_start(args, format);
196 retval = esas2r_log_master(level, NULL, format, args);
209 * @param [in] format the formatting string for the message
216 const char *format,
222 va_start(args, format);
224 retval = esas2r_log_master(level, dev, format, args);