Searched defs:vsnprintf (Results 1 - 25 of 28) sorted by relevance

12

/external/libpcap/
H A Dpcap-stdinc.h63 #define vsnprintf _vsnprintf macro
H A Dpcap-int.h300 #define vsnprintf pcap_vsnprintf macro
301 extern int vsnprintf (char *, size_t, const char *, va_list ap);
/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/chromium/base/
H A Dstring_util_posix.h32 inline int vsnprintf(char* buffer, size_t size, function in namespace:base
34 return ::vsnprintf(buffer, size, format, arguments);
H A Dstring_util_win.h36 inline int vsnprintf(char* buffer, size_t size, function in namespace:base
/external/webkit/Source/JavaScriptCore/wtf/
H A DStringExtras.h61 // null-terminate it, but vsnprintf must.
68 // Work around a difference in Microsoft's implementation of vsnprintf, where
69 // vsnprintf does not null terminate the buffer. WebKit can rely on the null termination.
70 #define vsnprintf(buffer, count, format, args) wtf_vsnprintf(buffer, count, format, args) macro
/external/libxml2/
H A Dtrio.h179 # define vsnprintf trio_vsnprintf macro
/external/libxslt/libxslt/
H A Dtrio.h179 # define vsnprintf trio_vsnprintf macro
/external/tcpdump/
H A Dtcpdump-stdinc.h98 #define vsnprintf _vsnprintf macro
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstringutils.h78 // strchr, vsnprintf, strtoul, tolowercase
113 #ifndef vsnprintf
114 inline int vsnprintf(char* buf, size_t n, const char* fmt, va_list args) { function
117 inline int vsnprintf(wchar_t* buf, size_t n, const wchar_t* fmt, va_list args) { function
120 #endif // !vsnprintf
197 // Safe versions of strncpy, strncat, snprintf and vsnprintf that always
231 int len = vsnprintf(buffer, buflen, format, args);
/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
/external/qemu/distrib/zlib-1.2.3/
H A Dzutil.h190 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
198 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
199 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
200 # define vsnprintf _vsnprintf macro
/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/valgrind/tsan/
H A Dts_util.h212 #define vsnprintf(a1, a2, a3, a4) VG_(vsnprintf)((Char*)a1, a2, a3, a4) macro
/external/zlib/src/
H A Dgzguts.h62 /* vsnprintf may exist on some MS-DOS compilers (DJGPP?),
70 /* In Win32, vsnprintf is available as the "non-ANSI" _vsnprintf. */
71 # if !defined(vsnprintf) && !defined(NO_vsnprintf)
73 # define vsnprintf _vsnprintf macro
/external/valgrind/main/coregrind/
H A Dm_libcprint.c229 UInt VG_(vsnprintf) ( Char* buf, Int size, const HChar *format, va_list vargs ) function
247 ret = VG_(vsnprintf)(buf, size, format, vargs);
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dcommon.h92 #undef vsnprintf macro
93 #define vsnprintf _vsnprintf macro
337 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
338 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.h80 #undef vsnprintf macro
81 #define vsnprintf _vsnprintf macro
336 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
337 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
336 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
337 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
336 /* vsnprintf - only used for wpa_msg() in wpa_supplicant.c */
337 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
/external/openssh/openbsd-compat/
H A Dbsd-snprintf.c44 * The original code assumed that both snprintf() and vsnprintf() were
45 * missing. Some systems only have snprintf() but not vsnprintf(), so
832 vsnprintf (char *str, size_t count, const char *fmt, va_list args) function
846 ret = vsnprintf(str, count, fmt, ap);
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest.cc53 // Declares vsnprintf(). This header is not available on Windows.
113 #define vsnprintf _vsnprintf macro
1487 // MSVC 8 deprecates vsnprintf(), so we want to suppress warning
1493 vsnprintf(buffer, sizeof(buffer)/sizeof(buffer[0]) - 1, format, args);
1497 vsnprintf(buffer, sizeof(buffer)/sizeof(buffer[0]) - 1, format, args);
/external/chromium/testing/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/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/llvm/utils/unittest/googletest/
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

Completed in 552 milliseconds

12