Lines Matching defs:format
173 log_message(const char *format, ...)
179 va_start(va, format);
180 (void) vsnprintf(buf, UMEM_MAX_ERROR_SIZE-1, format, va);
193 debug_printf(const char *format, ...)
199 va_start(va, format);
200 (void) vsnprintf(buf, UMEM_MAX_ERROR_SIZE-1, format, va);
208 umem_vprintf(const char *format, va_list va)
212 (void) vsnprintf(buf, UMEM_MAX_ERROR_SIZE-1, format, va);
218 umem_printf(const char *format, ...)
222 va_start(va, format);
223 umem_vprintf(format, va);
229 umem_printf_warn(void *ignored, const char *format, ...)
233 va_start(va, format);
234 umem_vprintf(format, va);