Lines Matching defs:vsnprintf
15 * - changed to provide snprintf and vsnprintf functions
1682 buf += vsnprintf(buf, end > buf ? end - buf : 0, va_fmt->fmt, va);
2348 * call vsnprintf(->format, *->va_list).
2349 * Implements a "recursive vsnprintf".
2399 * s a string, equivalent to "%s" on direct vsnprintf() use
2726 * vsnprintf - Format a string and place it in a buffer
2732 * This function generally follows C99 vsnprintf, but has some
2753 int vsnprintf(char *buf, size_t size, const char *fmt, va_list args)
2905 EXPORT_SYMBOL(vsnprintf);
2920 * See the vsnprintf() documentation for format string extensions over C99.
2929 i = vsnprintf(buf, size, fmt, args);
2950 * See the vsnprintf() documentation for format string extensions over C99.
2958 i = vsnprintf(buf, size, fmt, args);
2996 * into @buf. Use vsnprintf() or vscnprintf() in order to avoid
3001 * See the vsnprintf() documentation for format string extensions over C99.
3005 return vsnprintf(buf, INT_MAX, fmt, args);
3019 * See the vsnprintf() documentation for format string extensions over C99.
3027 i = vsnprintf(buf, INT_MAX, fmt, args);
3048 * The format follows C99 vsnprintf, except %n is ignored, and its argument
3202 * This function like C99 vsnprintf, but the difference is that vsnprintf gets
3206 * The format follows C99 vsnprintf, but has some extensions:
3207 * see vsnprintf comment for details.