Searched defs:vsnprintf (Results 1 - 25 of 54) sorted by last modified time

123

/external/zlib/src/
H A Dgzguts.h69 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
77 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
78 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
80 # define vsnprintf _vsnprintf macro
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.h80 #undef vsnprintf macro
81 #define vsnprintf _vsnprintf macro
373 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
374 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
/external/wpa_supplicant_8/src/utils/
H A Dcommon.h80 #undef vsnprintf macro
81 #define vsnprintf _vsnprintf macro
373 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
374 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.h80 #undef vsnprintf macro
81 #define vsnprintf _vsnprintf macro
373 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
374 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
/external/valgrind/main/perf/
H A Dtinycc.c5374 #define vsnprintf _vsnprintf
7021 vsnprintf(buf + len, buf_size - len, fmt, ap);
5372 #define vsnprintf macro
/external/valgrind/main/coregrind/
H A Dm_libcprint.c250 UInt VG_(vsnprintf) ( HChar* buf, Int size, const HChar *format, va_list vargs ) function
269 ret = VG_(vsnprintf)(buf, size, format, vargs);
/external/tcpdump/missing/
H A Dsnprintf.c472 ret = vsnprintf (str, sz, format, args);
610 vsnprintf (char *str, size_t sz, const char *format, va_list args) function
/external/tcpdump/
H A Dtcpdump-stdinc.h100 #define vsnprintf _vsnprintf macro
/external/stlport/stlport/stl/
H A D_cstdio.h47 inline int vsnprintf(char *s1, size_t n, const char *s2, va_list v) function
121 using _STLP_VENDOR_CSTD::vsnprintf;
/external/sqlite/dist/orig/
H A Dsqlite3ext.h251 char *(*vsnprintf)(int,char*,const char*,va_list); member in struct:sqlite3_api_routines
468 #define sqlite3_uri_vsnprintf sqlite3_api->vsnprintf
/external/sqlite/dist/
H A Dsqlite3ext.h251 char *(*vsnprintf)(int,char*,const char*,va_list); member in struct:sqlite3_api_routines
468 #define sqlite3_uri_vsnprintf sqlite3_api->vsnprintf
/external/qemu/distrib/zlib-1.2.8/
H A Dgzguts.h69 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
77 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
78 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
80 # define vsnprintf _vsnprintf macro
/external/qemu-pc-bios/bochs/bios/
H A Drombios32.c237 int vsnprintf(char *buf, int buflen, const char *fmt, va_list args) function
392 i=vsnprintf(buf,size,fmt,args);
407 vsnprintf(buf, sizeof(buf), fmt, ap);
/external/protobuf/gtest/src/
H A Dgtest.cc56 // Declares vsnprintf(). This header is not available on Windows.
129 #define vsnprintf _vsnprintf macro
1694 // MSVC 8 deprecates vsnprintf(), so we want to suppress warning
1699 const int size = vsnprintf(buffer, kBufferSize, format, args);
1702 const int size = vsnprintf(buffer, kBufferSize, format, args);
1706 // vsnprintf()'s behavior is not portable. When the buffer is not
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzguts.h71 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
79 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
80 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
82 # define vsnprintf _vsnprintf macro
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dlcms2_internal.h89 # ifndef vsnprintf
90 # define vsnprintf _vsnprintf macro
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c57 * C99 compliant snprintf(3) and vsnprintf(3) functions return the number
64 * The original code assumed that both snprintf(3) and vsnprintf(3) were
65 * missing. Some systems only have snprintf(3) but not vsnprintf(3), so
134 * #define vsnprintf rpl_vsnprintf
171 #define vsnprintf util_vsnprintf macro
204 #include <stdio.h> /* For NULL, size_t, vsnprintf(3), and vasprintf(3). */
1425 len = vsnprintf(NULL, 0, format, aq);
1429 return vsnprintf(*ret, size, format, ap);
1454 len = vsnprintf(str, size, format, ap);
/external/mesa3d/src/gtest/src/
H A Dgtest.cc59 // Declares vsnprintf(). This header is not available on Windows.
136 # define vsnprintf _vsnprintf macro
1707 // MSVC 8 deprecates vsnprintf(), so we want to suppress warning
1713 const int size = vsnprintf(buffer, kBufferSize, format, args);
1717 const int size = vsnprintf(buffer, kBufferSize, format, args);
1721 // vsnprintf()'s behavior is not portable. When the buffer is not
/external/mesa3d/src/mesa/main/
H A Dimports.c61 #define vsnprintf _vsnprintf macro
63 extern int vsnprintf(char *str, size_t count, const char *fmt, va_list arg);
65 #include "vsnprintf.c"
579 return vsnprintf( str, size, fmt, args);
582 /** Wrapper around vsnprintf() */
589 r = vsnprintf( str, size, fmt, args );
H A Dvsnprintf.c108 vsnprintf(char *str, size_t n, char const *fmt, va_list ap) function
110 vsnprintf(str, n, fmt, ap)
160 return (vsnprintf(str, n, fmt, ap));
/external/llvm/utils/unittest/googletest/src/
H A Dgtest.cc59 // Declares vsnprintf(). This header is not available on Windows.
136 # define vsnprintf _vsnprintf macro
1707 // MSVC 8 deprecates vsnprintf(), so we want to suppress warning
1713 const int size = vsnprintf(buffer, kBufferSize, format, args);
1717 const int size = vsnprintf(buffer, kBufferSize, format, args);
1721 // vsnprintf()'s behavior is not portable. When the buffer is not
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h670 /// int vsnprintf(char *s, size_t n, const char *format, va_list ap);
671 vsnprintf, enumerator in enum:llvm::LibFunc::Func
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc332 // Declares vsnprintf(). This header is not available on Windows.
1623 # define vsnprintf _vsnprintf macro
/external/libxml2/
H A Dtrio.h179 # define vsnprintf trio_vsnprintf macro
/external/libpcap/missing/
H A Dsnprintf.c472 ret = vsnprintf (str, sz, format, args);
610 vsnprintf (char *str, size_t sz, const char *format, va_list args) function

Completed in 7062 milliseconds

123