Lines Matching refs:fmt
192 int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap) in __android_log_vprint() argument
196 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_vprint()
201 int __android_log_print(int prio, const char *tag, const char *fmt, ...) in __android_log_print() argument
206 va_start(ap, fmt); in __android_log_print()
207 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_print()
213 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...) in __android_log_buf_print() argument
218 va_start(ap, fmt); in __android_log_buf_print()
219 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_buf_print()
226 const char *fmt, ...) in __android_log_assert() argument
230 if (fmt) { in __android_log_assert()
232 va_start(ap, fmt); in __android_log_assert()
233 vsnprintf(buf, LOG_BUF_SIZE, fmt, ap); in __android_log_assert()