Home | History | Annotate | Download | only in src

Lines Matching defs:args

85 std::string FormatString(const char* msg, va_list args) {
88 va_copy(args_cp, args);
107 ret = std::vsnprintf(buff.get(), size, msg, args);
114 va_list args;
115 va_start(args, msg);
116 auto tmp = FormatString(msg, args);
117 va_end(args);
122 va_list args;
123 va_start(args, fmt);
124 ColorPrintf(out, color, fmt, args);
125 va_end(args);
129 va_list args) {
146 vprintf(fmt, args);
154 out << FormatString(fmt, args) << "\033[m";