Lines Matching refs:ap

77                                  const char *op, const char *fmt, va_list ap)  in test_fail_message_va()  argument
81 test_vprintf_stderr(fmt, ap); in test_fail_message_va()
92 va_list ap; in test_fail_message() local
94 va_start(ap, fmt); in test_fail_message()
95 test_fail_message_va(prefix, file, line, type, left, right, op, fmt, ap); in test_fail_message()
96 va_end(ap); in test_fail_message()
101 va_list ap; in test_info_c90() local
103 va_start(ap, desc); in test_info_c90()
104 test_fail_message_va("INFO", NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_info_c90()
105 va_end(ap); in test_info_c90()
110 va_list ap; in test_info() local
112 va_start(ap, desc); in test_info()
113 test_fail_message_va("INFO", file, line, NULL, NULL, NULL, NULL, desc, ap); in test_info()
114 va_end(ap); in test_info()
119 va_list ap; in test_error_c90() local
121 va_start(ap, desc); in test_error_c90()
122 test_fail_message_va(NULL, NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_error_c90()
123 va_end(ap); in test_error_c90()
129 va_list ap; in test_error() local
131 va_start(ap, desc); in test_error()
132 test_fail_message_va(NULL, file, line, NULL, NULL, NULL, NULL, desc, ap); in test_error()
133 va_end(ap); in test_error()
149 va_list ap; in test_note() local
151 va_start(ap, fmt); in test_note()
152 test_vprintf_stderr(fmt, ap); in test_note()
153 va_end(ap); in test_note()
162 va_list ap; in test_skip() local
164 va_start(ap, desc); in test_skip()
165 test_fail_message_va("SKIP", file, line, NULL, NULL, NULL, NULL, desc, ap); in test_skip()
166 va_end(ap); in test_skip()
172 va_list ap; in test_skip_c90() local
174 va_start(ap, desc); in test_skip_c90()
175 test_fail_message_va("SKIP", NULL, -1, NULL, NULL, NULL, NULL, desc, ap); in test_skip_c90()
176 va_end(ap); in test_skip_c90()