Lines Matching refs:fmt
238 error_in_expect(struct context *ctx, const char *fmt, ...)
243 va_start(ap, fmt);
244 format_reason_ap(&reason, NULL, 0, fmt, ap);
767 atf_tc_set_md_var(atf_tc_t *tc, const char *name, const char *fmt, ...)
773 va_start(ap, fmt);
774 err = atf_text_format_ap(&value, fmt, ap);
814 _atf_tc_fail(struct context *ctx, const char *fmt, va_list ap)
820 format_reason_ap(&reason, NULL, 0, fmt, ap2);
828 _atf_tc_fail_nonfatal(struct context *ctx, const char *fmt, va_list ap)
834 format_reason_ap(&reason, NULL, 0, fmt, ap2);
842 const char *fmt, va_list ap)
848 format_reason_ap(&reason, file, line, fmt, ap2);
856 const size_t line, const char *fmt, va_list ap)
862 format_reason_ap(&reason, file, line, fmt, ap2);
883 _atf_tc_skip(struct context *ctx, const char *fmt, va_list ap)
889 format_reason_ap(&reason, NULL, 0, fmt, ap2);
1059 atf_tc_fail(const char *fmt, ...)
1065 va_start(ap, fmt);
1066 _atf_tc_fail(&Current, fmt, ap);
1071 atf_tc_fail_nonfatal(const char *fmt, ...)
1077 va_start(ap, fmt);
1078 _atf_tc_fail_nonfatal(&Current, fmt, ap);
1083 atf_tc_fail_check(const char *file, const size_t line, const char *fmt, ...)
1089 va_start(ap, fmt);
1090 _atf_tc_fail_check(&Current, file, line, fmt, ap);
1096 const char *fmt, ...)
1102 va_start(ap, fmt);
1103 _atf_tc_fail_requirement(&Current, file, line, fmt, ap);
1124 atf_tc_skip(const char *fmt, ...)
1130 va_start(ap, fmt);
1131 _atf_tc_skip(&Current, fmt, ap);