/illumos-gate/usr/src/lib/libast/common/port/ |
H A D | aststatic.c | 35 struct _astdll* ap = _ast_getdll(); local 37 ap->_dll_environ = &environ;
|
/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | V2.__sscans.c | 57 __sscans(WINDOW *win, char *fmt, va_list ap) argument 59 return (vwscanw(win, fmt, ap));
|
H A D | V2._sprintw.c | 56 _sprintw(WINDOW *win, char *fmt, va_list ap) argument 58 return (vwprintw(win, fmt, ap));
|
H A D | printw.c | 60 va_list ap; local 62 va_start(ap, fmt); 63 return (vwprintw(stdscr, fmt, ap));
|
H A D | scanw.c | 61 va_list ap; local 63 va_start(ap, fmt); 64 return (vwscanw(stdscr, fmt, ap));
|
H A D | wprintw.c | 60 va_list ap; local 63 va_start(ap, win); 64 fmt = va_arg(ap, char *); 65 return (vwprintw(win, fmt, ap));
|
H A D | wscanw.c | 60 va_list ap; local 62 va_start(ap, win); 63 fmt = va_arg(ap, char *); 64 return (vwscanw(win, fmt, ap));
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/mks/ |
H A D | m_cmdnam.c | 56 register char *ap; local 60 for (ap = cmd; *ap; ap++) 61 if (isupper(*ap)) 62 *ap = _tolower(*ap); 67 if ((ap = strrchr(cmd, '.')) != NULL) 68 *ap = '\0';
|
/illumos-gate/usr/src/lib/libpp/common/ |
H A D | pperror.c | 33 va_list ap; local 35 va_start(ap, level); 36 errorv(pp.pass, level, ap); 37 va_end(ap);
|
H A D | ppprintf.c | 33 va_list ap; local 38 va_start(ap, format); 39 sfvprintf(sp, format, ap); 40 va_end(ap);
|
/illumos-gate/usr/src/lib/libbc/libc/compat/common/ |
H A D | gtty.c | 36 gtty(int fd, struct sgttyb *ap) argument 39 return (ioctl(fd, TIOCGETP, ap));
|
H A D | stty.c | 36 stty(int fd, struct sgttyb *ap) argument 39 return(ioctl(fd, TIOCSETP, ap));
|
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/ |
H A D | printf.c | 42 va_list ap; local 44 va_start(ap, format); 55 count = _doprnt(format, ap, stdout); 56 va_end(ap);
|
H A D | vprintf.c | 39 vprintf(char *format, va_list ap) argument 51 return (_doprnt(format, ap, stdout));
|
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/ |
H A D | printf.c | 42 va_list ap; local 54 va_start(ap, format); 55 count = _doprnt(format, ap, stdout); 56 va_end(ap);
|
H A D | vprintf.c | 44 vprintf(char *format, va_list ap) argument 58 count = _doprnt(format, ap, stdout);
|
/illumos-gate/usr/src/cmd/rexd/ |
H A D | errprintf.c | 41 va_list ap; local 43 va_start(ap, fmt); 46 vsprintf(err, fmt, ap); 49 vfprintf(stderr, fmt, ap); 52 va_end(ap);
|
/illumos-gate/usr/src/cmd/sgs/prof/common/ |
H A D | symintErr.c | 65 va_list ap; local 68 va_start(ap, format_s); 69 (void) vfprintf(stderr, format_s, ap); 70 va_end(ap);
|
/illumos-gate/usr/src/cmd/sgs/tsort/common/ |
H A D | errusage.c | 49 va_list ap; local 56 va_start(ap, format); 57 (void) vfprintf(stderr, format, ap); 58 va_end(ap);
|
/illumos-gate/usr/src/cmd/tnf/prex/ |
H A D | util.c | 36 va_list ap; local 38 va_start(ap, s); 39 (void) vfprintf(stderr, s, ap); 41 va_end(ap); 49 va_list ap; 51 va_start(ap, s); 52 (void) vfprintf(stderr, s, ap); 54 va_end(ap);
|
/illumos-gate/usr/src/ucblib/libucb/port/stdio/ |
H A D | printf.c | 45 va_list ap; local 47 va_start(ap, format); 58 count = _doprnt((char *) format, ap, stdout); 59 va_end(ap);
|
H A D | vprintf.c | 51 vprintf(const char *format, va_list ap) argument 63 return (_doprnt((char *) format, ap, stdout));
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | bdev_dsort.c | 66 register struct buf *ap; local 72 ap = dp->b_actf; 73 if (ap == NULL) { 84 if (bp->b_cylin < ap->b_cylin) { 85 while (ap->av_forw) { 91 if (ap->av_forw->b_cylin < ap->b_cylin) { 99 if (bp->b_cylin < ap->av_forw->b_cylin) 101 ap = ap [all...] |
/illumos-gate/usr/src/lib/libast/common/misc/ |
H A D | errormsg.c | 35 va_list ap; local 37 va_start(ap, level); 38 errorv(dictionary, level, ap); 39 va_end(ap);
|
/illumos-gate/usr/src/boot/sys/boot/common/ |
H A D | panic.c | 47 va_list ap; local 50 va_start(ap, fmt); 51 vprintf(fmt, ap); 52 va_end(ap);
|