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

12

/macosx-10.10/text_cmds-88/unvis/
H A Dunvis.c98 char outc; local
103 switch(ret = unvis(&outc, (char)c, &state, 0)) {
105 putchar(outc);
108 putchar(outc);
121 if (unvis(&outc, (char)0, &state, UNVIS_END) == UNVIS_VALID)
122 putchar(outc);
/macosx-10.10/ncurses-44/ncurses/test/
H A Ddots.c50 outc(TPUTS_ARG c) function
65 tputs(s, 1, outc);
129 tputs(tparm3(cursor_address, y, x), 1, outc); local
133 tputs(tparm2(set_a_foreground, z), 1, outc); local
135 tputs(tparm2(set_a_background, z), 1, outc); local
147 outc(p);
H A Drailroad.c59 outc(TPUTS_ARG c) function
81 tputs(backup != 0 ? backup : "\b", 1, outc);
88 tputs(flag ? startC : finisC, 1, outc);
96 tputs(flag ? startS : finisS, 1, outc);
104 tputs(flag ? startU : finisU, 1, outc);
115 tputs(tgoto(moveit, 0, height - 1), 1, outc);
116 tputs(wipeit, 1, outc);
125 tputs(tgoto(moveit, first + 1, height - 1), 1, outc);
128 tputs(tgoto(moveit, first, height - 1), 1, outc);
160 tputs(wipeit, 1, outc);
[all...]
H A Ddots_mvcur.c50 outc(TPUTS_ARG c) function
65 tputs(s, 1, outc);
140 tputs(tparm2(set_a_foreground, z), 1, outc); local
142 tputs(tparm2(set_a_background, z), 1, outc); local
154 outc(p);
/macosx-10.10/vim-55/src/proto/
H A Dtermlib.pro7 int tputs __ARGS((char *cp, int affcnt, void (*outc)(unsigned int)));
/macosx-10.10/ncurses-44/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) ('<');
/macosx-10.10/ksh-23/ksh/src/lib/libast/sfio/
H A Dsfflsbuf.c40 uchar outc; local
86 outc = (uchar)c;
87 data = &outc;
/macosx-10.10/ncurses-44/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...]
/macosx-10.10/ncurses-44/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));
/macosx-10.10/vim-55/src/
H A Dtermlib.c515 * (lines, characters, whatever), outc = routine to output 1 character.
536 tputs(cp, affcnt, outc)
539 void (*outc) __ARGS((unsigned int));/* routine to output 1 character */
566 (*outc)(*cp++);
569 (*outc)(PC);
573 (*outc)(*cp++);
/macosx-10.10/ncurses-44/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
/macosx-10.10/screen-22/screen/
H A Dmisc.c630 _delay(delay, outc)
632 int (*outc) __P((int));
645 (*outc)(0);
654 * to store the current outc function. Oh well...
662 xtputs(str, affcnt, outc)
665 int (*outc) __P((int));
668 save_outc = outc;
669 tputs(str, affcnt, outc);
/macosx-10.10/tcsh-65/tcsh/
H A Dvms.termcap.c313 * outc. This should do padding for the terminal, but I can't find a
317 tputs(char *cp, int affcnt, int (*outc)()) argument
327 (*outc)(*cp++);
/macosx-10.10/text_cmds-88/ul/
H A Dul.c103 void outc(wint_t, int);
324 outc(' ', 1);
326 outc(obuf[i].c_char, obuf[i].c_width);
506 outc(wint_t c, int width) function
/macosx-10.10/zsh-61/zsh/Src/
H A Dprototypes.h52 extern int tputs _((TC_CONST char *cp, int affcnt, int (*outc) (int)));
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dmprintf.c954 unsigned char outc = (unsigned char)output; local
958 infop->buffer[0] = outc; /* store */
961 return outc; /* fputc() returns like this on success */
1002 unsigned char outc = (unsigned char)output; local
1026 infop->buffer[ infop->len ] = outc;
1030 return outc; /* fputc() returns like this on success */
1088 unsigned char outc = (unsigned char)output; local
1089 **buffer = outc;
1091 return outc; /* act like fputc() ! */
/macosx-10.10/WTF-7600.1.24/wtf/text/
H A DStringImpl.cpp789 unsigned outc = from - characters; local
791 if (outc)
792 memcpy(to, characters, outc * sizeof(CharType));
798 to[outc++] = *from++;
803 data.shrink(outc);
822 int outc = 0; local
834 to[outc++] = *from++;
836 to[outc++] = ' ';
841 if (outc > 0 && to[outc
[all...]
/macosx-10.10/ncurses-44/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);
/macosx-10.10/lukemftp-14/tnftp/src/
H A Dftp.c596 ssize_t inc, outc; local
613 inc = outc = 0;
624 outc = write(outfd, bufp, inc);
625 if (outc < 0)
627 inc -= outc;
628 bufp += outc;
660 if (outc == -1)
H A Dftp.c.orig592 ssize_t inc, outc;
609 inc = outc = 0;
620 outc = write(outfd, bufp, inc);
621 if (outc < 0)
623 inc -= outc;
624 bufp += outc;
656 if (outc == -1)
/macosx-10.10/Libnotify-133.1.1/
H A Dlibnotify.c1145 _internal_register_common(notify_state_t *ns, const char *name, pid_t pid, int token, uid_t uid, gid_t gid, client_t **outc) argument
1154 if (outc == NULL) return NOTIFY_STATUS_OK;
1159 *outc = NULL;
1190 *outc = c;
/macosx-10.10/ncurses-44/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)(
/macosx-10.10/groff-38/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 372 milliseconds

12