Lines Matching defs:vsnprintf
15 * - changed to provide snprintf and vsnprintf functions
1691 buf += vsnprintf(buf, end > buf ? end - buf : 0, va_fmt->fmt, va);
2192 * call vsnprintf(->format, *->va_list).
2193 * Implements a "recursive vsnprintf".
2239 * s a string, equivalent to "%s" on direct vsnprintf() use
2554 * vsnprintf - Format a string and place it in a buffer
2560 * This function generally follows C99 vsnprintf, but has some
2581 int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
2733 EXPORT_SYMBOL(vsnprintf);
2748 * See the vsnprintf() documentation for format string extensions over C99.
2754 i = vsnprintf(buf, size, fmt, args);
2776 * See the vsnprintf() documentation for format string extensions over C99.
2784 i = vsnprintf(buf, size, fmt, args);
2822 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
2827 * See the vsnprintf() documentation for format string extensions over C99.
2831 return vsnprintf(buf, INT_MAX, fmt, args);
2845 * See the vsnprintf() documentation for format string extensions over C99.
2853 i = vsnprintf(buf, INT_MAX, fmt, args);
2874 * The format follows C99 vsnprintf, except %n is ignored, and its argument
3028 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
3032 * The format follows C99 vsnprintf, but has some extensions:
3033 * see vsnprintf comment for details.