Searched refs:fmt (Results 226 - 250 of 1433) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/libpcap/testprogs/
H A Dselpolltest.c377 error(const char *fmt, ...) argument
382 va_start(ap, fmt);
383 (void)vfprintf(stderr, fmt, ap);
385 if (*fmt) {
386 fmt += strlen(fmt);
387 if (fmt[-1] != '\n')
396 warning(const char *fmt, ...) argument
401 va_start(ap, fmt);
402 (void)vfprintf(stderr, fmt, a
[all...]
H A Dthreadsignaltest.c327 error(const char *fmt, ...) argument
332 va_start(ap, fmt);
333 (void)vfprintf(stderr, fmt, ap);
335 if (*fmt) {
336 fmt += strlen(fmt);
337 if (fmt[-1] != '\n')
346 warning(const char *fmt, ...) argument
351 va_start(ap, fmt);
352 (void)vfprintf(stderr, fmt, a
[all...]
H A Dvalgrindtest.c158 error(const char *fmt, ...) argument
163 va_start(ap, fmt);
164 (void)vfprintf(stderr, fmt, ap);
166 if (*fmt) {
167 fmt += strlen(fmt);
168 if (fmt[-1] != '\n')
177 warning(const char *fmt, ...) argument
182 va_start(ap, fmt);
183 (void)vfprintf(stderr, fmt, a
[all...]
/freebsd-12-stable/contrib/atf/atf-c/detail/
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...]
/freebsd-12-stable/contrib/ofed/infiniband-diags/src/
H A Dibdiag_common.h64 #define DEBUG(fmt, ...) do { \
65 if (ibdebug) IBDEBUG(fmt, ## __VA_ARGS__); \
67 #define VERBOSE(fmt, ...) do { \
68 if (ibverbose) IBVERBOSE(fmt, ## __VA_ARGS__); \
70 #define IBEXIT(fmt, ...) ibexit(__FUNCTION__, fmt, ## __VA_ARGS__)
/freebsd-12-stable/contrib/libpcap/
H A Dfmtutils.c62 const char *fmt, ...)
69 va_start(ap, fmt);
70 pcap_vsnprintf(errbuf, errbuflen, fmt, ap);
154 const char *fmt, ...)
163 va_start(ap, fmt);
164 pcap_vsnprintf(errbuf, errbuflen, fmt, ap);
61 pcap_fmt_errmsg_for_errno(char *errbuf, size_t errbuflen, int errnum, const char *fmt, ...) argument
153 pcap_fmt_errmsg_for_win32_err(char *errbuf, size_t errbuflen, DWORD errnum, const char *fmt, ...) argument
/freebsd-12-stable/contrib/libarchive/libarchive/
H A Darchive_string_sprintf.c77 archive_string_sprintf(struct archive_string *as, const char *fmt, ...) argument
81 va_start(ap, fmt);
82 archive_string_vsprintf(as, fmt, ap);
91 archive_string_vsprintf(struct archive_string *as, const char *fmt, argument
103 if (fmt == NULL) {
108 for (p = fmt; *p != '\0'; p++) {
/freebsd-12-stable/contrib/amd/fsinfo/
H A Dfsinfo.h81 extern void error(char *fmt, ...)
83 extern void fatal(char *fmt, ...)
89 extern void lerror(ioloc *l, char *fmt, ...)
91 extern void fsi_log(char *fmt, ...)
93 extern void lwarning(ioloc *l, char *fmt, ...)
103 extern int fsi_error(const char *fmt, ...)
/freebsd-12-stable/sys/netpfil/ipfw/test/
H A Ddn_test.h24 #define ND(fmt, args...) do {} while (0)
25 #define D1(fmt, args...) do {} while (0)
26 #define D(fmt, args...) fprintf(stderr, "%-10s %4d %-8s " fmt "\n", \
28 #define DX(lev, fmt, args...) do { \
29 if (debug > lev) D(fmt, ## args); } while (0)
/freebsd-12-stable/contrib/less/
H A Doutput.c555 less_printf(fmt, parg)
556 char *fmt;
563 while (*fmt != '\0')
565 if (*fmt != '%')
567 putchr(*fmt++);
571 ++fmt;
572 switch (*fmt++)
629 error(fmt, parg)
630 char *fmt;
640 less_printf(fmt, par
[all...]
/freebsd-12-stable/sys/kern/
H A Dsubr_scanf.c96 sscanf(const char *ibuf, const char *fmt, ...) argument
101 va_start(ap, fmt);
102 ret = vsscanf(ibuf, fmt, ap);
111 const u_char *fmt = (const u_char *)fmt0; local
138 c = *fmt++;
154 again: c = *fmt++;
243 fmt = __sccl(ccltab, fmt);
584 __sccl(char *tab, const u_char *fmt) argument
589 c = *fmt
[all...]
/freebsd-12-stable/crypto/openssh/
H A Dutf8.c105 vasnmprintf(char **str, size_t maxsz, int *wp, const char *fmt, va_list ap) argument
120 if ((ret = vasprintf(&src, fmt, ap)) <= 0)
241 snmprintf(char *str, size_t sz, int *wp, const char *fmt, ...) argument
247 va_start(ap, fmt);
248 ret = vasnmprintf(&cp, sz, wp, fmt, ap);
264 vfmprintf(FILE *stream, const char *fmt, va_list ap) argument
269 if ((ret = vasnmprintf(&str, INT_MAX, NULL, fmt, ap)) < 0)
278 fmprintf(FILE *stream, const char *fmt, ...) argument
283 va_start(ap, fmt);
284 ret = vfmprintf(stream, fmt, a
290 mprintf(const char *fmt, ...) argument
[all...]
/freebsd-12-stable/contrib/apr/strings/
H A Dapr_snprintf.c683 apr_vformatter_buff_t *vbuff, const char *fmt, va_list ap)
730 while (*fmt) {
731 if (*fmt != '%') {
732 INS_CHAR(*fmt, sp, bep, cc);
744 fmt++;
749 if (!apr_islower(*fmt)) {
753 for (;; fmt++) {
754 if (*fmt == '-')
756 else if (*fmt == '+')
758 else if (*fmt
682 apr_vformatter(int (*flush_func)(apr_vformatter_buff_t *), apr_vformatter_buff_t *vbuff, const char *fmt, va_list ap) argument
[all...]
/freebsd-12-stable/contrib/wpa/src/utils/
H A Dwpa_debug.h67 * @fmt: printf format string, followed by optional arguments
75 void wpa_printf(int level, const char *fmt, ...)
179 * @fmt: printf format string, followed by optional arguments
188 void wpa_msg(void *ctx, int level, const char *fmt, ...) PRINTF_FORMAT(3, 4);
195 * @fmt: printf format string, followed by optional arguments
202 void wpa_msg_ctrl(void *ctx, int level, const char *fmt, ...)
210 * @fmt: printf format string, followed by optional arguments
218 void wpa_msg_global(void *ctx, int level, const char *fmt, ...)
226 * @fmt: printf format string, followed by optional arguments
233 void wpa_msg_global_ctrl(void *ctx, int level, const char *fmt,
[all...]
/freebsd-12-stable/contrib/ofed/libibverbs/
H A Dconfig.h16 #define check_snprintf(buf, len, fmt, ...) ({ \
17 int rc = snprintf(buf, len, fmt, ##__VA_ARGS__); \
/freebsd-12-stable/contrib/openbsm/bin/auditdistd/
H A Dsubr.c54 vsnprlcat(char *str, size_t size, const char *fmt, va_list ap) argument
59 return (vsnprintf(str + len, size - len, fmt, ap));
63 snprlcat(char *str, size_t size, const char *fmt, ...) argument
68 va_start(ap, fmt);
69 result = vsnprlcat(str, size, fmt, ap);
115 const char *fmt, ...)
120 va_start(ap, fmt);
121 (void)vsnprintf(msg, sizeof(msg), fmt, ap);
114 adreq_log(int loglevel, int debuglevel, int error, struct adreq *adreq, const char *fmt, ...) argument
/freebsd-12-stable/contrib/gdb/include/
H A Dfloatformat.h85 int (*is_valid) PARAMS ((const struct floatformat *fmt, const char *from));
131 floatformat_is_valid PARAMS ((const struct floatformat *fmt, const char *from));
/freebsd-12-stable/contrib/gcclibs/include/
H A Dfloatformat.h87 int (*is_valid) (const struct floatformat *fmt, const void *from);
138 floatformat_is_valid (const struct floatformat *fmt, const void *from);
/freebsd-12-stable/bin/sh/bltin/
H A Dbltin.h66 #define warn(fmt, ...) warning(fmt ": %s", __VA_ARGS__, strerror(errno))
/freebsd-12-stable/contrib/binutils/include/
H A Dfloatformat.h87 int (*is_valid) (const struct floatformat *fmt, const void *from);
138 floatformat_is_valid (const struct floatformat *fmt, const void *from);
/freebsd-12-stable/lib/libc/stdio/
H A Dvdprintf.c48 vdprintf(int fd, const char * __restrict fmt, va_list ap) argument
68 if ((ret = __vfprintf(&f, __get_locale(), fmt, ap)) < 0)
/freebsd-12-stable/lib/libdevdctl/
H A Dexception.h61 * \param fmt Printf-like string format specifier.
63 Exception(const char *fmt, ...);
82 void FormatLog(const char *fmt, va_list ap);
/freebsd-12-stable/sys/dev/cxgbe/
H A Dosdep.h45 #define CH_ERR(adap, fmt, ...) log(LOG_ERR, "%s: " fmt, \
47 #define CH_WARN(adap, fmt, ...) log(LOG_WARNING, "%s: " fmt, \
49 #define CH_ALERT(adap, fmt, ...) log(LOG_ALERT, "%s: " fmt, \
51 #define CH_WARN_RATELIMIT(adap, fmt, ...) log(LOG_WARNING, "%s: " fmt, \
/freebsd-12-stable/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_value.h50 const bhnd_nvram_val_fmt *fmt);
56 const bhnd_nvram_val_fmt *fmt,
62 const bhnd_nvram_val_fmt *fmt,
66 const bhnd_nvram_val_fmt *fmt,
72 const bhnd_nvram_val_fmt *fmt,
90 const char *fmt, char *outp, size_t *olen,
93 const char *fmt, char *outp, size_t *olen,
222 const bhnd_nvram_val_fmt *fmt; /**< value format */ member in struct:bhnd_nvram_val
/freebsd-12-stable/sys/compat/linuxkpi/common/include/linux/
H A Dkthread.h39 #define kthread_run(fn, data, fmt, ...) ({ \
44 RFSTOPPED, 0, fmt, ## __VA_ARGS__)) \

Completed in 306 milliseconds

1234567891011>>