Searched refs:term (Results 1 - 25 of 198) sorted by relevance

12345678

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/fixincludes/tests/base/
H A Dcurses.h29 struct term;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.brendan/
H A Derr-msg1.C6 int j = A::term;// { dg-error "" } .term.*
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.brendan/
H A Derr-msg1.C6 int j = A::term;// { dg-error "" } .term.*
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/fixincludes/tests/base/
H A Dcurses.h29 struct term;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dpr33146.c4 int term; member in struct:__anon5357
12 if (!pass->term)
15 while (termpass - pass < numpasses && !termpass->term)
H A Dpr32584.c59 TEBOXPTR term , *xpptr ; local
64 for( term = tile->termsptr ; term != (TEBOXPTR) ((void *)0) ;
65 term = term->nextterm ) {
66 xpptr[ ++n ] = term ;
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dsetterm.c72 (void)ti_setupterm(&screen->term, type, fileno(screen->outfd), &r);
73 if (screen->term == NULL) {
75 (void)ti_setupterm(&screen->term, "dumb",
77 /* No dumb term? We can't continue */
78 if (screen->term == NULL)
95 screen->LINES = t_lines(screen->term);
96 screen->COLS = t_columns(screen->term);
127 screen->padchar = t_pad_char(screen->term) ?
128 t_pad_char(screen->term)[0] : 0;
132 (t_change_scroll_region(screen->term)
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/examples/
H A Dexcallback.c92 struct termios term; variable in typeref:struct:termios
103 if( tcgetattr(STDIN_FILENO, &term) < 0 ) {
107 old_lflag = term.c_lflag;
108 old_vtime = term.c_cc[VTIME];
109 term.c_lflag &= ~ICANON;
110 term.c_cc[VTIME] = 1;
112 if( tcsetattr(STDIN_FILENO, TCSANOW, &term) < 0 ) {
142 term.c_lflag = old_lflag;
143 term.c_cc[VTIME] = old_vtime;
144 if( tcsetattr(STDIN_FILENO, TCSANOW, &term) <
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dtty-term.c1 /* $Id: tty-term.c,v 1.4 2011/08/17 19:28:36 jmmv Exp $ */
29 #include <term.h>
227 tty_term_override(struct tty_term *term, const char *overrides) argument
247 if (fnmatch(entstr, term->name, 0) != 0)
272 code = &term->codes[ent->code];
312 struct tty_term *term; local
320 LIST_FOREACH(term, &tty_terms, entry) {
321 if (strcmp(term->name, name) == 0) {
322 term->references++;
323 return (term);
459 tty_term_free(struct tty_term *term) argument
477 tty_term_has(struct tty_term *term, enum tty_code_code code) argument
483 tty_term_string(struct tty_term *term, enum tty_code_code code) argument
494 tty_term_string1(struct tty_term *term, enum tty_code_code code, int a) argument
500 tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b) argument
506 tty_term_ptr1(struct tty_term *term, enum tty_code_code code, const void *a) argument
512 tty_term_ptr2(struct tty_term *term, enum tty_code_code code, const void *a, const void *b) argument
518 tty_term_number(struct tty_term *term, enum tty_code_code code) argument
528 tty_term_flag(struct tty_term *term, enum tty_code_code code) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libterminfo/
H A Dti.c36 #include <term.h>
39 ti_getflag(const TERMINAL *term, const char *id) argument
45 _DIAGASSERT(term != NULL);
50 return term->flags[ind];
51 for (i = 0; i < term->_nuserdefs; i++) {
52 ud = &term->_userdefs[i];
70 ti_getnum(const TERMINAL *term, const char *id) argument
76 _DIAGASSERT(term != NULL);
81 if (!VALID_NUMERIC(term->nums[ind]))
83 return term
107 ti_getstr(const TERMINAL *term, const char *id) argument
[all...]
H A Dsetupterm.c40 #include <term.h>
64 ti_setupterm(TERMINAL **nterm, const char *term, int fildes, int *errret) argument
70 if (term == NULL)
71 term = getenv("TERM");
72 if (term == NULL || *term == '\0') {
83 error = _ti_getterm(*nterm, term, 0);
94 term);
105 reterrarg(0, "%s: generic terminal", term);
107 reterrarg(1, "%s: hardcopy terminal", term);
115 setupterm(const char *term, int fildes, int *errret) argument
[all...]
H A Dtputs.c38 #include <term.h>
131 ti_puts(const TERMINAL *term, const char *str, int affcnt, argument
137 _DIAGASSERT(term != NULL);
141 dodelay = (str == t_bell(term) ||
142 str == t_flash_screen(term) ||
143 (t_xon_xoff(term) == 0 && t_padding_baud_rate(term) != 0));
145 if (t_pad_char(term) == NULL)
148 pc = *t_pad_char(term);
149 return _ti_puts(dodelay, term
154 ti_putp(const TERMINAL *term, const char *str) argument
[all...]
H A Dterm.c45 #include <term.h>
57 _ti_readterm(TERMINAL *term, const char *cap, size_t caplen, int flags) argument
71 term->flags = calloc(TIFLAGMAX + 1, sizeof(char));
72 if (term->flags == NULL)
74 term->nums = malloc((TINUMMAX + 1) * sizeof(short));
75 if (term->nums == NULL)
77 memset(term->nums, (short)-1, (TINUMMAX + 1) * sizeof(short));
78 term->strs = calloc(TISTRMAX + 1, sizeof(char *));
79 if (term->strs == NULL)
81 term
212 _ti_dbgetterm(TERMINAL *term, const char *path, const char *name, int flags) argument
266 _ti_dbgettermp(TERMINAL *term, const char *path, const char *name, int flags) argument
320 _ti_findterm(TERMINAL *term, const char *name, int flags) argument
393 _ti_getterm(TERMINAL *term, const char *name, int flags) argument
[all...]
H A Dtparm.c42 #include <term.h>
97 checkbuf(TERMINAL *term, size_t len) argument
101 if (term->_bufpos + len >= term->_buflen) {
102 len = term->_buflen + MAX(len, BUFSIZ);
103 buf = realloc(term->_buf, len);
106 term->_buf = buf;
107 term->_buflen = len;
109 return term->_buf;
113 ochar(TERMINAL *term, in argument
125 onum(TERMINAL *term, const char *fmt, int num, unsigned int len) argument
185 _ti_tiparm(TERMINAL *term, const char *str, int va_type, va_list parms) argument
546 ti_tiparm(TERMINAL *term, const char *str, ...) argument
576 ti_tlparm(TERMINAL *term, const char *str, ...) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/contrib/zkt/
H A Dtcap.h28 extern int tc_init (FILE *fp, const char *term);
29 extern int tc_end (FILE *fp, const char *term);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dgdb_curses.h35 #include <ncurses/term.h>
37 #include <term.h>
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssh/dist/
H A Dreadpassphrase.c52 struct termios term, oterm; local
88 memcpy(&term, &oterm, sizeof(term));
89 if (!(flags & RPP_ECHO_ON) && (term.c_lflag & ECHO))
90 term.c_lflag &= ~ECHO;
91 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
92 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
93 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term);
95 memset(&term, 0, sizeof(term));
[all...]
/netbsd-6-1-5-RELEASE/dist/nvi/gtk/
H A Dgtkvi.c49 return zvt_term_forkpty(ZVT_TERM(vi->term), 0);
60 GtkWidget *term; local
66 term = zvt_term_new();
67 gtk_widget_show(term);
68 vi->term = term;
69 vt_parse_vt(&ZVT_TERM(term)->vx->vt, "test\n", 5);
72 gtk_signal_connect(GTK_OBJECT(term), "key_press_event",
/netbsd-6-1-5-RELEASE/lib/libc/gen/
H A Dgetpass.c59 struct termios term; local
86 (void)tcgetattr(fileno(fp), &term); local
87 if ((echo = (term.c_lflag & ECHO)) != 0) {
88 term.c_lflag &= ~ECHO;
89 (void)tcsetattr(fileno(fp), TCSAFLUSH|TCSASOFT, &term); local
100 term.c_lflag |= ECHO;
101 (void)tcsetattr(fileno(fp), TCSAFLUSH|TCSASOFT, &term); local
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/tui/
H A Dtui-command.c65 char *term; local
70 term = (char *) getenv ("TERM");
71 if (term)
73 for (i = 0; term[i]; i++)
74 term[i] = toupper (term[i]);
75 if ((strcmp (term, "XTERM") == 0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/cpp/
H A Dlexstrng.c30 const char *term = "\"\\\"\\";
59 if (term[0] != '"' || term[1] != '\\' || term[2] != '"'
60 || term[3] != '\\' || term[4] != '\0')
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dterm.exp29 verbose "Skipping term.exp because of noargs."
39 if { [prepare_for_testing term.exp term run.c] } {
54 fail "term.exp, factorial didn't run to completion for info terminal"
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/cpp/
H A Dlexstrng.c30 const char *term = "\"\\\"\\";
59 if (term[0] != '"' || term[1] != '\\' || term[2] != '"'
60 || term[3] != '\\' || term[4] != '\0')
/netbsd-6-1-5-RELEASE/tests/lib/libc/ttyio/
H A Dt_ttyio.c82 struct termios term; local
91 memset(&term, 0, sizeof(term));
92 term.c_iflag = TTYDEF_IFLAG;
93 term.c_oflag = TTYDEF_OFLAG;
94 term.c_cflag = TTYDEF_CFLAG;
95 term.c_lflag = TTYDEF_LFLAG;
96 cfsetspeed(&term, TTYDEF_SPEED);
99 REQUIRE_ERRNO(openpty(&m, &s, name, &term, NULL), -1);
145 if (tcsetattr(s, TCSADRAIN, &term)
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/termios/
H A Dtcflow.c57 struct termios term; local
69 if (tcgetattr(fd, &term) == -1)
71 c = term.c_cc[action == TCIOFF ? VSTOP : VSTART];

Completed in 354 milliseconds

12345678