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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
va_arg.cpp 11 int vsnprintf(char * , size_t, const char * , va_list) ;
15 vsnprintf(buffer, count, format, argptr);
  /external/skia/src/gpu/
GrPrintf_printf.cpp 23 vsnprintf(buffer, MAX_BUFFER_SIZE, format, args);
GrPrintf_skia.cpp 25 vsnprintf(buffer, MAX_BUFFER_SIZE, format, args);
  /external/skia/src/ports/
SkDebug_stdio.cpp 21 vsnprintf(buffer, kBufferSize, format, args);
SkDebug_win.cpp 23 vsnprintf(buffer, kBufferSize, format, args);
SkDebug_brew.cpp 23 VSNPRINTF(buffer, kBufferSize, format, args);
  /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);
  /bionic/libc/stdio/
__vsnprintf_chk.c 42 * This vsnprintf check is called if _FORTIFY_SOURCE is defined and
55 "*** vsnprintf buffer overflow detected ***\n");
59 return vsnprintf(dest, supplied_size, format, va);
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
  /external/openssh/openbsd-compat/regress/
snprintftest.c 41 ret = vsnprintf(str, count, fmt, ap);
66 /* check that snprintf and vsnprintf return sane values */
70 fail("vsnprintf does not return required length");
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
debug.cpp 28 vsnprintf(buf, kTraceBufferLen, format, args);
  /external/chromium/base/
string_util_posix.h 32 inline int vsnprintf(char* buffer, size_t size, function in namespace:base
34 return ::vsnprintf(buffer, size, format, arguments);
  /external/libnfc-nci/src/adaptation/
android_logmsg.cpp 49 vsnprintf(buffer, BTE_LOG_MAX_SIZE, fmt_str, ap);
72 vsnprintf(buffer, BTE_LOG_MAX_SIZE, fmt_str, ap);
  /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);
  /external/skia/tests/
StringTest.cpp 13 // Windows vsnprintf doesn't 0-terminate safely), but is so far
17 #define VSNPRINTF(buffer, size, format, args) \
20 #define VSNPRINTF vsnprintf
27 VSNPRINTF(buffer, size, format, args); \
  /external/clang/test/Sema/
builtin-object-size.c 23 // rdar://6252231 - cannot call vsnprintf with va_list on x86_64
  /external/linux-tools-perf/util/
path.c 2 * I'm tired of doing "vsnprintf()" etc just to open a
69 len += vsnprintf(buf + len, n - len, fmt, args);
95 len = vsnprintf(pathname, PATH_MAX, fmt, args);
116 len += vsnprintf(pathname + len, PATH_MAX - len, fmt, args);
strbuf.c 92 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
95 die("your vsnprintf is broken");
99 len = vsnprintf(sb->buf + sb->len, sb->alloc - sb->len, fmt, ap);
  /external/linux-tools-perf/util/ui/
helpline.c 60 ret = vsnprintf(ui_helpline__last_msg + backlog,
  /external/webkit/Source/JavaScriptCore/wtf/
StringExtras.h 61 // 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/regex-re2/util/
stringprintf.cc 18 int result = vsnprintf(space, sizeof(space), format, backup_ap);
41 result = vsnprintf(buf, length, format, backup_ap);
  /external/compiler-rt/lib/tsan/rtl/
tsan_printf.cc 23 int VSNPrintf(char *buff, int buff_length, const char *format, va_list args);
34 uptr len = VSNPrintf(buffer.data(), buffer.size(), format, args);
  /external/openssh/openbsd-compat/
bsd-asprintf.c 54 ret = vsnprintf(string, INIT_SZ, fmt, ap2);
68 ret = vsnprintf(newstr, len, fmt, ap2);
  /hardware/invensense/mlsdk/platform/linux/
log_linux.c 42 #define vsnprintf _vsnprintf macro
101 result = vsnprintf(buf,sizeof(buf),new_fmt, args);
  /bionic/libc/bionic/
logd_write.c 169 * C library functions like vsnprintf()
177 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
189 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);
203 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap);

Completed in 858 milliseconds

1 2 3 4 5 6 7 8 91011>>