Searched refs:stdout (Results 1 - 25 of 876) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/
H A Dvprintf.c48 if (!(stdout->_flag & _IOWRT)) {
50 if (stdout->_flag & _IORW) {
52 stdout->_flag |= _IOWRT;
58 count = _doprnt(format, ap, stdout);
59 return (ferror(stdout)? EOF: count);
H A Dprintf.c44 if (!(stdout->_flag & _IOWRT)) {
46 if (stdout->_flag & _IORW) {
48 stdout->_flag |= _IOWRT;
55 count = _doprnt(format, ap, stdout);
57 return (ferror(stdout)? EOF: count);
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Dputs.c51 if (_WRTCHK(stdout))
54 bufend = stdout->_base + stdout->_bufsiz;
57 while ((n = bufend - (cptr = stdout->_ptr)) <= 0) /* full buf */
58 if (_xflsbuf(stdout) == EOF)
62 stdout->_cnt -= n;
63 stdout->_ptr += n;
64 _BUFSYNC(stdout);
67 stdout->_ptr[-1] = '\n'; /* overwrite '\0' with '\n' */
68 if (stdout
[all...]
H A Dputchar.c39 return(putc(c, stdout));
/illumos-gate/usr/src/cmd/tnf/prex/
H A Dhelp.c552 (void) fputs(helpstr, stdout);
566 fputs(helptopicstrings[i], stdout);
580 fputs(helpstr_continue, stdout);
583 fputs(helpstr_disable, stdout);
586 fputs(helpstr_enable, stdout);
589 fputs(helpstr_help, stdout);
592 fputs(helpstr_list, stdout);
595 fputs(helpstr_quit, stdout);
598 fputs(helpstr_source, stdout);
601 fputs(helpstr_trace, stdout);
[all...]
/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/
H A Dprintf.c45 if (!(stdout->_flag & _IOWRT)) {
47 if (stdout->_flag & _IORW) {
49 stdout->_flag |= _IOWRT;
55 count = _doprnt(format, ap, stdout);
H A Dvprintf.c41 if (!(stdout->_flag & _IOWRT)) {
43 if (stdout->_flag & _IORW) {
45 stdout->_flag |= _IOWRT;
51 return (_doprnt(format, ap, stdout));
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dvprintf.c53 if (!(stdout->_flag & _IOWRT)) {
55 if (stdout->_flag & _IORW) {
57 stdout->_flag |= _IOWRT;
63 return (_doprnt((char *) format, ap, stdout));
H A Dprintf.c48 if (!(stdout->_flag & _IOWRT)) {
50 if (stdout->_flag & _IORW) {
52 stdout->_flag |= _IOWRT;
58 count = _doprnt((char *) format, ap, stdout);
/illumos-gate/usr/src/cmd/ndmpadm/
H A Dndmpadm_print.c73 (void) fprintf(stdout, gettext("\t%s type:\tLocal\n"), label);
76 (void) fprintf(stdout, gettext("\t%s type:\tTCP\n"), label);
77 (void) fprintf(stdout, gettext("\t%s address:\t%s\n"),
81 (void) fprintf(stdout, gettext("\t%s type:\tFC\n"), label);
84 (void) fprintf(stdout, gettext("\t%s type:\tIPC\n"), label);
87 (void) fprintf(stdout,
105 (void) fprintf(stdout, gettext("\tdata.env[%d]:\t%s: "),
108 (void) fprintf(stdout, "\"%s\"\n", ep->np_value);
118 (void) fprintf(stdout, gettext("\tSession Id:\t%d\n"), si->nsi_sid);
119 (void) fprintf(stdout, gettex
[all...]
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dputs.c54 FLOCKFILE(lk, stdout);
56 _SET_ORIENTATION_BYTE(stdout);
58 if (_WRTCHK(stdout)) {
63 bufend = _bufend(stdout);
67 while ((n = bufend - (cptr = stdout->_ptr)) <= 0) /* full buf */
69 if (_xflsbuf(stdout) == EOF) {
75 * n: number of available bytes in the buffer of stdout
79 * the buffer of stdout (ptrlen <= n), 'len' is set to
82 * of stdout.
86 stdout
[all...]
H A Dputchar.c50 FILE *iop = stdout;
65 FILE *iop = stdout;
/illumos-gate/usr/src/lib/libc/port/print/
H A Dvprintf.c67 FLOCKFILE(lk, stdout);
69 _SET_ORIENTATION_BYTE(stdout);
71 if (!(stdout->_flag & _IOWRT)) {
73 if (stdout->_flag & _IORW) {
75 stdout->_flag |= _IOWRT;
84 count = _ndoprnt(format, ap, stdout, _F_INTMAX32);
86 count = _ndoprnt(format, ap, stdout, 0);
89 if (FERROR(stdout) || count == EOF) {
H A Dprintf.c55 FLOCKFILE(lk, stdout);
57 _SET_ORIENTATION_BYTE(stdout);
59 if (!(stdout->_flag & _IOWRT)) {
61 if (stdout->_flag & _IORW) {
63 stdout->_flag |= _IOWRT;
71 count = _ndoprnt(format, ap, stdout, 0);
75 if (FERROR(stdout) || count == EOF) {
/illumos-gate/usr/src/cmd/smbsrv/fksmbd/
H A Dfksmbd_log.c36 * prints the messages to stdout for "fksmbd" debugging.
52 flockfile(stdout);
53 (void) fprintf(stdout, "fksmbd.%s: ", pri_name[pri]);
55 (void) vfprintf(stdout, newfmt, ap);
56 (void) fprintf(stdout, "\n");
57 funlockfile(stdout);
59 (void) fflush(stdout);
76 (void) fwrite(msg, 1, len, stdout);
77 (void) fflush(stdout);
/illumos-gate/usr/src/cmd/fcinfo/
H A DprintAttrs.c119 fprintf(stdout, "1Gb ");
123 fprintf(stdout, "2Gb ");
127 fprintf(stdout, "4Gb ");
131 fprintf(stdout, "8Gb ");
135 fprintf(stdout, "10Gb ");
139 fprintf(stdout, "16Gb ");
144 fprintf(stdout, "not established ");
148 fprintf(stdout, "not established ");
156 fprintf(stdout, gettext("Remote Port WWN: %016llx\n"),
158 fprintf(stdout, gettex
[all...]
/illumos-gate/usr/src/lib/libc/port/i18n/
H A Dputws.c35 * by a new-line character to stdout.
54 FLOCKFILE(lk, stdout);
56 if (fputwc(*ptr, stdout) == EOF) {
61 (void) fputwc('\n', stdout); /* append a new line */
64 if (fflush(stdout)) /* flush line */
H A Dputwchar.c51 return (_putwc(c, stdout));
57 return (__putwc_xpg5(c, stdout));
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/in.talkd/
H A Dprint.c55 (void) fflush(stdout);
63 (void) fflush(stdout);
/illumos-gate/usr/src/cmd/sgs/prof/common/
H A Ddebug.h43 #define DEBUG_EXP(exp) exp; fflush(stdout)
44 #define DEBUG_LOC(name) printf("Location: %s\n",name); fflush(stdout)
/illumos-gate/usr/src/cmd/smbsrv/smbd/
H A Dsmbd_syslog.c50 (void) fprintf(stdout, "@ %s",
56 flockfile(stdout);
57 (void) fprintf(stdout, "smbd.%s: ", pri_name[pri]);
59 (void) vfprintf(stdout, newfmt, ap);
60 (void) fprintf(stdout, "\n");
61 funlockfile(stdout);
63 (void) fflush(stdout);
68 * both to the normal sysloc(3c), and to stdout, which ends up in:
98 (void) fprintf(stdout, "smbd.trace: %s\n", s);
/illumos-gate/usr/src/cmd/sasinfo/
H A DprintAttrs.c228 (void *) fprintf(stdout, "%s %s\n", "HBA Name:", adapterName);
231 (void *) fprintf(stdout, "%s%s %s\n",
235 (void *) fprintf(stdout, "%s%s %s\n",
238 (void *) fprintf(stdout, "%s%s %s\n",
243 (void *) fprintf(stdout, "%s%s %s\n",
248 (void *) fprintf(stdout, "%s%s %s\n",
253 (void *) fprintf(stdout, "%s%s %s\n",
258 (void *) fprintf(stdout, "%s%s %s\n",
263 (void *) fprintf(stdout, "%s%s %d\n",
281 (void *) fprintf(stdout, "
[all...]
/illumos-gate/usr/src/boot/sys/boot/ofw/libofw/
H A Dofw_console.c44 static ihandle_t stdout; variable
62 OF_getprop(chosen, "stdout", &stdout, sizeof(stdout));
79 OF_write(stdout, &cbuf, 1);
83 OF_write(stdout, &cbuf, 1);
/illumos-gate/usr/src/cmd/lp/filter/postscript/postprint/
H A Dpostprint.c145 FILE *fp_out = stdout; /* and write stuff here */
255 fprintf(stdout, "%s", CONFORMING);
256 fprintf(stdout, "%s %s\n", CREATOR, "%M%");
257 fprintf(stdout, "%s %s\n", VERSION, "%I%");
258 fprintf(stdout, "%s %s\n", DOCUMENTFONTS, ATEND);
259 fprintf(stdout, "%s %s\n", PAGES, ATEND);
260 fprintf(stdout, "%s", ENDCOMMENTS);
267 fprintf(stdout, "%s", ENDPROLOG);
268 fprintf(stdout, "%s", BEGINSETUP);
269 fprintf(stdout, "mar
[all...]
/illumos-gate/usr/src/cmd/uname/
H A Duname.c154 (void) fprintf(stdout, fs, sizeof (un->sysname),
159 (void) fprintf(stdout, fs, sizeof (un->nodename), un->nodename);
163 (void) fprintf(stdout, fs, sizeof (un->release), un->release);
167 (void) fprintf(stdout, fs, sizeof (un->version), un->version);
171 (void) fprintf(stdout, fs, sizeof (un->machine), un->machine);
180 (void) fprintf(stdout, fs, strlen(procbuf), procbuf);
189 (void) fprintf(stdout, fs, strlen(procbuf), procbuf);
195 (void) fprintf(stdout, "System = %.*s\n", sizeof (un->sysname),
197 (void) fprintf(stdout, "Node = %.*s\n", sizeof (un->nodename),
199 (void) fprintf(stdout, "Releas
[all...]

Completed in 141 milliseconds

1234567891011>>