Lines Matching refs:fmt
127 void log(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in log() argument
131 va_start(ap, fmt); in log()
132 StringAppendV(&result, fmt, ap); in log()
142 void info(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in info() argument
146 va_start(ap, fmt); in info()
147 StringAppendV(&result, fmt, ap); in info()
157 void warn(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in warn() argument
161 va_start(ap, fmt); in warn()
162 StringAppendV(&result, fmt, ap); in warn()
172 void error(const char* fmt, ...) __attribute__((__format__(__printf__, 2, 3))) { in error() argument
176 va_start(ap, fmt); in error()
177 StringAppendV(&result, fmt, ap); in error()