/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | globals.c | 20 Perl_fprintf_nocontext(PerlIO *stream, const char *format, ...) argument 24 va_start(arglist, format); 25 return PerlIO_vprintf(stream, format, arglist); 29 Perl_printf_nocontext(const char *format, ...) argument 33 va_start(arglist, format); 34 return PerlIO_vprintf(PerlIO_stdout(), format, arglist);
|
/osnet-11/usr/src/lib/libc/port/gen/ |
H A D | cftime.c | 51 * ascftime(buf, format, t) -> where t is produced by localtime 54 * the format specified by the format 55 * argument (see date(1) for format 58 * cftime(buf, format, t) -> just calls ascftime. 74 cftime(char *buf, char *format, const time_t *t) argument 85 return (ascftime(buf, format, p)); 89 ascftime(char *buf, const char *format, const struct tm *tm) argument 91 /* Set format string, if not already set */ 92 if (format [all...] |
H A D | pfmt.c | 41 /* pfmt() - format and print */ 44 pfmt(FILE *stream, long flag, const char *format, ...) argument 48 va_start(args, format); 49 return (__pfmt_print(stream, flag, format, NULL, NULL, args));
|
H A D | vpfmt.c | 33 * vpfmt() - format and print (variable argument list) 49 vpfmt(FILE *stream, long flag, const char *format, va_list args) argument 51 return (__pfmt_print(stream, flag, format, NULL, NULL, args));
|
H A D | lfmt.c | 32 /* lfmt() - format, print and log */ 47 lfmt(FILE *stream, long flag, const char *format, ...) argument 52 va_start(args, format); 54 if ((ret = __pfmt_print(stream, flag, format, &text, &sev, args)) < 0)
|
/osnet-11/usr/src/lib/libast/common/tm/ |
H A D | tmform.c | 36 * format date given clock 41 tmform(char* buf, const char* format, time_t* clock) argument 43 return tmfmt(buf, 256, format, clock);
|
H A D | tmfmt.c | 33 * format date given clock into buf of length len 38 tmfmt(char* buf, size_t len, const char* format, time_t* clock) argument 40 return tmxfmt(buf, len, format, tmxclock(clock));
|
H A D | tmlex.c | 36 * tm_data.format checked if tminfo.format!=tm_data.format 57 if (tm_info.format != tm_data.format && tab >= tm_info.format && tab < tm_info.format + TM_NFORM) 59 tab = tm_data.format + (tab - tm_info.format); 60 if (suf && tab >= tm_info.format [all...] |
H A D | tmscan.c | 33 * scan date expression in s using format 38 tmscan(const char* s, char** e, const char* format, char** f, time_t* clock, long flags) argument 40 return tmxsec(tmxscan(s, e, format, f, tmxclock(clock), flags));
|
/osnet-11/usr/src/lib/libwrap/ |
H A D | diag.c | 38 static void tcpd_diag(severity, tag, format, ap) 41 char *format; 48 tag, tcpd_context.file, tcpd_context.line, format); 50 sprintf(fmt, "%s: %s", tag, format); 56 void VARARGS(tcpd_warn, char *, format) 60 VASTART(ap, char *, format); 61 tcpd_diag(LOG_ERR, "warning", format, ap); 67 void VARARGS(tcpd_jump, char *, format) 71 VASTART(ap, char *, format); 72 tcpd_diag(LOG_ERR, "error", format, a [all...] |
/osnet-11/usr/src/lib/libast/common/string/ |
H A D | fmttime.c | 33 fmttime(const char* format, time_t clock) argument 39 tmfmt(buf, z, format, &clock);
|
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/ |
H A D | asnprintf.c | 26 asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) argument 31 va_start (args, format); 32 result = vasnprintf (resultbuf, lengthp, format, args);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/comp/ |
H A D | decl.t | 10 format one = 22 format two = 43 format three =
|
/osnet-11/usr/src/lib/libuutil/common/ |
H A D | uu_pname.c | 44 uu_die_internal(int status, const char *format, va_list alist) __NORETURN; 86 uu_warn_internal(int err, const char *format, va_list alist) argument 91 (void) vfprintf(stderr, format, alist); 93 if (strrchr(format, '\n') == NULL) 98 uu_vwarn(const char *format, va_list alist) argument 100 uu_warn_internal(errno, format, alist); 105 uu_warn(const char *format, ...) argument 108 va_start(alist, format); 109 uu_warn_internal(errno, format, alist); 114 uu_die_internal(int status, const char *format, va_lis argument 132 uu_vdie(const char *format, va_list alist) argument 139 uu_die(const char *format, ...) argument 149 uu_vxdie(int status, const char *format, va_list alist) argument 156 uu_xdie(int status, const char *format, ...) argument [all...] |
/osnet-11/usr/src/lib/fm/libfmd_snmp/common/ |
H A D | debug_subr.c | 32 sunFm_vpanic(const char *format, va_list ap) argument 34 (void) snmp_vlog(LOG_ERR, format, ap); 43 sunFm_panic(const char *format, ...) argument 47 va_start(ap, format); 48 sunFm_vpanic(format, ap);
|
/osnet-11/usr/src/lib/libumem/common/ |
H A D | umem_fail.c | 105 umem_panic(const char *format, ...) argument 109 va_start(va, format); 110 umem_vprintf(format, va); 113 if (format[strlen(format)-1] != '\n') 122 umem_err_recoverable(const char *format, ...) argument 126 va_start(va, format); 127 umem_vprintf(format, va); 130 if (format[strlen(format) [all...] |
H A D | misc.h | 58 void debug_printf(const char *format, ...); 63 void log_message(const char *format, ...); 86 void umem_printf(const char *format, ...); 87 void umem_vprintf(const char *format, va_list); 89 void umem_printf_warn(void *ignored, const char *format, ...); 96 void umem_panic(const char *format, ...) __NORETURN; 103 void umem_err_recoverable(const char *format, ...);
|
/osnet-11/usr/src/lib/libc/port/print/ |
H A D | sprintf.c | 45 sprintf(char *string, const char *format, ...) argument 54 va_start(ap, format); 56 count = _ndoprnt(format, ap, &siop, 0); 85 _sprintf_c89(char *string, const char *format, ...) argument 90 va_start(ap, format); 91 count = _vsprintf_c89(string, format, ap);
|
H A D | wprintf.c | 55 wprintf(const wchar_t *format, ...) argument 61 va_start(ap, format); 83 count = _wndoprnt(format, ap, stdout, 0); 100 fwprintf(FILE *iop, const wchar_t *format, ...) argument 106 va_start(ap, format); 129 count = _wndoprnt(format, ap, iop, 0); 146 swprintf(wchar_t *string, size_t n, const wchar_t *format, ...) argument 159 va_start(ap, format); 160 count = _wndoprnt(format, ap, &siop, 0); 179 _wprintf_c89(const wchar_t *format, argument 191 _fwprintf_c89(FILE *iop, const wchar_t *format, ...) argument 203 _swprintf_c89(wchar_t *string, size_t n, const wchar_t *format, ...) argument [all...] |
H A D | vwprintf.c | 56 _vwprintf_c89(const wchar_t *format, va_list ap) argument 58 vwprintf(const wchar_t *format, va_list ap) 84 count = _wndoprnt(format, ap, stdout, _F_INTMAX32); 86 count = _wndoprnt(format, ap, stdout, 0); 105 _vfwprintf_c89(FILE *iop, const wchar_t *format, va_list ap) argument 107 vfwprintf(FILE *iop, const wchar_t *format, va_list ap) 134 count = _wndoprnt(format, ap, iop, _F_INTMAX32); 136 count = _wndoprnt(format, ap, iop, 0); 154 _vswprintf_c89(wchar_t *string, size_t n, const wchar_t *format, va_list ap) argument 156 vswprintf(wchar_t *string, size_t n, const wchar_t *format, va_lis [all...] |
H A D | vfprintf.c | 55 _vfprintf_c89(FILE *iop, const char *format, va_list ap) argument 57 vfprintf(FILE *iop, const char *format, va_list ap) 81 count = _ndoprnt(format, ap, iop, _F_INTMAX32); 83 count = _ndoprnt(format, ap, iop, 0);
|
H A D | vprintf.c | 56 _vprintf_c89(const char *format, va_list ap) argument 58 vprintf(const char *format, va_list ap) 82 count = _ndoprnt(format, ap, stdout, _F_INTMAX32); 84 count = _ndoprnt(format, ap, stdout, 0);
|
H A D | vsprintf.c | 56 _vsprintf_c89(char *string, const char *format, va_list ap) argument 58 vsprintf(char *string, const char *format, va_list ap) 68 count = _ndoprnt(format, ap, &siop, _F_INTMAX32); 70 count = _ndoprnt(format, ap, &siop, 0);
|
/osnet-11/usr/src/lib/libpp/common/ |
H A D | ppprintf.c | 31 ppprintf(char* format, ...) argument 38 va_start(ap, format); 39 sfvprintf(sp, format, ap);
|
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | tparm.c | 66 * format. Often more complex operations are necessary. 140 char format[20]; local 152 (void) strcpy(format, "%"); 168 (void) strcat(format, "l"); 169 len = strlen(format); 170 format[len] = *string; 171 format[len+1] = '\0'; 173 format, npop()); 174 (void) strcpy(format, "%"); 177 (void) strcat(format, " [all...] |