Lines Matching refs:fmt
84 void Writer::logf(const char *fmt, ...) in logf() argument
90 va_start(ap, fmt); in logf()
91 Writer::logvf(fmt, ap); // the Writer:: is needed to avoid virtual dispatch for LockedWriter in logf()
106 void Writer::logFormat(const char *fmt, log_hash_t hash, ...) in logFormat() argument
113 Writer::logVFormat(fmt, hash, ap); in logFormat()
187 void Writer::logvf(const char *fmt, va_list ap) in logvf() argument
193 int length = vsnprintf(buffer, sizeof(buffer), fmt, ap); in logvf()
204 void Writer::logStart(const char *fmt) in logStart() argument
209 size_t length = strlen(fmt); in logStart()
213 log(EVENT_FMT_START, fmt, length); in logStart()
229 void Writer::logVFormat(const char *fmt, log_hash_t hash, va_list argp) in logVFormat() argument
234 Writer::logStart(fmt); in logVFormat()
243 for (const char *p = fmt; *p != '\0'; p++) { in logVFormat()