| /freebsd/contrib/wpa/wpa_supplicant/doc/docbook/ |
| H A D | wpa_cli.sgml | 113 <term>-p path</term> 120 <term>-g control socket path</term> 128 <term>-i ifname</term> 136 <term>-h</term> 142 <term>-v</term> 148 <term>-B</term> 153 <term>-a file</term> 171 <term>-P file</term> 178 <term>-G ping interval</term> 185 <term>command</term> [all …]
|
| H A D | wpa_supplicant.sgml | 254 <term>nl80211</term> 262 <term>wext</term> 270 <term>wired</term> 277 <term>macsec_linux</term> 284 <term>roboswitch</term> 291 <term>none</term> 298 <term>bsd</term> 305 <term>ndis</term> 321 <term>-b br_ifname</term> 328 <term>-B</term> [all …]
|
| H A D | eapol_test.sgml | 86 <term>-c configuration file path</term> 94 <term>-a AS address</term> 101 <term>-A client address</term> 108 <term>-p AS port</term> 115 <term>-s AS secret</term> 122 <term>-r count</term> 128 <term>-t timeout</term> 134 <term>-C info</term> 142 <term>-M mac address</term> 149 <term>-o file</term> [all …]
|
| H A D | wpa_gui.sgml | 45 <term>-p path</term> 52 <term>-i ifname</term> 60 <term>-m seconds</term> 68 <term>-t</term> 76 <term>-q</term>
|
| /freebsd/lib/libvgl/ |
| H A D | keyboard.c | 47 static struct termios term; in VGLKeyboardInit() local 52 term = VGLKeyboardTty; in VGLKeyboardInit() 53 cfmakeraw(&term); in VGLKeyboardInit() 54 term.c_iflag = IGNPAR | IGNBRK; in VGLKeyboardInit() 55 term.c_oflag = OPOST | ONLCR; in VGLKeyboardInit() 56 term.c_cflag = CREAD | CS8; in VGLKeyboardInit() 57 term.c_lflag &= ~(ICANON | ECHO | ISIG); in VGLKeyboardInit() 58 term.c_cc[VTIME] = 0; in VGLKeyboardInit() 59 term.c_cc[VMIN] = 0; in VGLKeyboardInit() 60 cfsetispeed(&term, 9600); in VGLKeyboardInit() [all …]
|
| /freebsd/contrib/mandoc/ |
| H A D | roff_escape.c | 83 char term; /* byte terminating the argument */ in roff_escape() local 102 term = '\0'; in roff_escape() 195 term = '\b'; in roff_escape() 208 term = '\b'; in roff_escape() 212 term = '\b'; in roff_escape() 216 term = '\b'; in roff_escape() 220 term = '\b'; in roff_escape() 224 term = '\b'; in roff_escape() 228 term = '\b'; in roff_escape() 244 term = ']'; in roff_escape() [all …]
|
| /freebsd/contrib/netbsd-tests/lib/libc/ttyio/ |
| H A D | t_ttyio.c | 82 struct termios term; in ATF_TC_BODY() local 91 memset(&term, 0, sizeof(term)); in ATF_TC_BODY() 92 term.c_iflag = TTYDEF_IFLAG; in ATF_TC_BODY() 93 term.c_oflag = TTYDEF_OFLAG; in ATF_TC_BODY() 94 term.c_cflag = TTYDEF_CFLAG; in ATF_TC_BODY() 95 term.c_lflag = TTYDEF_LFLAG; in ATF_TC_BODY() 96 cfsetspeed(&term, TTYDEF_SPEED); in ATF_TC_BODY() 99 REQUIRE_ERRNO(openpty(&m, &s, name, &term, NULL), -1); in ATF_TC_BODY() 145 if (tcsetattr(s, TCSADRAIN, &term) == -1) { in ATF_TC_BODY()
|
| /freebsd/tests/sys/kern/tty/ |
| H A D | test_sti.c | 90 struct termios term; in init_pty() local 96 if (tcgetattr(STDIN_FILENO, &term) == -1) in init_pty() 98 term.c_lflag &= ~ECHO; in init_pty() 100 term.c_lflag &= ~ICANON; in init_pty() 101 if (tcsetattr(STDIN_FILENO, TCSANOW, &term) == -1) in init_pty() 156 int pid, term; in ATF_TC_BODY() local 164 pid = init_pty(&term, false); in ATF_TC_BODY() 198 int pid, term; in ATF_TC_BODY() local 205 pid = init_pty(&term, true); in ATF_TC_BODY() 224 injected = inject(term, sending); in ATF_TC_BODY() [all …]
|
| /freebsd/tools/tools/iso/ |
| H A D | check-iso639.pl | 31 my $term = $3; 36 $old{$bib}{term} = $term; 52 my $term = $a[1]; 55 $term = $bib if ($term eq ""); 59 $new{$bib}{term} = $term; 90 $old{$bib}{term} eq $new{$bib}{term} &&
|
| /freebsd/lib/libc/gen/ |
| H A D | readpassphrase.c | 48 struct termios term, oterm; in readpassphrase() local 92 memcpy(&term, &oterm, sizeof(term)); in readpassphrase() 94 term.c_lflag &= ~(ECHO | ECHONL); in readpassphrase() 95 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) in readpassphrase() 96 term.c_cc[VSTATUS] = _POSIX_VDISABLE; in readpassphrase() 97 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term); in readpassphrase() 99 memset(&term, 0, sizeof(term)); in readpassphrase() 100 term.c_lflag |= ECHO; in readpassphrase() 142 if (!(term.c_lflag & ECHO)) in readpassphrase() 146 if (memcmp(&term, &oterm, sizeof(term)) != 0) { in readpassphrase()
|
| /freebsd/crypto/openssh/openbsd-compat/ |
| H A D | readpassphrase.c | 59 struct termios term, oterm; in readpassphrase() local 95 memcpy(&term, &oterm, sizeof(term)); in readpassphrase() 97 term.c_lflag &= ~(ECHO | ECHONL); in readpassphrase() 99 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) in readpassphrase() 100 term.c_cc[VSTATUS] = _POSIX_VDISABLE; in readpassphrase() 102 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term); in readpassphrase() 104 memset(&term, 0, sizeof(term)); in readpassphrase() 105 term.c_lflag |= ECHO; in readpassphrase() 147 if (!(term.c_lflag & ECHO)) in readpassphrase() 151 if (memcmp(&term, &oterm, sizeof(term)) != 0) { in readpassphrase()
|
| /freebsd/contrib/libfido2/openbsd-compat/ |
| H A D | readpassphrase.c | 65 struct termios term, oterm; in readpassphrase() local 99 memcpy(&term, &oterm, sizeof(term)); in readpassphrase() 101 term.c_lflag &= ~(ECHO | ECHONL); in readpassphrase() 103 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) in readpassphrase() 104 term.c_cc[VSTATUS] = _POSIX_VDISABLE; in readpassphrase() 106 (void)tcsetattr(input, TCSAFLUSH|TCSASOFT, &term); in readpassphrase() 108 memset(&term, 0, sizeof(term)); in readpassphrase() 109 term.c_lflag |= ECHO; in readpassphrase() 151 if (!(term.c_lflag & ECHO)) in readpassphrase() 155 if (memcmp(&term, &oterm, sizeof(term)) != 0) { in readpassphrase()
|
| /freebsd/contrib/one-true-awk/ |
| H A D | awkgram.y | 65 %type <p> pas pattern ppattern plist pplist patlist prarg term re 216 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); } 218 | term 250 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); } 252 | term 298 print prarg '|' term { 301 | print prarg APPEND term { 304 | print prarg GT term { 359 term: 360 term '/' ASGNOP term { $$ = op2(DIVEQ, $1, $4); } [all …]
|
| /freebsd/contrib/wpa/wpa_supplicant/ |
| H A D | wpa_passphrase.c | 18 struct termios term; in main() local 39 if (tcgetattr(STDIN_FILENO, &term) < 0) { in main() 43 ctrl_echo = term.c_lflag & ECHO; in main() 44 term.c_lflag &= ~ECHO; in main() 45 if (ctrl_echo && tcsetattr(STDIN_FILENO, TCSANOW, &term) < 0) { in main() 53 term.c_lflag |= ECHO; in main() 54 if (ctrl_echo && tcsetattr(STDIN_FILENO, TCSANOW, &term) < 0) { in main()
|
| /freebsd/contrib/libarchive/libarchive_fe/ |
| H A D | passphrase.c | 171 struct termios term, oterm; in readpassphrase() local 209 memcpy(&term, &oterm, sizeof(term)); in readpassphrase() 211 term.c_lflag &= ~(ECHO | ECHONL); in readpassphrase() 213 if (term.c_cc[VSTATUS] != _POSIX_VDISABLE) in readpassphrase() 214 term.c_cc[VSTATUS] = _POSIX_VDISABLE; in readpassphrase() 216 (void)tcsetattr(input, _T_FLUSH, &term); in readpassphrase() 218 memset(&term, 0, sizeof(term)); in readpassphrase() 219 term.c_lflag |= ECHO; in readpassphrase() 266 if (!(term.c_lflag & ECHO)) { in readpassphrase() 272 if (memcmp(&term, &oterm, sizeof(term)) != 0) { in readpassphrase()
|
| /freebsd/contrib/less/ |
| H A D | evar.c | 42 static struct replace * make_replaces(mutable char *buf, size_t len, size_t *pe, char term) in make_replaces() argument 47 while (term == '/') in make_replaces() 60 term = buf[e]; in make_replaces() 62 if (term != '/') /* missing to string */ in make_replaces() 70 term = buf[e]; in make_replaces() 138 …evar(struct xbuffer *xbuf, mutable char *buf, size_t len, size_t e, constant char *evar, char term) in add_evar() argument 140 struct replace *replaces = make_replaces(buf, len, &e, term); in add_evar() 174 char term; in expand_evars() local 182 term = buf[e]; in expand_evars() 186 i = add_evar(xbuf, buf, len, e, evar, term); in expand_evars()
|
| /freebsd/contrib/ntp/parseutil/ |
| H A D | testdcf.c | 374 struct termios term; in main() local 377 if (tcgetattr(fd, &term) == -1) in main() 383 memset(term.c_cc, 0, sizeof(term.c_cc)); in main() 384 term.c_cc[VMIN] = 1; in main() 387 term.c_cflag = CS8|CREAD|CLOCAL; in main() 389 term.c_cflag = CS8|CREAD|CLOCAL|PARENB; in main() 391 term.c_iflag = IGNPAR; in main() 392 term.c_oflag = 0; in main() 393 term.c_lflag = 0; in main() 395 cfsetispeed(&term, B50); in main() [all …]
|
| /freebsd/contrib/netbsd-tests/usr.bin/infocmp/ |
| H A D | t_terminfo.sh | 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/usr.bin/tip/tip/ |
| H A D | tip.c | 207 term = defterm; in main() 208 term.c_lflag &= ~(ICANON|IEXTEN|ECHO); in main() 209 term.c_iflag &= ~(INPCK|ICRNL); in main() 210 term.c_oflag &= ~OPOST; in main() 211 term.c_cc[VMIN] = 1; in main() 212 term.c_cc[VTIME] = 0; in main() 213 defchars = term; in main() 214 term.c_cc[VINTR] = term.c_cc[VQUIT] = term.c_cc[VSUSP] = in main() 215 term.c_cc[VDSUSP] = term.c_cc[VDISCARD] = in main() 216 term.c_cc[VLNEXT] = _POSIX_VDISABLE; in main() [all …]
|
| /freebsd/contrib/ncurses/progs/ |
| H A D | infocmp.c | 1419 dump_initializers(const TERMTYPE2 *term) in dump_initializers() argument 1427 for_each_string(n, term) { in dump_initializers() 1428 if (VALID_STRING(term->Strings[n])) { in dump_initializers() 1434 for (sp = term->Strings[n]; in dump_initializers() 1450 string_variable(ExtStrname(term, (int) n, strnames)), in dump_initializers() 1458 for_each_boolean(n, term) { in dump_initializers() 1459 switch ((int) (term->Booleans[n])) { in dump_initializers() 1477 n, ExtBoolname(term, (int) n, boolnames), str); in dump_initializers() 1483 for_each_number(n, term) { in dump_initializers() 1485 switch (term->Numbers[n]) { in dump_initializers() [all …]
|
| H A D | clear.c | 74 NCURSES_CONST char *term; in main() local 78 term = getenv("TERM"); in main() 85 term = optarg; in main() 103 setupterm(term, fd, (int *) 0); in main()
|
| /freebsd/sys/kern/ |
| H A D | tty_compat.c | 96 ttsetcompat(struct tty *tp, u_long *com, caddr_t data, struct termios *term) in ttsetcompat() argument 108 term->c_ispeed = compatspcodes[speed]; in ttsetcompat() 110 term->c_ispeed = tp->t_termios.c_ispeed; in ttsetcompat() 115 term->c_ospeed = compatspcodes[speed]; in ttsetcompat() 117 term->c_ospeed = tp->t_termios.c_ospeed; in ttsetcompat() 118 term->c_cc[VERASE] = sg->sg_erase; in ttsetcompat() 119 term->c_cc[VKILL] = sg->sg_kill; in ttsetcompat() 122 ttcompatsetflags(tp, term); in ttsetcompat() 130 cc = term->c_cc; in ttsetcompat() 146 cc = term->c_cc; in ttsetcompat() [all …]
|
| /freebsd/usr.sbin/rtadvd/ |
| H A D | advcap.c | 392 char term; in tdecode() local 394 term = ':'; in tdecode() 398 term = '"'; in tdecode() 401 while ((c = *str++) && c != term) { in tdecode() 429 if (c == term && term != ':') { in tdecode() 430 term = ':'; in tdecode()
|
| /freebsd/contrib/ncurses/form/ |
| H A D | frm_hook.c | 88 GEN_HOOK_SET_FUNCTION(field, term) 98 GEN_HOOK_GET_FUNCTION(field, term) 132 GEN_HOOK_SET_FUNCTION(form, term) 142 GEN_HOOK_GET_FUNCTION(form, term)
|
| /freebsd/contrib/ncurses/menu/ |
| H A D | m_hook.c | 93 GEN_HOOK_SET_FUNCTION(menu, term) 105 GEN_HOOK_GET_FUNCTION(menu, term) 139 GEN_HOOK_SET_FUNCTION(item, term) 151 GEN_HOOK_GET_FUNCTION(item, term)
|