HomeSort by relevance Sort by last modified time
    Searched refs:vsnprintf (Results 276 - 300 of 380) sorted by null

<<111213141516

  /external/zlib/src/
configure 536 # return value. The most secure result is vsnprintf() with a return value. snprintf() with a
562 vsnprintf(buf, sizeof(buf), fmt, ap);
572 echo "Checking for vsnprintf() in stdio.h... Yes." | tee -a configure.log
584 n = vsnprintf(buf, sizeof(buf), fmt, ap);
595 echo "Checking for return value of vsnprintf()... Yes." | tee -a configure.log
599 echo "Checking for return value of vsnprintf()... No." | tee -a configure.log
600 echo " WARNING: apparently vsnprintf() does not return a value. zlib" | tee -a configure.log
607 echo "Checking for vsnprintf() in stdio.h... No." | tee -a configure.log
608 echo " WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | tee -a configure.log
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
stdio.h 350 int vsnprintf (char *__stream, size_t __n, const char *__format, __builtin_va_list __local_argv) function
546 * vsnprintf as _vsnprintf, eg. libxml2. */
548 #pragma push_macro("vsnprintf")
550 # undef vsnprintf macro
556 int vsnprintf (char * __restrict__ __stream, size_t __n, const char * __restrict__ __format, va_list __local_argv) function
576 #pragma pop_macro ("vsnprintf")
    [all...]
  /art/runtime/openjdkjvm/
OpenjdkJvm.cc 224 return vsnprintf(str, count, fmt, args);
  /bootable/recovery/
wear_ui.cpp 382 vsnprintf(buf, 256, fmt, ap);
  /external/dbus/bus/
selinux.c 159 vsnprintf(buf, sizeof(buf), fmt, ap);
  /external/dhcpcd-6.8.2/dbus/
rpc-dbus.c 286 vsnprintf(buffer, sizeof(buffer), fmt, args);
  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 205 vsnprintf(buffer, sizeof(buffer), fmt, list);
  /external/iputils/ninfod/
ninfod.c 190 res = vsnprintf(buf + res, rem, fmt, ap);
  /external/libvncserver/client_examples/
gtkvncviewer.c 536 vsnprintf (buf, 255, format, args);
  /external/libvpx/libvpx/vpx/src/
svc_encodeframe.c 117 retval = vsnprintf(buf, sizeof(buf), fmt, ap);
  /external/libxml2/
testrecurse.c 321 res = vsnprintf(&testErrors[testErrorsSize],
xmllint.c 656 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
694 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
730 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
767 vsnprintf(&buffer[len], sizeof(buffer) - len, msg, args);
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmserr.c 561 vsnprintf(Buffer, MAX_ERROR_MESSAGE_LEN-1, ErrorText, args);
  /external/skia/src/core/
SkString.cpp 21 #define VSNPRINTF(buffer, size, format, args) \
25 #define VSNPRINTF vsnprintf
33 written = VSNPRINTF(buffer, size, format, args); \
573 int length = VSNPRINTF(buffer, kBufferSize, format, args);
589 int length = VSNPRINTF(buffer, kBufferSize, format, args);
674 #undef VSNPRINTF
  /external/skia/src/utils/
SkDumpCanvas.cpp 187 vsnprintf(buffer, BUFFER_SIZE, format, args);
  /external/tinycompress/
compress.c 102 vsnprintf(compress->error, COMPR_ERR_MAX, fmt, ap);
  /external/v8/src/base/platform/
platform-posix.cc 501 int result = VSNPrintF(str, length, format, args);
507 int OS::VSNPrintF(char* str,
511 int n = vsnprintf(str, length, format, args);
  /external/wpa_supplicant_8/src/utils/
common.c 270 ret = vsnprintf(buf, size, fmt, ap);
  /ndk/sources/android/support/src/stdio/
vfprintf.c 716 int vsnprintf(char *restrict s, size_t n, const char *restrict fmt, va_list ap) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
stdio.h 367 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 391 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
system.h 531 extern int vsnprintf(char *, size_t, const char *, va_list);
    [all...]
  /external/opencv3/modules/python/src2/
cv2.cpp 28 vsnprintf(str, sizeof(str), fmt, ap);
131 vsnprintf(str, sizeof(str), fmt, ap);
    [all...]
  /external/libxml2/python/
libxml.c 33 #define vsnprintf trio_vsnprintf macro
1143 vsnprintf(buf, 1023, msg, args);
    [all...]
  /external/dbus/dbus/
dbus-sysdeps-unix.c     [all...]

Completed in 1103 milliseconds

<<111213141516