Home | History | Annotate | Download | only in ui

Lines Matching defs:args

8 static int perf_stdio__error(const char *format, va_list args)
11 vfprintf(stderr, format, args);
15 static int perf_stdio__warning(const char *format, va_list args)
18 vfprintf(stderr, format, args);
34 va_list args;
36 va_start(args, format);
37 ret = perf_eops->error(format, args);
38 va_end(args);
46 va_list args;
48 va_start(args, format);
49 ret = perf_eops->warning(format, args);
50 va_end(args);