Home | History | Annotate | Download | only in lite

Lines Matching refs:args

24   va_list args;
25 va_start(args, format);
26 int code = Report(format, args);
27 va_end(args);
34 va_list args;
35 va_start(args, format);
36 int code = Report(format, args);
37 va_end(args);
41 int StderrReporter::Report(const char* format, va_list args) {
42 const int result = vfprintf(stderr, format, args);