| /src/lib/libc/gen/ |
| ttyslot.c | 57 struct ttyent *ttyp; local 81 for (slot = 1; (ttyp = getttyent()) != NULL; ++slot) 82 if (!strcmp(ttyp->ty_name, p)) {
|
| /src/games/hack/ |
| def.trap.h | 69 unsigned ttyp:5; member in struct:trap 87 #define TRAPNUM 9 /* if not less than 32, change sizeof(ttyp) */
|
| /src/external/bsd/tmux/usr.bin/tmux/ |
| utempter.c | 123 char tty[128], *ttyp; local 130 ttyp = tty + sizeof(_PATH_DEV) - 1; 134 login_utmpx(username, host, ttyp, &tv); 137 login_utmp(username, host, ttyp, &tv); 147 char tty[128], *ttyp; local 155 ttyp = tty + sizeof(_PATH_DEV) - 1; 158 logout_utmpx(username, ttyp, &tv); 161 logout_utmp(username, ttyp, &tv);
|
| /src/external/bsd/ntp/dist/ntpd/ |
| refclock_leitch.c | 303 { struct termios ttyb, *ttyp; local 305 ttyp = &ttyb; 306 if (tcgetattr(fd232, ttyp) < 0) { 311 ttyp->c_iflag = IGNBRK|IGNPAR|ICRNL; 312 ttyp->c_oflag = 0; 313 ttyp->c_cflag = SPEED232|CS8|CLOCAL|CREAD; 314 ttyp->c_lflag = ICANON; 315 ttyp->c_cc[VERASE] = ttyp->c_cc[VKILL] = '\0'; 316 if (tcsetattr(fd232, TCSANOW, ttyp) < 0) [all...] |
| ntp_refclock.c | 1030 TTY ttyb, *ttyp; local 1040 ttyp = &ttyb; 1046 if (tcgetattr(fd, ttyp) < 0) { 1062 ttyp->c_iflag = IGNBRK | IGNPAR | ICRNL; 1063 ttyp->c_oflag = 0; 1064 ttyp->c_cflag = CS8 | CLOCAL | CREAD; 1067 ttyp->c_cflag = CS7 | PARENB | PARODD | CLOCAL | CREAD; 1072 ttyp->c_cc[i] = '\0'; 1090 ttyp->c_cflag &= ~CLOCAL; 1097 ttyp->c_lflag = ICANON [all...] |
| refclock_msfees.c | 440 struct termios ttyb, *ttyp; local 484 ttyp = &ttyb; 485 if (tcgetattr(fd232, ttyp) < 0) { 490 ttyp->c_iflag = IGNBRK|IGNPAR|ICRNL; 491 ttyp->c_cflag = SPEED232|CS8|CLOCAL|CREAD; 492 ttyp->c_oflag = 0; 493 ttyp->c_lflag = ICANON; 494 ttyp->c_cc[VERASE] = ttyp->c_cc[VKILL] = '\0'; 495 if (tcsetattr(fd232, TCSANOW, ttyp) < 0) [all...] |
| /src/external/gpl3/gcc/dist/gcc/objc/ |
| objc-gnu-runtime-abi-01.cc | 1104 tree expr, ttyp; local 1110 ttyp = build_pointer_type (xref_tag (RECORD_TYPE, 1114 expr = build_int_cst (ttyp, PROTOCOL_VERSION); 1121 ttyp = objc_method_proto_list_ptr; 1123 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, inst_methods, 0)); 1125 expr = convert (ttyp, null_pointer_node); 1129 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, class_methods, 0)); 1131 expr = convert (ttyp, null_pointer_node);
|
| objc-next-runtime-abi-01.cc | 1455 tree expr, ttyp; local 1464 ttyp = build_pointer_type (objc_protocol_extension_template); 1468 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, protocol_ext, 0)); 1470 expr = convert (ttyp, null_pointer_node); 1476 ttyp = objc_method_proto_list_ptr; 1478 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, inst_methods, 0)); 1480 expr = convert (ttyp, null_pointer_node); 1484 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, class_methods, 0)); 1486 expr = convert (ttyp, null_pointer_node);
|
| /src/external/gpl3/gcc.old/dist/gcc/objc/ |
| objc-gnu-runtime-abi-01.cc | 1101 tree expr, ttyp; local 1107 ttyp = build_pointer_type (xref_tag (RECORD_TYPE, 1111 expr = build_int_cst (ttyp, PROTOCOL_VERSION); 1118 ttyp = objc_method_proto_list_ptr; 1120 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, inst_methods, 0)); 1122 expr = convert (ttyp, null_pointer_node); 1126 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, class_methods, 0)); 1128 expr = convert (ttyp, null_pointer_node);
|
| objc-next-runtime-abi-01.cc | 1452 tree expr, ttyp; local 1461 ttyp = build_pointer_type (objc_protocol_extension_template); 1465 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, protocol_ext, 0)); 1467 expr = convert (ttyp, null_pointer_node); 1473 ttyp = objc_method_proto_list_ptr; 1475 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, inst_methods, 0)); 1477 expr = convert (ttyp, null_pointer_node); 1481 expr = convert (ttyp, build_unary_op (loc, ADDR_EXPR, class_methods, 0)); 1483 expr = convert (ttyp, null_pointer_node);
|
| /src/sys/kern/ |
| kern_proc.c | 1519 struct tty *ttyp; local 1534 ttyp = ss->s_ttyp; 1535 if (ttyp != NULL && ttyp->t_pgrp == pg) { 1536 ttyp->t_pgrp = NULL; 1537 KASSERT(ttyp->t_session == ss);
|