Searched refs:outc (Results 1 - 24 of 24) sorted by relevance

/freebsd-9.3-release/usr.bin/tset/
H A Dextern.h41 int outc(int);
H A Dmisc.c63 outc(int c) function
H A Dset.c257 tputs(buf, 0, outc);
294 tputs(clear_tabs, 0, outc);
312 tputs(tg_out, 1, outc);
316 tputs(Set_tab, 0, outc);
/freebsd-9.3-release/contrib/unvis/
H A Dunvis.c112 char outc; local
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);
/freebsd-9.3-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_tputs.c127 tputs(const char *string, int affcnt, int (*outc) (int))
140 if (outc == _nc_outch)
143 (void) sprintf(addrbuf, "%p", outc);
201 my_outch = outc; /* redirect delay_output() */
204 (*outc) (*string);
208 (*outc) ('$');
210 (*outc) (*string);
217 (*outc) ('$');
218 (*outc) ('<');
/freebsd-9.3-release/bin/sh/
H A Doutput.h76 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c))) macro
77 #define out1c(c) outc(c, out1);
H A Doutput.c100 outc(c, file);
165 outc(ch, file);
179 outc(*p++, file);
/freebsd-9.3-release/usr.bin/tput/
H A Dtput.c54 #define outc putchar macro
178 (void)tputs(str, 1, outc);
187 (void)tputs(tgoto(str, arg_cols, arg_rows), 1, outc); local
198 (void) tputs(tgoto(str, arg_cols, arg_rows), arg_rows, outc); local
/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dlib_color.c150 set_background_color(int bg, int (*outc) (int))
154 tputs(TPARM_1(set_a_background, bg), 1, outc); local
157 tputs(TPARM_1(set_background, toggled_colors(bg)), 1, outc); local
162 set_foreground_color(int fg, int (*outc) (int))
166 tputs(TPARM_1(set_a_foreground, fg), 1, outc); local
169 tputs(TPARM_1(set_foreground, toggled_colors(fg)), 1, outc); local
524 _nc_do_color(short old_pair, short pair, bool reverse, int (*outc) (int))
535 tputs(TPARM_1(set_color_pair, pair), 1, outc); local
556 tputs("\033[39m", 1, outc);
560 tputs("\033[49m", 1, outc);
[all...]
/freebsd-9.3-release/bin/sh/bltin/
H A Dbltin.h54 #define putc(c, file) outc(c, file)
/freebsd-9.3-release/usr.bin/lex/
H A Dmisc.c310 outc( '\n' );
317 outc( '\n' );
472 outc( ',' );
481 outc( ',' );
499 outc( ',' );
507 outc( ',' );
692 void outc( c ) function
846 outc( '\n' );
849 outc( '\n' );
H A Dgen.c70 outc( '\t' );
76 outc( ' ' );
126 outc( '\n' );
518 outc( '\n' );
529 outc( '\n' );
554 outc( '\n' );
681 outc( '\n' );
742 outc( '\n' );
H A Dflexdef.h896 extern void outc PROTO((int));
/freebsd-9.3-release/contrib/ncurses/ncurses/widechar/
H A Dlib_vid_attr.c38 #define doPut(mode) TPUTS_TRACE(#mode); tputs(mode, 1, outc)
53 _nc_do_color(old_pair, pair, reverse, outc); \
60 vid_puts(attr_t newmode, short pair, void *opts GCC_UNUSED, int (*outc) (int))
171 (newmode & A_ALTCHARSET) != 0), 1, outc); local
236 returnCode(vidputs(newmode, outc));
/freebsd-9.3-release/contrib/ncurses/ncurses/tty/
H A Dlib_vidattr.c36 * vidputs(newmode, outc)
70 #define doPut(mode) TPUTS_TRACE(#mode); tputs(mode, 1, outc)
86 _nc_do_color(old_pair, pair, reverse, outc); \
93 vidputs(chtype newmode, int (*outc) (int))
234 (newmode & A_ALTCHARSET) != 0), 1, outc); local
H A Dlib_mvcur.c974 tputs(const char *string, int affcnt GCC_UNUSED, int (*outc) (int) GCC_UNUSED)
/freebsd-9.3-release/contrib/tcsh/
H A Dvms.termcap.c334 * outc. This should do padding for the terminal, but I can't find a
338 tputs(char *cp, int affcnt, int (*outc)()) argument
348 (*outc)(*cp++);
/freebsd-9.3-release/usr.bin/ul/
H A Dul.c99 void outc(wint_t, int);
320 outc(' ', 1);
322 outc(obuf[i].c_char, obuf[i].c_width);
502 outc(wint_t c, int width) function
/freebsd-9.3-release/contrib/ncurses/progs/
H A Dtset.c222 outc(int c) function
994 tputs(p, 0, outc);
998 tputs(p, 0, outc);
1030 tputs(clear_all_tabs, 0, outc);
1042 tputs(set_tab, 0, outc);
/freebsd-9.3-release/contrib/tnftp/src/
H A Dftp.c588 ssize_t inc, outc; local
605 inc = outc = 0;
616 outc = write(outfd, bufp, inc);
617 if (outc < 0)
619 inc -= outc;
620 bufp += outc;
652 if (outc == -1)
/freebsd-9.3-release/contrib/ncurses/ncurses/
H A Dllib-lncursesw285 int (*outc)(
2386 int (*outc)(
2754 int (*outc)(
3553 int (*outc)(
H A Dllib-lncurses248 int (*outc)(
1876 int (*outc)(
2807 int (*outc)(
H A Dllib-lncursest251 int (*outc)(
1880 int (*outc)(
2862 int (*outc)(
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dnode.cpp729 void outc(unsigned char c);
733 void ascii_output_file::outc(unsigned char c) function in class:ascii_output_file
2148 ascii->outc(c);
3466 ascii->outc(' ');
3473 ascii->outc(' ');
3478 ascii->outc(' ');
4258 ascii->outc(c);

Completed in 202 milliseconds