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

1 2 3 4 56 7 8 91011>>

  /external/neven/Embedded/common/src/b_BasicEm/
String.h 65 * Not all possible format types of stdlib function vsnprintf are handled in this function
  /external/stressapptest/src/
logger.cc 40 int length = vsnprintf(buffer, sizeof buffer, format, args);
  /external/valgrind/main/drd/tests/
unit_vc.c 44 { UInt ret; va_list vargs; va_start(vargs, format); ret = vsnprintf(buf, size, format, vargs); va_end(vargs); return ret; }
  /external/wpa_supplicant_8/src/utils/
common.h 80 #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);
wpa_debug.c 619 len = vsnprintf(buf, buflen, fmt, ap);
645 len = vsnprintf(buf, buflen, fmt, ap);
677 len = vsnprintf(buf, buflen, fmt, ap);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
c++locale.h 66 // return length of string. If vsnprintf is available use it, otherwise
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
c++locale.h 66 // return length of string. If vsnprintf is available use it, otherwise
  /system/core/init/
parser.c 62 vsnprintf(buf + off, 128 - off, fmt, ap);
  /system/extras/tests/bionic/libstdc++/
test_cstdio.cpp 150 using std::vsnprintf;
  /external/webkit/Source/JavaScriptCore/wtf/
Assertions.cpp 125 int size = vsnprintf(0, 0, format, args);
128 vsnprintf(buffer.data(), size, format, args);
  /external/zlib/src/
configure 494 # return value. The most secure result is vsnprintf() with a return value. snprintf() with a
520 vsnprintf(buf, sizeof(buf), fmt, ap);
530 echo "Checking for vsnprintf() in stdio.h... Yes." | tee -a configure.log
542 n = vsnprintf(buf, sizeof(buf), fmt, ap);
553 echo "Checking for return value of vsnprintf()... Yes." | tee -a configure.log
557 echo "Checking for return value of vsnprintf()... No." | tee -a configure.log
558 echo " WARNING: apparently vsnprintf() does not return a value. zlib" | tee -a configure.log
565 echo "Checking for vsnprintf() in stdio.h... No." | tee -a configure.log
566 echo " WARNING: vsnprintf() not found, falling back to vsprintf(). zlib" | tee -a configure.log
  /external/webkit/Source/JavaScriptCore/wtf/text/
WTFString.cpp 337 // Use QString::vsprintf to avoid the locale dependent formatting of vsnprintf.
359 int written = vsnprintf(buffer.data(), bufferSize, format, args);
383 int result = vsnprintf(&ch, 1, format, args);
385 // contents of args is undefined after the call to vsnprintf
402 vsnprintf(buffer.data(), buffer.size(), format, args);
  /bionic/linker/
linker_format.c 164 * which calls vsnprintf().
170 vsnprintf(char *buff, size_t bufsize, const char *format, va_list args) function
185 ret = vsnprintf(buff, bufsize, format, args);
  /external/v8/src/
platform-posix.cc 293 int result = VSNPrintF(str, format, args);
299 int OS::VSNPrintF(Vector<char> str,
302 int n = vsnprintf(str.start(), str.length(), format, args);
  /external/libpcap/
pcap-int.h 300 #define vsnprintf pcap_vsnprintf macro
301 extern int vsnprintf (char *, size_t, const char *, va_list ap);
  /external/libxml2/
config.h 240 /* Define to 1 if you have the `vsnprintf' function. */
311 /* #undef vsnprintf */
  /external/openssh/
log.c 403 vsnprintf(msgbuf, sizeof(msgbuf), fmtbuf, args);
405 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/lib/
libc.so 
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/lib/
libc.so 
  /system/core/libsparse/
sparse_read.c 60 size = vsnprintf(NULL, 0, fmt, argp);
73 vsnprintf(at, size, fmt, argp);
  /bootable/recovery/mtdutils/
flash_image.c 36 vsnprintf(buf, sizeof(buf), msg, args);

Completed in 1340 milliseconds

1 2 3 4 56 7 8 91011>>