Lines Matching refs:fmt
388 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) in __android_log_vprint() argument
392 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_vprint()
397 int __android_log_print(int prio, const char *tag, const char *fmt, ...) in __android_log_print() argument
402 va_start(ap, fmt); in __android_log_print()
403 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_print()
409 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) in __android_log_buf_print() argument
414 va_start(ap, fmt); in __android_log_buf_print()
415 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_buf_print()
422 const char *fmt, ...) in __android_log_assert() argument
426 if (fmt) { in __android_log_assert()
428 va_start(ap, fmt); in __android_log_assert()
429 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_assert()