Lines Matching defs:vsnprintf
15 * - changed to provide snprintf and vsnprintf functions
1715 buf += vsnprintf(buf, end > buf ? end - buf : 0, va_fmt->fmt, va);
2386 * call vsnprintf(->format, *->va_list).
2387 * Implements a "recursive vsnprintf".
2441 * s a string, equivalent to "%s" on direct vsnprintf() use
2764 * vsnprintf - Format a string and place it in a buffer
2770 * This function generally follows C99 vsnprintf, but has some
2791 int vsnprintf(char *buf, size_t size, const char *fmt_str, va_list args)
2915 EXPORT_SYMBOL(vsnprintf);
2930 * See the vsnprintf() documentation for format string extensions over C99.
2939 i = vsnprintf(buf, size, fmt, args);
2960 * See the vsnprintf() documentation for format string extensions over C99.
2968 i = vsnprintf(buf, size, fmt, args);
3006 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
3011 * See the vsnprintf() documentation for format string extensions over C99.
3015 return vsnprintf(buf, INT_MAX, fmt, args);
3029 * See the vsnprintf() documentation for format string extensions over C99.
3037 i = vsnprintf(buf, INT_MAX, fmt, args);
3058 * The format follows C99 vsnprintf, except %n is ignored, and its argument
3193 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
3197 * The format follows C99 vsnprintf, but has some extensions:
3198 * see vsnprintf comment for details.