Lines Matching refs:ap

78                                  const char *op, const char *fmt, va_list ap)  in test_fail_message_va()  argument
82 test_vprintf_stderr(fmt, ap); in test_fail_message_va()
93 va_list ap; in test_fail_message() local
95 va_start(ap, fmt); in test_fail_message()
96 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap); in test_fail_message()
97 va_end(ap); in test_fail_message()
102 va_list ap; in test_info_c90() local
104 va_start(ap, desc); in test_info_c90()
105 test_fail_message_va("INFO", NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_info_c90()
106 va_end(ap); in test_info_c90()
111 va_list ap; in test_info() local
113 va_start(ap, desc); in test_info()
114 test_fail_message_va("INFO", file, line, NULL, NULL, NULL, NULL, desc, ap); in test_info()
115 va_end(ap); in test_info()
120 va_list ap; in test_error_c90() local
122 va_start(ap, desc); in test_error_c90()
123 test_fail_message_va(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_error_c90()
124 va_end(ap); in test_error_c90()
130 va_list ap; in test_error() local
132 va_start(ap, desc); in test_error()
133 test_fail_message_va(NULL, file, line, NULL, NULL, NULL, NULL, desc, ap); in test_error()
134 va_end(ap); in test_error()
150 va_list ap; in test_note() local
152 va_start(ap, fmt); in test_note()
153 test_vprintf_stderr(fmt, ap); in test_note()
154 va_end(ap); in test_note()
163 va_list ap; in test_skip() local
165 va_start(ap, desc); in test_skip()
166 test_fail_message_va("SKIP", file, line, NULL, NULL, NULL, NULL, desc, ap); in test_skip()
167 va_end(ap); in test_skip()
173 va_list ap; in test_skip_c90() local
175 va_start(ap, desc); in test_skip_c90()
176 test_fail_message_va("SKIP", NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_skip_c90()
177 va_end(ap); in test_skip_c90()