/src/usr.bin/tset/ |
extern.h | 41 int outc(int);
|
misc.c | 62 outc(int c) function in typeref:typename:int
|
set.c | 220 tputs(reset_1string, 0, outc); 224 tputs(reset_2string, 0, outc); 255 tputs(clear_all_tabs, 0, outc); 264 tputs(out, 1, outc); 268 tputs(set_tab, 0, outc);
|
/src/lib/libterminfo/ |
tputs.c | 82 int (*outc)(int, void *), void *args) 92 outc(pc, args); 97 const char *str, int affcnt, int (*outc)(int, void *), void *args) 113 outc(*str, args); 119 _ti_outputdelay(delay, os, pc, outc, args); 125 _ti_outputdelay(taildelay, os, pc, outc, args); 132 int (*outc)(int, void *), void *args) 138 _DIAGASSERT(outc != NULL); 152 str, affcnt, outc, args); 165 tputs(const char *str, int affcnt, int (*outc)(int) [all...] |
/src/usr.bin/unvis/ |
unvis.c | 112 char outc; local in function:process 117 switch(ret = unvis(&outc, (char)c, &state, eflags)) { 119 (void)putchar(outc); 122 (void)putchar(outc); 136 if (unvis(&outc, (char)0, &state, eflags | UNVIS_END) == UNVIS_VALID) 137 (void)putchar(outc);
|
/src/bin/sh/ |
output.h | 103 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c))) macro 104 #define out1c(c) outc(c, out1) 105 #define out2c(c) outc(c, out2) 106 #define outxc(c) outc(c, outx)
|
output.c | 159 outc((c = *p++), file); 217 outc('"', file); 219 outc('"', file); 230 outc('\'', file); 237 outc(c, file); 242 outc('\'', file); /* inq = 0, implicit */ 243 outc('\\', file); 244 outc(c, file); 247 outc('\'', file); 253 outc('\'', file) [all...] |
trap.c | 156 outc(' ', out); 162 outc(' ', out); 201 outc('\n', out); 218 outc('\n', out);
|
jobs.c | 527 outc(' ', out); 533 outc(' ', out); 534 outc('|', out); 540 outc('\n', out);
|
redir.c | 1207 outc(sep, out); 1229 outc('-', out);
|
/src/bin/sh/bltin/ |
bltin.h | 72 #define putc(c, file) _RETURN_INT(outc(c, file))
|
/src/usr.bin/ul/ |
ul.c | 86 static void outc(int); 288 outc(' '); 291 outc(obuf[i].c_char); 420 outc(int c) function in typeref:typename:void
|
/src/usr.bin/ftp/ |
ftp.c | 614 ssize_t inc, outc; local in function:copy_bytes 631 inc = outc = 0; 648 outc = write(outfd, bufp, inc); 649 if (outc < 0) { 655 inc -= outc; 656 bufp += outc; 688 if (outc == -1)
|