Lines Matching defs:format
127 static void debug_vprintf(const char *format, va_list ap)
129 vfprintf(debug_file ? debug_file : stderr, format, ap);
132 static void debug_printf(const char *format, ...)
135 static void debug_printf(const char *format, ...)
139 va_start(ap, format);
141 debug_vprintf(format, ap);
151 const char *format,
162 ret = vasprintf(&message, format, ap);
214 const char *format,
235 ret = journal_send(file, line, function, level, format, ap);
238 debug_vprintf(format, ap_fallback);
268 debug_vprintf(format, ap);
279 const char *format, ...)
283 va_start(ap, format);
284 sss_vdebug_fn(file, line, function, level, 0, format, ap);