/illumos-gate/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);
|
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/ |
H A D | printf.c | 39 printf(char *format, ...) argument 44 va_start(ap, format); 55 count = _doprnt(format, ap, stdout);
|
H A D | vprintf.c | 39 vprintf(char *format, va_list ap) argument 51 return (_doprnt(format, ap, stdout));
|
H A D | sprintf.c | 40 sprintf(char *string, char *format, ...) argument 48 va_start(ap, format); 49 (void) _doprnt(format, ap, &siop);
|
H A D | vsprintf.c | 40 vsprintf(char *string, char *format, va_list ap) argument 47 (void) _doprnt(format, ap, &siop);
|
H A D | fprintf.c | 39 fprintf(FILE *iop, char *format, ...) argument 55 va_start(ap, format); 60 count = _doprnt(format, ap, iop); 67 count = _doprnt(format, ap, iop);
|
H A D | vfprintf.c | 39 vfprintf(FILE *iop, char *format, va_list ap) argument 58 count = _doprnt(format, ap, iop); 65 count = _doprnt(format, ap, iop);
|
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/ |
H A D | printf.c | 39 printf(char *format, ...) argument 54 va_start(ap, format); 55 count = _doprnt(format, ap, stdout);
|
H A D | vprintf.c | 44 vprintf(char *format, va_list ap) argument 58 count = _doprnt(format, ap, stdout);
|
H A D | fprintf.c | 39 fprintf(FILE *iop, char *format, ...) argument 55 va_start(ap, format); 60 count = _doprnt(format, ap, iop); 67 count = _doprnt(format, ap, iop);
|
H A D | sprintf.c | 40 sprintf(char *string, char *format, ...) argument 49 va_start(ap, format); 50 count = _doprnt(format, ap, &siop);
|
/illumos-gate/usr/src/cmd/sgs/tsort/common/ |
H A D | errafter.c | 46 errafter(int severity, char *format, ...) argument
|
H A D | errbefore.c | 44 errbefore(int severity, char *format, ...) argument
|
H A D | errusage.c | 47 errusage(char *format, ...) argument 56 va_start(ap, format); 57 (void) vfprintf(stderr, format, ap);
|
/illumos-gate/usr/src/ucblib/libucb/port/stdio/ |
H A D | printf.c | 42 printf(const char *format, ...) argument 47 va_start(ap, format); 58 count = _doprnt((char *) format, ap, stdout);
|
H A D | vprintf.c | 51 vprintf(const char *format, va_list ap) argument 63 return (_doprnt((char *) format, ap, stdout));
|
H A D | fprintf.c | 51 fprintf(FILE *iop, const char *format, ...) argument 56 va_start(ap, format); 68 count = _doprnt((char *) format, ap, iop);
|
H A D | sprintf.c | 52 sprintf(const char *string, const char *format, ...) argument 60 va_start(ap, format); 61 (void) _doprnt((char *) format, ap, &siop);
|
H A D | vfprintf.c | 51 vfprintf(FILE *iop, const char *format, va_list ap) argument 65 count = _doprnt((char *) format, ap, iop);
|
H A D | vsprintf.c | 52 vsprintf(char *string, char *format, va_list ap) argument 59 (void) _doprnt(format, ap, &siop);
|
/illumos-gate/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));
|
/illumos-gate/usr/src/lib/libc/port/print/ |
H A D | vprintf.c | 58 _vprintf_c89(const char *format, va_list ap) argument 60 vprintf(const char *format, va_list ap) 84 count = _ndoprnt(format, ap, stdout, _F_INTMAX32); 86 count = _ndoprnt(format, ap, stdout, 0);
|
/illumos-gate/usr/src/cmd/mdb/tools/common/ |
H A D | die.c | 39 die(char *format, ...) argument 46 va_start(ap, format); 47 /* LINTED - variable format specifier */ 48 (void) vfprintf(stderr, format, ap); 51 if (format[strlen(format) - 1] != '\n') 58 elfdie(char *format, ...) argument 64 va_start(ap, format); 65 /* LINTED - variable format specifier */ 66 (void) vfprintf(stderr, format, a [all...] |
/illumos-gate/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);
|