Searched refs:fmt (Results 1 - 25 of 82) sorted by relevance

1234

/bind-9.11.3/lib/isc/include/isc/
H A Dformatcheck.h19 * \li fmt is the location of the format string parameter.
26 #define ISC_FORMAT_PRINTF(fmt, args) __attribute__((__format__(__printf__, fmt, args)))
28 #define ISC_FORMAT_PRINTF(fmt, args)
H A Dtm.h31 isc_tm_strptime(const char *buf, const char *fmt, struct tm *tm);
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Dlog.h24 perf_log_printf(const char *fmt, ...);
27 perf_log_fatal(const char *fmt, ...);
30 perf_log_warning(const char *fmt, ...);
H A Dlog.c29 vlog(FILE *stream, const char *prefix, const char *fmt, va_list args) argument
35 vfprintf(stream, fmt, args);
41 perf_log_printf(const char *fmt, ...) argument
44 va_start(args, fmt);
45 vlog(stdout, NULL, fmt, args);
49 perf_log_fatal(const char *fmt, ...) argument
52 va_start(args, fmt);
53 vlog(stderr, "Error", fmt, args);
58 perf_log_warning(const char *fmt, ...) argument
61 va_start(args, fmt);
[all...]
/bind-9.11.3/contrib/idn/idnkit-1.0-src/include/idn/
H A Dlog.h77 IDN_EXPORT void idn_log_fatal(const char *fmt, ...);
78 IDN_EXPORT void idn_log_error(const char *fmt, ...);
79 IDN_EXPORT void idn_log_warning(const char *fmt, ...);
80 IDN_EXPORT void idn_log_info(const char *fmt, ...);
81 IDN_EXPORT void idn_log_trace(const char *fmt, ...);
82 IDN_EXPORT void idn_log_dump(const char *fmt, ...);
/bind-9.11.3/contrib/idn/idnkit-1.0-src/lib/
H A Dlog.c70 static void log(int level, const char *fmt, va_list args);
74 idn_log_fatal(const char *fmt, ...) { argument
77 va_start(args, fmt);
78 log(idn_log_level_fatal, fmt, args);
84 idn_log_error(const char *fmt, ...) { argument
87 va_start(args, fmt);
88 log(idn_log_level_error, fmt, args);
93 idn_log_warning(const char *fmt, ...) { argument
96 va_start(args, fmt);
97 log(idn_log_level_warning, fmt, arg
102 idn_log_info(const char *fmt, ...) argument
111 idn_log_trace(const char *fmt, ...) argument
120 idn_log_dump(const char *fmt, ...) argument
168 log(int level, const char *fmt, va_list args) argument
[all...]
/bind-9.11.3/lib/dns/
H A Dcallbacks.c26 isclog_error_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...)
30 isclog_warn_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...)
39 const char *fmt, ...)
45 va_start(ap, fmt);
46 vfprintf(stderr, fmt, ap);
52 isclog_error_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...) { argument
57 va_start(ap, fmt);
60 ISC_LOG_ERROR, fmt, ap);
65 isclog_warn_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...) { argument
70 va_start(ap, fmt);
38 stdio_error_warn_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...) argument
[all...]
/bind-9.11.3/unit/atf-src/atf-c/detail/
H A Dsanity.c39 fail(const char *fmt, ...) argument
44 va_start(ap, fmt);
45 vsnprintf(buf, sizeof(buf), fmt, ap);
H A Ddynstr.c68 prepend_or_append(atf_dynstr_t *ad, const char *fmt, va_list ap, argument
77 err = atf_text_format_ap(&aux, fmt, ap2);
138 atf_dynstr_init_ap(atf_dynstr_t *ad, const char *fmt, va_list ap) argument
142 ad->m_datasize = strlen(fmt) + 1;
157 ret = vsnprintf(ad->m_data, ad->m_datasize, fmt, ap2);
180 atf_dynstr_init_fmt(atf_dynstr_t *ad, const char *fmt, ...) argument
185 va_start(ap, fmt);
186 err = atf_dynstr_init_ap(ad, fmt, ap);
322 atf_dynstr_append_ap(atf_dynstr_t *ad, const char *fmt, va_list ap) argument
328 err = prepend_or_append(ad, fmt, ap
335 atf_dynstr_append_fmt(atf_dynstr_t *ad, const char *fmt, ...) argument
355 atf_dynstr_prepend_ap(atf_dynstr_t *ad, const char *fmt, va_list ap) argument
368 atf_dynstr_prepend_fmt(atf_dynstr_t *ad, const char *fmt, ...) argument
[all...]
H A Dtext.c64 atf_text_format(char **dest, const char *fmt, ...) argument
69 va_start(ap, fmt);
70 err = atf_text_format_ap(dest, fmt, ap);
77 atf_text_format_ap(char **dest, const char *fmt, va_list ap) argument
84 err = atf_dynstr_init_ap(&tmp, fmt, ap2);
/bind-9.11.3/bin/confgen/
H A Dutil.c28 notify(const char *fmt, ...) { argument
32 va_start(ap, fmt);
33 vfprintf(stderr, fmt, ap);
H A Dutil.h36 notify(const char *fmt, ...) ISC_FORMAT_PRINTF(1, 2);
/bind-9.11.3/bin/rndc/
H A Dutil.c28 notify(const char *fmt, ...) { argument
32 va_start(ap, fmt);
33 vfprintf(stderr, fmt, ap);
H A Dutil.h36 notify(const char *fmt, ...) ISC_FORMAT_PRINTF(1, 2);
/bind-9.11.3/bin/tests/system/dyndb/driver/
H A Dlog.h15 #define log_error_r(fmt, ...) \
16 log_error(fmt ": %s", ##__VA_ARGS__, dns_result_totext(result))
/bind-9.11.3/contrib/idn/idnkit-1.0-src/wsock/common/
H A Dprintf.c65 idnPrintf(char *fmt, ...) { argument
73 va_start(arg_ptr, fmt);
74 vsprintf(msg, fmt, arg_ptr);
85 idnLogPrintf(int level, char *fmt, ...) { argument
93 va_start(arg_ptr, fmt);
94 vsprintf(msg, fmt, arg_ptr);
H A Dwrapcommon.h57 extern void idnPrintf(char *fmt, ...);
58 extern void idnLogPrintf(int level, char *fmt, ...);
/bind-9.11.3/lib/lwres/
H A Dprint_p.h40 #define LWRES_FORMAT_PRINTF(fmt, args) \
41 __attribute__((__format__(__printf__, fmt, args)))
43 #define LWRES_FORMAT_PRINTF(fmt, args)
/bind-9.11.3/unit/atf-src/atf-c/
H A Dmacros.h130 #define ATF_REQUIRE_MSG(expression, fmt, ...) \
133 atf_tc_fail_requirement(__FILE__, __LINE__, fmt, ##__VA_ARGS__); \
136 #define ATF_CHECK_MSG(expression, fmt, ...) \
139 atf_tc_fail_check(__FILE__, __LINE__, fmt, ##__VA_ARGS__); \
162 #define ATF_REQUIRE_EQ_MSG(expected, actual, fmt, ...) \
163 ATF_REQUIRE_MSG((expected) == (actual), "%s != %s: " fmt, \
166 #define ATF_CHECK_EQ_MSG(expected, actual, fmt, ...) \
167 ATF_CHECK_MSG((expected) == (actual), "%s != %s: " fmt, \
178 #define ATF_REQUIRE_STREQ_MSG(expected, actual, fmt, ...) \
180 "%s != %s (%s != %s): " fmt, \
[all...]
H A Dtc.c234 error_in_expect(struct context *ctx, const char *fmt, ...) argument
239 va_start(ap, fmt);
240 format_reason_ap(&reason, NULL, 0, fmt, ap);
765 atf_tc_set_md_var(atf_tc_t *tc, const char *name, const char *fmt, ...) argument
771 va_start(ap, fmt);
772 err = atf_text_format_ap(&value, fmt, ap);
812 _atf_tc_fail(struct context *ctx, const char *fmt, va_list ap) argument
818 format_reason_ap(&reason, NULL, 0, fmt, ap2);
826 _atf_tc_fail_nonfatal(struct context *ctx, const char *fmt, va_list ap) argument
832 format_reason_ap(&reason, NULL, 0, fmt, ap
839 _atf_tc_fail_check(struct context *ctx, const char *file, const size_t line, const char *fmt, va_list ap) argument
853 _atf_tc_fail_requirement(struct context *ctx, const char *file, const size_t line, const char *fmt, va_list ap) argument
881 _atf_tc_skip(struct context *ctx, const char *fmt, va_list ap) argument
1057 atf_tc_fail(const char *fmt, ...) argument
1069 atf_tc_fail_nonfatal(const char *fmt, ...) argument
1081 atf_tc_fail_check(const char *file, const size_t line, const char *fmt, ...) argument
1093 atf_tc_fail_requirement(const char *file, const size_t line, const char *fmt, ...) argument
1122 atf_tc_skip(const char *fmt, ...) argument
[all...]
/bind-9.11.3/unit/atf-src/tools/
H A Dui_test.cpp47 const char *fmt; member in struct:test
374 std::cout << "Input: >>>" << t->fmt << "<<<\n";
377 std::string result = tools::ui::format_text_with_tag(t->fmt, t->tag,
H A Datf-report_test.sh215 atf_check -s eq:0 -o empty -e empty -x 'atf-report -o csv:fmt.out <tps.out'
216 atf_check -s eq:0 -o empty -e empty cmp -s expcsv fmt.out
217 rm -f fmt.out
221 'atf-report -o csv:fmt.out -o csv:fmt2.out <tps.out'
222 atf_check -s eq:0 -o empty -e empty cmp -s expcsv fmt.out
223 atf_check -s eq:0 -o empty -e empty cmp -s fmt.out fmt2.out
224 rm -f fmt.out fmt2.out
228 'atf-report -o csv:fmt.out -o ticker:fmt2.out <tps.out'
229 atf_check -s eq:0 -o empty -e empty cmp -s expcsv fmt.out
230 atf_check -s eq:1 -o empty -e empty cmp -s fmt
[all...]
/bind-9.11.3/lib/isc/win32/
H A Dsyslog.h46 syslog(int level, const char *fmt, ...);
H A Dsyslog.c85 syslog(int level, const char *fmt, ...) { argument
92 va_start(ap, fmt);
93 vsprintf(buf, fmt, ap);
/bind-9.11.3/lib/isc/
H A Dtm.c136 isc_tm_strptime(const char *buf, const char *fmt, struct tm *tm) { argument
143 REQUIRE(fmt != NULL);
150 while ((c = *fmt) != '\0') {
159 fmt++;
163 if ((c = *fmt++) != '%')
167 again: switch (c = *fmt++) {

Completed in 2849 milliseconds

1234