Searched refs:fmt (Results 401 - 425 of 1138) sorted by relevance

<<11121314151617181920>>

/illumos-gate/usr/src/tools/scripts/
H A Dcstyle.pl108 my $fmt;
112 $fmt = "%s: %d: %s\n%s\n";
114 $fmt = "%s: %d: %s\n";
198 printf $fmt, $filename, $., $error, $line;
200 printf $fmt, $filename, $., $error;
211 printf $fmt, $filename, $., $error, $out;
213 printf $fmt, $filename, $., $error;
223 printf $fmt, $filename, $. - 1, $error, $prev;
225 printf $fmt, $filename, $. - 1, $error;
/illumos-gate/usr/src/lib/lvm/libmeta/common/
H A Dmeta_print.c215 * fmt - optional text
244 meta_prbits(FILE *fp, const char *fmt, ...) argument
252 va_start(ap, fmt);
254 if (fmt && *fmt)
255 if (fprintf(fp, fmt) == EOF)
/illumos-gate/usr/src/lib/print/libpapi-lpd/common/
H A Dservice.c279 detailed_error(service_t *svc, char *fmt, ...) argument
281 if ((svc != NULL) && (fmt != NULL)) {
286 va_start(ap, fmt);
291 if ((size = vsnprintf(message, BUFSIZ, fmt, ap)) >= BUFSIZ)
293 vsnprintf(message, size, fmt, ap);
/illumos-gate/usr/src/lib/libsmbfs/smb/
H A Dsubr.c125 smb_error(const char *fmt, int error, ...) { argument
132 vfprintf(stderr, fmt, ap);
293 dprint(const char *fname, const char *fmt, ...) argument
297 va_start(ap, fmt);
301 vfprintf(stderr, fmt, ap);
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dslk.c50 slk_init(int fmt) argument
55 __m_trace("slk_init(%d)", fmt);
58 if (0 <= fmt && fmt <= 1) {
59 __m_slk_format = fmt;
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dsyslog.c98 syslog(int pri, char *fmt, ...) argument
102 va_start(ap, fmt);
103 vsyslog(pri, fmt, ap);
108 vsyslog(int pri, char *fmt, va_list ap) argument
160 f = fmt;
/illumos-gate/usr/src/lib/libcmd/common/
H A Ddate.c281 Fmt_t fmt; local
298 fmts = &fmt;
299 fmt.format = "";
300 fmt.next = 0;
479 while (fmts != &fmt)
/illumos-gate/usr/src/cmd/pcidr/
H A Dpcidr_common.c100 dprint(dlvl_t lvl, char *fmt, ...) argument
109 va_start(ap, fmt);
111 buflen = vsnprintf(NULL, 0, fmt, ap);
118 va_start(ap, fmt);
120 rv = vsnprintf(buf, buflen, fmt, ap);
/illumos-gate/usr/src/cmd/fs.d/nfs/umount/
H A Dumount.c71 static void pr_err(const char *fmt, ...);
73 static void pr_err(char *fmt, va_dcl);
143 pr_err(const char *fmt, ...) argument
147 va_start(ap, fmt);
149 (void) vfprintf(stderr, fmt, ap);
/illumos-gate/usr/src/cmd/lp/lib/papi/
H A Dservice.c283 detailed_error(service_t *svc, char *fmt, ...) argument
285 if ((svc != NULL) && (fmt != NULL)) {
290 va_start(ap, fmt);
295 if ((size = vsnprintf(message, BUFSIZ, fmt, ap)) >= BUFSIZ)
297 vsnprintf(message, size, fmt, ap);
/illumos-gate/usr/src/uts/common/fs/smbsrv/
H A Dsmb_mbuf_marshaling.c150 smb_mbc_vdecodef(mbuf_chain_t *mbc, const char *fmt, va_list ap) argument
167 while ((c = *fmt++) != 0) {
175 c = *fmt++;
180 c = *fmt++;
389 * control of the format fmt.
394 smb_mbc_decodef(mbuf_chain_t *mbc, const char *fmt, ...) argument
399 va_start(ap, fmt);
400 xx = smb_mbc_vdecodef(mbc, fmt, ap);
409 * under the control of the format fmt. The offset of the chain passed in is not
415 smb_mbc_peek(mbuf_chain_t *mbc, int offset, const char *fmt, argument
520 smb_mbc_vencodef(mbuf_chain_t *mbc, const char *fmt, va_list ap) argument
760 smb_mbc_encodef(mbuf_chain_t *mbc, const char *fmt, ...) argument
781 smb_mbc_poke(mbuf_chain_t *mbc, int offset, const char *fmt, ...) argument
[all...]
/illumos-gate/usr/src/boot/sys/boot/uboot/lib/
H A Ddisk.c48 #define stor_printf(fmt, args...) do { \
50 printf(fmt, ##args); \
54 #define debugf(fmt, args...) do { printf("%s(): ", __func__); \
55 printf(fmt,##args); } while (0)
57 #define debugf(fmt, args...)
/illumos-gate/usr/src/lib/libzpool/common/
H A Dkernel.c652 __dprintf(const char *file, const char *func, int line, const char *fmt, ...) argument
683 va_start(adx, fmt);
684 (void) vprintf(fmt, adx);
701 vpanic(const char *fmt, va_list adx) argument
704 (void) vsnprintf(buf, 512, fmt, adx);
709 panic(const char *fmt, ...) argument
713 va_start(adx, fmt);
714 vpanic(fmt, adx);
719 vcmn_err(int ce, const char *fmt, va_list adx) argument
722 vpanic(fmt, ad
732 cmn_err(int ce, const char *fmt, ...) argument
1063 kmem_asprintf(const char *fmt, ...) argument
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_update.c205 res_dprintf(const char *fmt, ...) { argument
208 va_start(ap, fmt);
210 vfprintf(stderr, fmt, ap);
/illumos-gate/usr/src/lib/libresolv2/include/
H A Dport_before.h188 #define ISC_FORMAT_PRINTF(fmt, args) \
189 __attribute__((__format__(__printf__, fmt, args)))
191 #define ISC_FORMAT_PRINTF(fmt, args)
/illumos-gate/usr/src/lib/libxcurses/src/tic/
H A Duntic.c224 error VARARG1(char*, fmt)
228 va_start(ap, fmt);
229 (void) vfprintf(stderr, fmt, ap);
/illumos-gate/usr/src/cmd/acpihpd/
H A Dacpihpd.c296 debug_print(int level, const char *fmt, ...) argument
320 va_start(ap, fmt);
321 vsyslog(pri, fmt, ap);
/illumos-gate/usr/src/cmd/fs.d/nfs/dfmounts/
H A Ddfmounts.c268 pr_err(char *fmt, ...) argument
272 va_start(ap, fmt);
274 (void) vfprintf(stderr, fmt, ap);
/illumos-gate/usr/src/cmd/ttymon/
H A Dtmutil.c250 cons_printf(const char *fmt, ...) argument
256 va_start(ap, fmt);
257 (void) vsnprintf(buf, sizeof (buf), fmt, ap);
/illumos-gate/usr/src/tools/ctf/cvt/
H A Dutil.c220 elfterminate(const char *file, const char *fmt, ...) argument
225 va_start(ap, fmt);
226 vsnprintf(msgbuf, sizeof (msgbuf), fmt, ap);
/illumos-gate/usr/src/uts/common/io/nxge/npi/
H A Dnpi.c38 npi_debug_msg(npi_handle_function_t function, uint64_t level, char *fmt, ...) argument
60 va_start(ap, fmt);
61 (void) vsprintf(msg_buffer, fmt, ap);
/illumos-gate/usr/src/uts/common/sys/fibre-channel/fca/oce/
H A Doce_utils.h50 #define oce_log(dev_p, level, module, fmt, arg...) { \
55 cmn_err(level, "%s[%d]: " fmt, OCE_MOD_NAME, \
58 cmn_err(level, "%s[%d]: " fmt, OCE_MOD_NAME, \
/illumos-gate/usr/src/uts/common/io/virtio/
H A Dvirtiovar.h77 #define dev_debug(dip, fmt, arg...) \
78 dev_err(dip, fmt, ##arg)
80 #define dev_debug(dip, fmt, arg...)
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Ddsl_dir.h177 #define dprintf_dd(dd, fmt, ...) do { \
181 dprintf("dd=%s " fmt, __ds_name, __VA_ARGS__); \
186 #define dprintf_dd(dd, fmt, ...)
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dsyslog.c159 syslog(int pri, const char *fmt, ...) argument
163 va_start(ap, fmt);
164 vsyslog(pri, fmt, ap);
170 vsyslog(int pri, const char *fmt, va_list ap) argument
276 STRLOG_MAKE_MSGID(fmt, msgid);
281 f = (char *)fmt;

Completed in 104 milliseconds

<<11121314151617181920>>