Lines Matching refs:fmt
190 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) in __android_log_vprint() argument
194 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_vprint()
199 int __android_log_print(int prio, const char *tag, const char *fmt, ...) in __android_log_print() argument
204 va_start(ap, fmt); in __android_log_print()
205 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_print()
211 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) in __android_log_buf_print() argument
216 va_start(ap, fmt); in __android_log_buf_print()
217 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_buf_print()
224 const char *fmt, ...) in __android_log_assert() argument
228 if (fmt) { in __android_log_assert()
230 va_start(ap, fmt); in __android_log_assert()
231 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_assert()