Searched refs:fmt (Results 251 - 275 of 1433) sorted by relevance

<<11121314151617181920>>

/freebsd-12-stable/sys/dev/usb/
H A Dusb_debug.h40 #define DPRINTFN(n,fmt,...) do { \
42 printf("%s: " fmt, \
/freebsd-12-stable/lib/libnetgraph/
H A Dinternal.h65 extern void (*_NgLog)(const char *fmt, ...);
66 extern void (*_NgLogx)(const char *fmt, ...);
/freebsd-12-stable/usr.sbin/bluetooth/btpand/
H A Dbtpand.h180 #define log_err(fmt, args...) syslog(LOG_ERR, fmt , ##args)
181 #define log_info(fmt, args...) syslog(LOG_INFO, fmt , ##args)
182 #define log_notice(fmt, args...) syslog(LOG_NOTICE, fmt , ##args)
183 #define log_debug(fmt, args...) syslog(LOG_DEBUG, "%s: " fmt, __func__ , ##args)
/freebsd-12-stable/contrib/mandoc/
H A Dmandoc_msg.c323 mandoc_msg(enum mandocerr t, int line, int col, const char *fmt, ...) argument
350 if (fmt != NULL) {
352 va_start(ap, fmt);
353 vfprintf(fileptr, fmt, ap);
/freebsd-12-stable/contrib/ntp/sntp/libopts/
H A Dtime.c92 static char const fmt[] = "DATEMSK=%s/datemsk"; local
93 envptr = AGALOC(sizeof(fmt) + strlen(opts->pzPkgDataDir), fmt);
94 sprintf(envptr, fmt, opts->pzPkgDataDir);
/freebsd-12-stable/contrib/gcclibs/libssp/ssp/
H A Dstdio.h62 #define vsprintf(str, fmt, ap) \
63 __builtin___vsprintf_chk (str, 0, __ssp_bos (str), fmt, ap)
74 #define vsnprintf(str, len, fmt, ap) \
75 __builtin___vsnprintf_chk (str, len, 0, __ssp_bos (str), fmt, ap)
/freebsd-12-stable/contrib/less/
H A Dless.h192 #define SNPRINTF1(str, size, fmt, v1) snprintf((str), (size), (fmt), (v1))
193 #define SNPRINTF2(str, size, fmt, v1, v2) snprintf((str), (size), (fmt), (v1), (v2))
194 #define SNPRINTF3(str, size, fmt, v1, v2, v3) snprintf((str), (size), (fmt), (v1), (v2), (v3))
195 #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) snprintf((str), (size), (fmt), (v1), (v2), (v3), (v4))
198 #define SNPRINTF1(str, size, fmt, v1) sprintf((str), (fmt), (v
[all...]
/freebsd-12-stable/lib/libc/stdio/
H A Dvswprintf.c53 const wchar_t * __restrict fmt, __va_list ap)
81 ret = __vfwprintf(&f, locale, fmt, ap);
112 vswprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict fmt, argument
115 return vswprintf_l(s, n, __get_locale(), fmt, ap);
52 vswprintf_l(wchar_t * __restrict s, size_t n, locale_t locale, const wchar_t * __restrict fmt, __va_list ap) argument
H A Dprintf-pos.c255 char *fmt; /* format string */ local
256 int ch; /* character from fmt */
262 fmt = (char *)fmt0;
270 while ((ch = *fmt) != '\0' && ch != '%')
271 fmt++;
274 fmt++; /* skip over '%' */
278 rflag: ch = *fmt++;
284 if ((error = addaster(&types, &fmt)))
292 if ((ch = *fmt++) == '*') {
293 if ((error = addaster(&types, &fmt)))
448 wchar_t *fmt; /* format string */ local
[all...]
/freebsd-12-stable/sys/compat/linuxkpi/common/include/linux/
H A Dprintk.h121 #define pr_err_ratelimited(fmt, ...) \
122 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
127 #define pr_info_ratelimited(fmt, ...) \
128 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
/freebsd-12-stable/sys/dev/pci/
H A Dpci_iov.h37 struct nvlist *vf_schema, const char *fmt, ...) __printflike(4, 5);
/freebsd-12-stable/sys/sparc64/include/
H A Dofw_machdep.h45 void OF_panic(const char *fmt, ...) __dead2 __printflike(1, 2);
/freebsd-12-stable/sys/xen/xenbus/
H A Dxenbusvar.h153 * \param fmt Printf format string followed by a variable number of
156 void xenbus_dev_error(device_t dev, int err, const char *fmt, ...)
164 * \param fmt Printf format string.
167 void xenbus_dev_verror(device_t dev, int err, const char *fmt, va_list ap)
176 * \param fmt Printf format string followed by a variable number of
179 void xenbus_dev_fatal(device_t dev, int err, const char *fmt, ...)
187 * \param fmt Printf format string.
190 void xenbus_dev_vfatal(device_t dev, int err, const char *fmt, va_list)
/freebsd-12-stable/tools/regression/posixsem/
H A Dtest.h53 void fail_err(const char *fmt, ...);
/freebsd-12-stable/contrib/netbsd-tests/modules/k_helper3/
H A Dk_helper3.c59 load(const char *fmt, ...) argument
72 va_start(ap, fmt);
73 (void)vsnprintf(filename, sizeof(filename), fmt, ap);
/freebsd-12-stable/contrib/openbsm/bin/auditd/
H A Dauditd_darwin.c134 auditd_log_err(const char *fmt, ...) argument
138 va_start(ap, fmt);
139 asl_vlog(au_aslclient, au_aslmsg, ASL_LEVEL_ERR, fmt, ap);
144 auditd_log_notice(const char *fmt, ...) argument
148 va_start(ap, fmt);
149 asl_vlog(au_aslclient, au_aslmsg, ASL_LEVEL_NOTICE, fmt, ap);
154 auditd_log_info(const char *fmt, ...) argument
158 va_start(ap, fmt);
159 asl_vlog(au_aslclient, au_aslmsg, ASL_LEVEL_INFO, fmt, ap);
164 auditd_log_debug(const char *fmt, argument
[all...]
/freebsd-12-stable/contrib/sendmail/libsm/
H A Dvasprintf.c42 ** fmt -- format directives for printing
56 sm_vasprintf(str, fmt, ap)
58 const char *fmt;
82 ret = sm_io_vfprintf(&fake, SM_TIME_FOREVER, fmt, ap);
H A Dvsnprintf.c30 ** fmt -- format directives
31 ** ap -- data unit vectors for use by 'fmt'
41 sm_vsnprintf(str, n, fmt, ap)
44 const char *fmt;
75 ret = sm_io_vfprintf(&fake, SM_TIME_FOREVER, fmt, ap);
/freebsd-12-stable/contrib/dma/
H A Dutil.c121 setlogident(const char *fmt, ...) argument
126 if (fmt != NULL) {
130 va_start(ap, fmt);
131 vsnprintf(sufx, sizeof(sufx), fmt, ap);
140 errlog(int exitcode, const char *fmt, ...) argument
147 if (fmt != NULL) {
148 va_start(ap, fmt);
149 vsnprintf(outs, sizeof(outs), fmt, ap);
166 errlogx(int exitcode, const char *fmt, ...) argument
172 if (fmt !
[all...]
/freebsd-12-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Dtable.py65 fmt = "%*s "
67 fmt = "%-*s "
69 line += fmt % (mfl, va[i])
/freebsd-12-stable/crypto/heimdal/lib/roken/
H A Dstrpool.c64 rk_strpoolprintf(struct rk_strpool *p, const char *fmt, ...) argument
77 va_start(ap, fmt);
78 len = vasprintf(&str, fmt, ap);
/freebsd-12-stable/sys/dev/agp/
H A Dagppriv.h42 #define AGP_DPF(fmt, ...) do { \
43 printf("agp: " fmt, ##__VA_ARGS__); \
46 #define AGP_DPF(fmt, ...) do {} while (0)
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlcompat.c10 lcompat_sprintf(char *buf, const char *fmt, ...) argument
15 va_start(args, fmt);
16 res = vsnprintf(buf, INT_MAX, fmt, args);
/freebsd-12-stable/sys/dev/iwn/
H A Dif_iwn_debug.h54 #define DPRINTF(sc, m, fmt, ...) do { \
56 printf(fmt, __VA_ARGS__); \
123 #define DPRINTF(sc, m, fmt, ...) do { (void) sc; } while (0)
/freebsd-12-stable/crypto/openssh/
H A Dxmalloc.c105 xasprintf(char **ret, const char *fmt, ...) argument
110 va_start(ap, fmt);
111 i = vasprintf(ret, fmt, ap);

Completed in 164 milliseconds

<<11121314151617181920>>