Searched refs:strp (Results 1 – 2 of 2) sorted by relevance
/ndk/sources/android/support/src/ |
D | locale_support.c | 52 int vasprintf_l(char** strp, locale_t l, const char* fmt, va_list args) { in vasprintf_l() argument 54 return vasprintf(strp, fmt, args); in vasprintf_l() 57 int asprintf_l(char** strp, locale_t locale, const char* fmt, ...) { in asprintf_l() argument 60 int result = vasprintf_l(strp, locale, fmt, args); in asprintf_l()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
D | xlocale.h | 303 int vasprintf(char **strp, const char *fmt, va_list ap) in vasprintf() argument 307 if ((*strp = (char *)malloc(buff_size)) == NULL) in vasprintf() 311 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size) in vasprintf() 313 if ((*strp = (char *)realloc(*strp, str_size + 1)) == NULL) in vasprintf() 317 str_size = vsnprintf(*strp, str_size + 1, fmt, ap); in vasprintf()
|