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

12345678

/freebsd-11-stable/lib/libvgl/
H A Dkeyboard.c47 static struct termios term; local
52 term = VGLKeyboardTty;
53 cfmakeraw(&term);
54 term.c_iflag = IGNPAR | IGNBRK;
55 term.c_oflag = OPOST | ONLCR;
56 term.c_cflag = CREAD | CS8;
57 term.c_lflag &= ~(ICANON | ECHO | ISIG);
58 term.c_cc[VTIME] = 0;
59 term.c_cc[VMIN] = 0;
60 cfsetispeed(&term, 960
[all...]
/freebsd-11-stable/tools/tools/iso/
H A Dcheck-iso639.pl32 my $term = $3;
37 $old{$bib}{term} = $term;
53 my $term = $a[1];
56 $term = $bib if ($term eq "");
60 $new{$bib}{term} = $term;
69 print "In old but not new: $old{$bib}{a2}\t$old{$bib}{bib}\t$old{$bib}{term}\t$old{$bib}{name}\n";
79 print "In new but not old: $new{$bib}{a2}\t$new{$bib}{bib}\t$new{$bib}{term}\
[all...]
/freebsd-11-stable/contrib/libreadline/examples/
H A Dexcallback.c95 struct termios term; variable in typeref:struct:termios
106 if( tcgetattr(STDIN_FILENO, &term) < 0 ) {
110 old_lflag = term.c_lflag;
111 old_vtime = term.c_cc[VTIME];
112 term.c_lflag &= ~ICANON;
113 term.c_cc[VTIME] = 1;
115 if( tcsetattr(STDIN_FILENO, TCSANOW, &term) < 0 ) {
145 term.c_lflag = old_lflag;
146 term.c_cc[VTIME] = old_vtime;
147 if( tcsetattr(STDIN_FILENO, TCSANOW, &term) <
[all...]
/freebsd-11-stable/contrib/netbsd-tests/usr.bin/infocmp/
H A Dt_terminfo.sh30 atf_set "descr" "infocmp can decode one of some existing term types"
35 for term in ansi vt100 wsvt25 sun-ss5 ibcs2 vt52 386at h19k h19kermit
38 env TERM="${term}" infocmp
49 for term in this-is-no-term nonexistent
52 env TERM="${term}" infocmp
/freebsd-11-stable/contrib/gdb/gdb/tui/
H A Dtui-command.c64 char *term; local
70 term = (char *) getenv ("TERM");
71 for (i = 0; (term && term[i]); i++)
72 term[i] = toupper (term[i]);
73 if ((strcmp (term, "XTERM") == 0) && key_is_start_sequence (ch))
/freebsd-11-stable/contrib/ncurses/form/
H A Dfrm_hook.c86 GEN_HOOK_SET_FUNCTION(field, term)
96 GEN_HOOK_GET_FUNCTION(field, term)
130 GEN_HOOK_SET_FUNCTION(form, term)
140 GEN_HOOK_GET_FUNCTION(form, term)
/freebsd-11-stable/contrib/ncurses/menu/
H A Dm_hook.c91 GEN_HOOK_SET_FUNCTION(menu, term)
103 GEN_HOOK_GET_FUNCTION(menu, term)
137 GEN_HOOK_SET_FUNCTION(item, term)
149 GEN_HOOK_GET_FUNCTION(item, term)
/freebsd-11-stable/contrib/tcsh/
H A Dsvn12 term = ""
14 term = "/"
15 print prefix + line.strip() + term
/freebsd-11-stable/contrib/netbsd-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...]
/freebsd-11-stable/lib/libc/gen/
H A Dreadpassphrase.c51 struct termios term, oterm; local
95 memcpy(&term, &oterm, sizeof(term));
97 term.c_lflag &= ~(ECHO | ECHONL);
98 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
99 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
100 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term);
102 memset(&term, 0, sizeof(term));
103 term
[all...]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dreadpassphrase.c67 struct termios term, oterm; local
103 memcpy(&term, &oterm, sizeof(term));
105 term.c_lflag &= ~(ECHO | ECHONL);
107 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
108 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
110 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term);
112 memset(&term, 0, sizeof(term));
113 term
[all...]
/freebsd-11-stable/sys/gdb/
H A Dgdb.h49 #define GDB_DBGPORT(name, probe, init, term, getc, putc) \
54 .gdb_term = term, \
/freebsd-11-stable/usr.bin/tset/
H A DMakefile5 SRCS= map.c misc.c set.c term.c tset.c wrterm.c
/freebsd-11-stable/usr.sbin/ctm/ctm/
H A Dctm_input.c29 Ffield(FILE *fd, MD5_CTX *ctx,u_char term) argument
50 if(buf[l-1] != term) {
53 term == '\n' ? "\\n" : " ",buf[l-1]);
65 Fbytecnt(FILE *fd, MD5_CTX *ctx, u_char term) argument
70 p = Ffield(fd,ctx,term);
111 Fname(FILE *fd, MD5_CTX *ctx,u_char term,int qual, int verbose) argument
116 if ((p = Ffield(fd,ctx,term)) == NULL) return(NULL);
/freebsd-11-stable/tools/tools/termcap/
H A Dtermcap.pl40 Usage: $0 -l [term]
41 Show all lengths or the ones for terminals matching [term]
43 Usage: $0 -p <term>
44 Print all information about <term>
46 Usage: $0 -r <term>
47 Print all relations from and to <term>
/freebsd-11-stable/usr.bin/tput/
H A Dtput.c64 char *cptr, *term, buf[1024], tbuf[1024]; local
67 term = NULL;
71 term = optarg;
83 if (!term && !(term = getenv("TERM")))
85 if (tgetent(tbuf, term) != 1)
210 (void)fprintf(stderr, "usage: tput [-T term] attribute ...\n");
/freebsd-11-stable/contrib/libarchive/libarchive_fe/
H A Dpassphrase.c173 struct termios term, oterm; local
209 memcpy(&term, &oterm, sizeof(term));
211 term.c_lflag &= ~(ECHO | ECHONL);
213 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE)
214 term.c_cc[VSTATUS] = _POSIX_VDISABLE;
216 (void)tcsetattr(input, _T_FLUSH, &term);
218 memset(&term, 0, sizeof(term));
219 term
[all...]
/freebsd-11-stable/contrib/one-true-awk/
H A Dawkgram.y65 %type <p> pas pattern ppattern plist pplist patlist prarg term re
214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); }
216 | term
247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
249 | term
295 print prarg '|' term {
298 | print prarg APPEND term {
301 | print prarg GT term {
351 term: label
352 term '/' ASGNO
[all...]
/freebsd-11-stable/contrib/libreadline/examples/rlfe/
H A DMakefile.in82 rm -f shadow/term.h shadow/tty.c shadow/comm.h shadow/osdef.h
87 term.h: term.c term.sh
88 AWK=$(AWK) srcdir=$(srcdir) sh $(srcdir)/term.sh
90 kmapdef.c: term.h
99 rm -f tty.c term.h comm.h osdef.h kmapdef.c core
103 # building of term.h/comm.h requires awk. Keep it in the distribution
120 rm -f tty.c term.h comm.h osdef.h kmapdef.c
152 mdepend: $(CFILES) term
[all...]
/freebsd-11-stable/contrib/ntp/parseutil/
H A Dtestdcf.c374 struct termios term; local
377 if (tcgetattr(fd, &term) == -1)
383 memset(term.c_cc, 0, sizeof(term.c_cc));
384 term.c_cc[VMIN] = 1;
387 term.c_cflag = CS8|CREAD|CLOCAL;
389 term.c_cflag = CS8|CREAD|CLOCAL|PARENB;
391 term.c_iflag = IGNPAR;
392 term.c_oflag = 0;
393 term
[all...]
/freebsd-11-stable/contrib/ncurses/include/
H A Dncurses_mingw.h71 extern void _nc_set_term_driver(void* term);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dabug-rom.c128 abug_cmds.setmem.term = NULL; /* setreg.term */
135 abug_cmds.getmem.term = NULL; /* getmem.term */
139 abug_cmds.setreg.term = "? "; /* setreg.term */
143 abug_cmds.getreg.term = "? "; /* getreg.term */
H A Dcpu32bug-rom.c126 cpu32bug_cmds.setmem.term = NULL; /* setreg.term */
133 cpu32bug_cmds.getmem.term = NULL; /* getmem.term */
137 cpu32bug_cmds.setreg.term = NULL; /* setreg.term */
141 cpu32bug_cmds.getreg.term = NULL; /* getreg.term */
H A Ddbug-rom.c124 dbug_cmds.setmem.term = NULL; /* setmem.term */
131 dbug_cmds.getmem.term = NULL; /* getmem.term */
135 dbug_cmds.setreg.term = NULL; /* setreg.term */
139 dbug_cmds.getreg.term = NULL; /* getreg.term */
H A Dremote-est.c132 est_cmds.setmem.term = NULL; /* setreg.term */
139 est_cmds.getmem.term = NULL; /* getmem.term */
143 est_cmds.setreg.term = NULL; /* setreg.term */
147 est_cmds.getreg.term = NULL; /* getreg.term */

Completed in 309 milliseconds

12345678