Searched refs:fmt (Results 1 - 25 of 1138) sorted by last modified time

1234567891011>>

/illumos-gate/usr/src/uts/intel/io/vmxnet3s/
H A Dvmxnet3.h195 void vmxnet3_log(int level, vmxnet3_softc_t *dp, char *fmt, ...);
H A Dvmxnet3_main.c1629 vmxnet3_log(int level, vmxnet3_softc_t *dp, char *fmt, ...) argument
1631 dev_err(dp->dip, level, fmt);
/illumos-gate/usr/src/uts/common/dtrace/
H A Ddtrace.c10271 char *fmt, **new; local
10274 fmt = kmem_zalloc(len, KM_SLEEP);
10275 bcopy(str, fmt, len);
10279 state->dts_formats[ndx] = fmt;
10289 kmem_free(fmt, len);
10307 state->dts_formats[ndx] = fmt;
10315 char *fmt; local
10321 fmt = state->dts_formats[format - 1];
10322 kmem_free(fmt, strlen(fmt)
10339 char *fmt = state->dts_formats[i]; local
12977 char *str, *fmt; local
16963 dtrace_fmtdesc_t fmt; local
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dspa_misc.c1470 zfs_panic_recover(const char *fmt, ...) argument
1474 va_start(adx, fmt);
1475 vcmn_err(zfs_recover ? CE_WARN : CE_PANIC, fmt, adx);
H A Dzfs_ioctl.c255 __dprintf(const char *file, const char *func, int line, const char *fmt, ...) argument
271 va_start(adx, fmt);
272 (void) vsnprintf(buf, sizeof (buf), fmt, adx);
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Ddnode.h323 * There should be a ## between the string literal and fmt, to make it
327 #define dprintf_dnode(dn, fmt, ...) do { \
336 dprintf_ds((dn)->dn_objset->os_dsl_dataset, "obj=%s " fmt, \
346 #define dprintf_dnode(db, fmt, ...)
H A Ddsl_dataset.h346 #define dprintf_ds(ds, fmt, ...) do { \
350 dprintf("ds=%s " fmt, __ds_name, __VA_ARGS__); \
355 #define dprintf_ds(dd, fmt, ...)
H A Dzfs_debug.h65 int line, const char *fmt, ...);
73 extern void zfs_panic_recover(const char *fmt, ...);
83 extern void zfs_dbgmsg(const char *fmt, ...);
/illumos-gate/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcsm.c1825 const char *fmt, ...)
1842 va_start(ap, fmt);
1843 (void) vsprintf(buf + strlen(buf), fmt, ap);
1824 fcsm_display(int level, int flags, fcsm_t *fcsm, fc_packet_t *pkt, const char *fmt, ...) argument
/illumos-gate/usr/src/uts/common/io/iwn/
H A Dif_iwn.c331 iwn_dbg(const char *fmt, ...) argument
336 va_start(ap, fmt);
337 vcmn_err(CE_CONT, fmt, ap);
/illumos-gate/usr/src/boot/lib/libstand/
H A Dstand.h72 #define CHK(fmt, args...) printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args)
73 #define PCHK(fmt, args...) {printf("%s(%d): " fmt "\n", __func__, __LINE__ , ##args); getchar();}
259 extern int printf(const char *fmt, ...) __printflike(1, 2);
260 extern void vprintf(const char *fmt, __va_list);
/illumos-gate/usr/src/boot/sys/boot/efi/boot1/
H A Dboot1.c707 panic(const char *fmt, ...) argument
712 va_start(ap, fmt);
713 vprintf(fmt, ap);
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dbiosdisk.c65 # define DEBUG(fmt, args...) printf("%s: " fmt "\n" , __func__ , ## args)
67 # define DEBUG(fmt, args...)
/illumos-gate/usr/src/boot/sys/boot/zfs/
H A Dzfsimpl.c780 pager_printf(const char *fmt, ...) argument
785 va_start(args, fmt);
786 vsnprintf(line, sizeof (line), fmt, args);
/illumos-gate/usr/src/cmd/
H A DMakefile165 fmt \
834 fmt: mailx
/illumos-gate/usr/src/cmd/iconv/
H A Dscanner.c653 errf(const char *fmt, ...) argument
658 va_start(va, fmt);
659 (void) vasprintf(&msg, fmt, va);
669 warn(const char *fmt, ...) argument
674 va_start(va, fmt);
675 (void) vasprintf(&msg, fmt, va);
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_io.c2279 const char *fmt; local
2303 fmt = va_arg(alist, const char *);
2306 iob_doprnt(out, fmt, &ap);
/illumos-gate/usr/src/cmd/savecore/
H A Dsavecore.c1760 char fmt[] = "reboot after panic: %s"; local
1763 STRLOG_MAKE_MSGID(fmt, msgid);
1769 (void) sprintf(msg + strlen(msg), fmt,
/illumos-gate/usr/src/cmd/sgs/elfdump/common/
H A Dgen_struct_layout.c606 const char *fmt = "\t&%s_layout,\n"; local
650 (void) printf(fmt, "auxv");
651 (void) printf(fmt, "fltset");
652 (void) printf(fmt, "lwpsinfo");
653 (void) printf(fmt, "lwpstatus");
654 (void) printf(fmt, "prcred");
655 (void) printf(fmt, "priv_impl_info");
656 (void) printf(fmt, "prpriv");
657 (void) printf(fmt, "psinfo");
658 (void) printf(fmt, "pstatu
[all...]
/illumos-gate/usr/src/cmd/sgs/libconv/common/
H A Dcorenote.c678 const char *fmt; local
701 fmt = (fmt_flags & CONV_FMT_DECIMAL) ?
703 (void) snprintf(inv_buf->buf, sizeof (inv_buf->buf), fmt, priv);
712 const char *fmt; local
737 fmt = (fmt_flags & CONV_FMT_DECIMAL) ?
739 (void) snprintf(inv_buf->buf, sizeof (inv_buf->buf), fmt, id);
908 const char *fmt; local
910 fmt = (fmt_flags & CONV_FMT_DECIMAL) ?
915 sizeof (inv_buf->buf), fmt, si_code);
/illumos-gate/usr/src/cmd/zdb/
H A Dzdb.c209 fatal(const char *fmt, ...) argument
213 va_start(ap, fmt);
215 (void) vfprintf(stderr, fmt, ap);
/illumos-gate/usr/src/cmd/zfs/
H A Dzfs_main.c4749 const char *fmt = gettext("%-16s %-14s\t%s\n"); local
4762 (void) fprintf(fp, fmt, gettext("NAME"), gettext("TYPE"),
4769 (void) fprintf(fp, fmt, perm_name, perm_type, perm_comment);
4787 (void) fprintf(fp, fmt, props[i], gettext("property"), "");
/illumos-gate/usr/src/cmd/zonecfg/
H A Dzonecfg.c810 zerr(const char *fmt, ...) argument
825 va_start(alist, fmt);
826 (void) vfprintf(stderr, fmt, alist);
/illumos-gate/usr/src/common/util/
H A Dstring.c60 * described by <fmt, args> as possible. The string will always be
64 * To determine buffer size in advance, use vsnprintf(NULL, 0, fmt, args) + 1.
69 vsnprintf(char *buf, size_t buflen, const char *fmt, va_list aargs) argument
88 while ((c = *fmt++) != '\0') {
100 if ((c = *fmt++) == '\0')
128 c = *fmt;
132 fmt++;
322 snprintf(char *buf, size_t buflen, const char *fmt, ...) argument
326 va_start(args, fmt);
327 buflen = vsnprintf(buf, buflen, fmt, arg
340 sprintf(char *buf, const char *fmt, ...) argument
352 vsprintf(char *buf, const char *fmt, va_list args) argument
[all...]
/illumos-gate/usr/src/lib/libc/port/
H A Dllib-lc1000 void syslog(int pri, const char *fmt, ...);
1001 void vsyslog(int pri, const char *fmt, va_list ap);
1215 int _doscan(FILE *iop, const char *fmt, va_list va_alist);
1314 int scanf(const char *_RESTRICT_KYWD fmt, ...);
1317 int fscanf(FILE *_RESTRICT_KYWD iop, const char *_RESTRICT_KYWD fmt, ...);
1320 int sscanf(const char *_RESTRICT_KYWD str, const char *_RESTRICT_KYWD fmt, ...);

Completed in 908 milliseconds

1234567891011>>