Searched defs:fmt (Results 1 - 25 of 45) sorted by relevance

12

/bind-9.6-ESV-R11/bin/rndc/
H A Dutil.c36 notify(const char *fmt, ...) { argument
40 va_start(ap, fmt);
41 vfprintf(stderr, fmt, ap);
/bind-9.6-ESV-R11/lib/dns/
H A Dcallbacks.c34 isclog_error_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...)
38 isclog_warn_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...)
47 const char *fmt, ...)
53 va_start(ap, fmt);
54 vfprintf(stderr, fmt, ap);
60 isclog_error_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...) { argument
65 va_start(ap, fmt);
68 ISC_LOG_ERROR, fmt, ap);
73 isclog_warn_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...) { argument
78 va_start(ap, fmt);
46 stdio_error_warn_callback(dns_rdatacallbacks_t *callbacks, const char *fmt, ...) argument
[all...]
H A Dgssapictx.c809 gss_log(int level, const char *fmt, ...) { argument
812 va_start(ap, fmt);
814 DNS_LOGMODULE_TKEY, ISC_LOG_DEBUG(level), fmt, ap);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/detail/
H A Dsanity.c43 fail(const char *fmt, ...) argument
48 va_start(ap, fmt);
49 vsnprintf(buf, sizeof(buf), fmt, ap);
H A Dtext.c68 atf_text_format(char **dest, const char *fmt, ...) argument
73 va_start(ap, fmt);
74 err = atf_text_format_ap(dest, fmt, ap);
81 atf_text_format_ap(char **dest, const char *fmt, va_list ap) argument
88 err = atf_dynstr_init_ap(&tmp, fmt, ap2);
H A Ddynstr_test.c66 init_fmt(atf_dynstr_t *str, const char *fmt, ...) argument
70 va_start(ap, fmt);
71 RE(atf_dynstr_init_ap(str, fmt, ap));
413 append_ap_aux(atf_dynstr_t *str, const char *fmt, ...) argument
418 va_start(ap, fmt);
419 err = atf_dynstr_append_ap(str, fmt, ap);
525 prepend_ap_aux(atf_dynstr_t *str, const char *fmt, ...) argument
530 va_start(ap, fmt);
531 err = atf_dynstr_prepend_ap(str, fmt, ap);
H A Dtext_test.c206 format_ap(char **dest, const char *fmt, ...) argument
211 va_start(ap, fmt);
212 err = atf_text_format_ap(dest, fmt, ap);
H A Ddynstr.c72 prepend_or_append(atf_dynstr_t *ad, const char *fmt, va_list ap, argument
81 err = atf_text_format_ap(&aux, fmt, ap2);
142 atf_dynstr_init_ap(atf_dynstr_t *ad, const char *fmt, va_list ap) argument
146 ad->m_datasize = strlen(fmt) + 1;
161 ret = vsnprintf(ad->m_data, ad->m_datasize, fmt, ap2);
184 atf_dynstr_init_fmt(atf_dynstr_t *ad, const char *fmt, ...) argument
189 va_start(ap, fmt);
190 err = atf_dynstr_init_ap(ad, fmt, ap);
326 atf_dynstr_append_ap(atf_dynstr_t *ad, const char *fmt, va_list ap) argument
332 err = prepend_or_append(ad, fmt, ap
339 atf_dynstr_append_fmt(atf_dynstr_t *ad, const char *fmt, ...) argument
359 atf_dynstr_prepend_ap(atf_dynstr_t *ad, const char *fmt, va_list ap) argument
372 atf_dynstr_prepend_fmt(atf_dynstr_t *ad, const char *fmt, ...) argument
[all...]
/bind-9.6-ESV-R11/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);
/bind-9.6-ESV-R11/bin/named/
H A Dnotify.c42 notify_log(ns_client_t *client, int level, const char *fmt, ...) { argument
45 va_start(ap, fmt);
47 level, fmt, ap);
/bind-9.6-ESV-R11/lib/isc/
H A Dinet_ntop.c90 static const char *fmt = "%u.%u.%u.%u"; local
93 if ((size_t)sprintf(tmp, fmt, src[0], src[1], src[2], src[3]) >= size)
H A Dprint.c97 char fmt[32]; local
569 sprintf(fmt, "%%%s%s.%lu%s%c", alt ? "#" : "",
581 sprintf(buf, fmt, ldbl);
586 sprintf(buf, fmt, dbl);
/bind-9.6-ESV-R11/lib/lwres/
H A Dlwinetntop.c87 static const char fmt[] = "%u.%u.%u.%u"; local
91 len = snprintf(tmp, sizeof(tmp), fmt, src[0], src[1], src[2], src[3]);
H A Dprint.c94 char fmt[32]; local
510 sprintf(fmt, "%%%s%s.%lu%s%c", alt ? "#" : "",
522 sprintf(buf, fmt, ldbl);
527 sprintf(buf, fmt, dbl);
/bind-9.6-ESV-R11/unit/atf-src/atf-c++/detail/
H A Dui_test.cpp47 const char *fmt; member in struct:test
374 std::cout << "Input: >>>" << t->fmt << "<<<\n";
377 std::string result = atf::ui::format_text_with_tag(t->fmt, t->tag,
H A Dapplication.cpp65 impl::usage_error::usage_error(const char *fmt, ...) argument
71 va_start(ap, fmt);
72 std::vsnprintf(m_text, sizeof(m_text), fmt, ap);
H A Dparser.cpp363 impl::validate_content_type(const impl::headers_map& hm, const std::string& fmt, argument
373 if (he.value() != fmt)
374 throw format_error("Mismatched content type: expected `" + fmt +
/bind-9.6-ESV-R11/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.6-ESV-R11/lib/isc/win32/
H A Dsyslog.c94 syslog(int level, const char *fmt, ...) { argument
101 va_start(ap, fmt);
102 vsprintf(buf, fmt, ap);
/bind-9.6-ESV-R11/unit/atf-src/atf-c/
H A Derror.c202 atf_libc_error(int syserrno, const char *fmt, ...) argument
209 va_start(ap, fmt);
210 vsnprintf(data.m_what, sizeof(data.m_what), fmt, ap);
/bind-9.6-ESV-R11/bin/dnssec/
H A Ddnssectool.c90 vbprintf(int level, const char *fmt, ...) { argument
94 va_start(ap, fmt);
96 vfprintf(stderr, fmt, ap);
/bind-9.6-ESV-R11/contrib/idn/idnkit-1.0-src/tools/idnconv/
H A Dutil.c423 errormsg(const char *fmt, ...) { argument
426 va_start(args, fmt);
427 vfprintf(stderr, fmt, args);
/bind-9.6-ESV-R11/contrib/zkt/
H A Dlog.c371 ** lg_mesg (level, fmt, ...)
383 void lg_mesg (int priority, char *fmt, ...) argument
390 assert (fmt != NULL);
399 snprintf (format, sizeof (format), "%s: %s", lg_lvl2str(priority), fmt);
400 fmt = format;
402 va_start(ap, fmt);
403 vsyslog (lg_lvl2syslog (priority), fmt, ap); local
423 if ( fmt != format ) /* level is not in fmt string */
426 va_start(ap, fmt);
[all...]
H A Dmisc.c706 ** fatal (fmt, ...)
708 void fatal (char *fmt, ...) argument
712 va_start(ap, fmt);
715 vfprintf (stderr, fmt, ap);
721 ** error (fmt, ...)
723 void error (char *fmt, ...) argument
727 va_start(ap, fmt);
728 vfprintf (stderr, fmt, ap);
733 ** logmesg (fmt, ...)
735 void logmesg (char *fmt, argument
750 verbmesg(int verblvl, const zconf_t *conf, char *fmt, ...) argument
[all...]
/bind-9.6-ESV-R11/lib/dns/tests/
H A Dmaster_test.c437 warn_expect(struct dns_rdatacallbacks *callbacks, const char *fmt, ...) { argument
443 va_start(ap, fmt);
444 vsnprintf(buf, sizeof(buf), fmt, ap);

Completed in 37 milliseconds

12