Home | History | Annotate | Download | only in tests

Lines Matching refs:fmt

65 void perfprofd_mocklog(const char *tag, const char *fmt, va_list ap)
69 vsnprintf(buffer+strlen(tag), LMAX, fmt, ap);
74 void perfprofd_log_error(const char *fmt, ...)
77 va_start(ap, fmt);
78 vfprintf(stderr, fmt, ap); fprintf(stderr, "\n");
79 perfprofd_mocklog("E: ", fmt, ap);
83 void perfprofd_log_warning(const char *fmt, ...)
86 va_start(ap, fmt);
87 vfprintf(stderr, fmt, ap); fprintf(stderr, "\n");
88 perfprofd_mocklog("W: ", fmt, ap);
92 void perfprofd_log_info(const char *fmt, ...)
95 va_start(ap, fmt);
96 vfprintf(stderr, fmt, ap); fprintf(stderr, "\n");
97 perfprofd_mocklog("I: ", fmt, ap);