Lines Matching refs:ap
12 va_list ap; in test_skip() local
14 va_start(ap, format); in test_skip()
15 malloc_vcprintf(NULL, NULL, format, ap); in test_skip()
16 va_end(ap); in test_skip()
25 va_list ap; in test_fail() local
27 va_start(ap, format); in test_fail()
28 malloc_vcprintf(NULL, NULL, format, ap); in test_fail()
29 va_end(ap); in test_fail()
61 p_test_impl(bool do_malloc_init, test_t *t, va_list ap) in p_test_impl() argument
79 for (; t != NULL; t = va_arg(ap, test_t *)) { in p_test_impl()
100 va_list ap; in p_test() local
103 va_start(ap, t); in p_test()
104 ret = p_test_impl(true, t, ap); in p_test()
105 va_end(ap); in p_test()
114 va_list ap; in p_test_no_malloc_init() local
117 va_start(ap, t); in p_test_no_malloc_init()
118 ret = p_test_impl(false, t, ap); in p_test_no_malloc_init()
119 va_end(ap); in p_test_no_malloc_init()