HomeSort by relevance Sort by last modified time
    Searched full:vsnprintf (Results 1 - 25 of 251) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/genext2fs/m4/
ac_func_snprintf.m4 7 dnl length; does the same check for vsnprintf. If no working snprintf
8 dnl or vsnprintf is found, request a replacement and warn the user
19 [AC_CHECK_FUNCS(snprintf vsnprintf)
39 AC_MSG_CHECKING(for working vsnprintf)
50 i = vsnprintf (buf, 2, tmpl, args);
  /external/clearsilver/util/
osdep.h 28 int vsnprintf (char *str, size_t count, const char *fmt, va_list arg);
neo_misc.h 91 int vsnprintf (char *str, size_t count, const char *fmt, va_list arg);
  /external/libpcap/lbl/
os-osf5.h 26 * XXX - "snprintf()" and "vsnprintf()" aren't missing, but you have to
30 int vsnprintf(char *, size_t, const char *, va_list);
os-osf4.h 26 int vsnprintf(char *, size_t, const char *, va_list);
  /external/skia/src/ports/
SkDebug_stdio.cpp 29 vsnprintf(buffer, kBufferSize, format, args);
SkDebug_android.cpp 34 vsnprintf(buffer, kBufferSize, format, args);
  /bionic/libc/stdio/
vsnprintf.c 1 /* $OpenBSD: vsnprintf.c,v 1.12 2006/01/06 18:53:04 millert Exp $ */
40 vsnprintf(char *str, size_t n, const char *fmt, __va_list ap) function
vsprintf.c 41 "warning: vsprintf() is often misused, please use vsnprintf()");
  /external/clearsilver/
acconfig.h 33 /* Does your system have the vsnprintf() call? */
  /external/qemu/distrib/zlib-1.2.3/
zutil.h 190 /* 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/lbl/
os-osf4.h 26 int vsnprintf(char *, size_t, const char *, va_list);
  /external/zlib/
zutil.h 190 /* 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/stlport/stlport/stl/
_cstdio.h 47 inline int vsnprintf(char *s1, size_t n, const char *s2, va_list v) function
121 using _STLP_VENDOR_CSTD::vsnprintf;
  /development/simulator/wrapsim/
Log.c 53 msgLen = vsnprintf(msgBuf, sizeof(msgBuf), format, args);
  /external/bluetooth/glib/glib/
gprintfint.h 40 #define _g_vsnprintf vsnprintf
  /external/libpcap/
pcap-stdinc.h 63 #define vsnprintf _vsnprintf macro
  /system/core/liblog/
logd_write.c 194 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
205 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
217 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
230 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
  /bionic/libc/bionic/
logd_write.c 153 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
164 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
177 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
  /external/bluetooth/glib/
acinclude.m4 3 dnl Check whether there is a vsnprintf() function with C99 semantics installed.
6 [AC_CACHE_CHECK(for C99 vsnprintf,
20 r = vsnprintf(buffer, 5, s, args);
26 /* AIX 5.1 and Solaris seems to have a half-baked vsnprintf()
30 r = vsnprintf(buffer, 0, s, args);
46 dnl If you know that the target has a C99 vsnprintf(), you can get around this
50 [Define if you have a version of the vsnprintf function
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
wpa_debug.c 310 len = vsnprintf(buf, buflen, fmt, ap);
336 len = vsnprintf(buf, buflen, fmt, ap);
368 len = vsnprintf(buf, buflen, fmt, ap);
common.h 92 #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);
  /bionic/libstdc++/include/
cstdio 88 using ::vsnprintf;
  /bootable/recovery/
verifier_test.c 65 vsnprintf(buf, 256, fmt, ap);
  /external/quake/quake/src/WinQuake/
main.cpp 46 vsnprintf(buf, sizeof(buf), fmt, ap);

Completed in 568 milliseconds

1 2 3 4 5 6 7 8 91011