HomeSort by: relevance | last modified time | path
    Searched defs:vsnprintf (Results 1 - 25 of 248) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/bsd/nvi/dist/clib/
vsnprintf.c 15 * PUBLIC: int vsnprintf __P((char *, size_t, const char *, ...));
19 vsnprintf(str, n, fmt, ap) function
vsnprintf.c 15 * PUBLIC: int vsnprintf __P((char *, size_t, const char *, ...));
19 vsnprintf(str, n, fmt, ap) function
  /src/lib/libc/ssp/
vsnprintf_chk.c 41 #undef vsnprintf macro
50 return vsnprintf(buf, len, fmt, ap);
vsnprintf_chk.c 41 #undef vsnprintf macro
50 return vsnprintf(buf, len, fmt, ap);
snprintf_chk.c 41 #undef vsnprintf macro
55 rv = vsnprintf(buf, len, fmt, ap);
vsprintf_chk.c 43 #undef vsnprintf macro
55 if ((rv = vsnprintf(buf, slen, fmt, ap)) >= 0 && (size_t)rv >= slen)
snprintf_chk.c 41 #undef vsnprintf macro
55 rv = vsnprintf(buf, len, fmt, ap);
vsprintf_chk.c 43 #undef vsnprintf macro
55 if ((rv = vsnprintf(buf, slen, fmt, ap)) >= 0 && (size_t)rv >= slen)
sprintf_chk.c 42 #undef vsnprintf macro
57 if ((rv = vsnprintf(buf, slen, fmt, ap)) >= 0 && (size_t)rv >= slen)
sprintf_chk.c 42 #undef vsnprintf macro
57 if ((rv = vsnprintf(buf, slen, fmt, ap)) >= 0 && (size_t)rv >= slen)
  /src/external/bsd/ntp/dist/include/
c99_snprintf.h 28 # undef vsnprintf macro
c99_snprintf.h 28 # undef vsnprintf macro
  /src/include/ssp/
stdio.h 64 #define vsnprintf(str, len, fmt, ap) \ macro
stdio.h 64 #define vsnprintf(str, len, fmt, ap) \ macro
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
print.h 73 #define vsnprintf isc_print_vsnprintf macro
print.h 73 #define vsnprintf isc_print_vsnprintf macro
  /src/external/gpl3/gcc/dist/libssp/ssp/
stdio.h 48 #undef vsnprintf macro
73 #define vsnprintf(str, len, fmt, ap) \ macro
stdio.h 48 #undef vsnprintf macro
73 #define vsnprintf(str, len, fmt, ap) \ macro
  /src/external/gpl3/gcc.old/dist/libssp/ssp/
stdio.h 48 #undef vsnprintf macro
73 #define vsnprintf(str, len, fmt, ap) \ macro
stdio.h 48 #undef vsnprintf macro
73 #define vsnprintf(str, len, fmt, ap) \ macro
  /src/lib/libc/stdio/
vsnprintf.c 1 /* $NetBSD: vsnprintf.c,v 1.29 2017/01/12 18:16:52 christos Exp $ */
38 static char sccsid[] = "@(#)vsnprintf.c 8.1 (Berkeley) 6/4/93";
40 __RCSID("$NetBSD: vsnprintf.c,v 1.29 2017/01/12 18:16:52 christos Exp $");
55 # undef vsnprintf macro
56 # define vsnprintf _vsnprintf macro
61 int vsnprintf(char * __restrict, size_t, const char * __restrict,
66 __weak_alias(vsnprintf,_vsnprintf)
105 vsnprintf(char *str, size_t n, const char *fmt, va_list ap) function
117 ret = vsnprintf(str, n, fmt, ap);
  /src/external/bsd/ntp/dist/sntp/libopts/compat/
snprintf.c 57 vsnprintf( char *str, size_t n, char const *fmt, va_list ap ) function
  /src/external/gpl3/binutils/dist/libiberty/
vsnprintf.c 1 /* Implement the vsnprintf function.
28 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, @
60 vsnprintf (char *s, size_t n, const char *format, va_list ap) function
100 result = vsnprintf (s, n, format, ap);
  /src/external/gpl3/binutils.old/dist/libiberty/
vsnprintf.c 1 /* Implement the vsnprintf function.
28 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, @
60 vsnprintf (char *s, size_t n, const char *format, va_list ap) function
100 result = vsnprintf (s, n, format, ap);
  /src/external/gpl3/gcc/dist/libiberty/
vsnprintf.c 1 /* Implement the vsnprintf function.
28 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, @
60 vsnprintf (char *s, size_t n, const char *format, va_list ap) function
100 result = vsnprintf (s, n, format, ap);

Completed in 83 milliseconds

1 2 3 4 5 6 7 8 910