Lines Matching refs:args
9 static int perf_stdio__error(const char *format, va_list args)
12 vfprintf(stderr, format, args);
16 static int perf_stdio__warning(const char *format, va_list args)
19 vfprintf(stderr, format, args);
35 va_list args;
37 va_start(args, format);
38 ret = perf_eops->error(format, args);
39 va_end(args);
47 va_list args;
49 va_start(args, format);
50 ret = perf_eops->warning(format, args);
51 va_end(args);