Lines Matching defs:tty
69 getttynam(const char *tty)
73 _DIAGASSERT(tty != NULL);
77 if (!strcmp(tty, t->ty_name))
86 static struct ttyent tty;
114 tty.ty_name = p;
116 if (*(tty.ty_getty = p) == '\0')
117 tty.ty_getty = tty.ty_type = NULL;
120 if (*(tty.ty_type = p) == '\0')
121 tty.ty_type = NULL;
125 tty.ty_status = 0;
126 tty.ty_window = NULL;
127 tty.ty_class = NULL;
133 tty.ty_status &= ~TTY_ON;
135 tty.ty_status |= TTY_ON;
137 tty.ty_status |= TTY_SECURE;
139 tty.ty_status |= TTY_LOCAL;
141 tty.ty_status |= TTY_RTSCTS;
143 tty.ty_status |= TTY_DTRCTS;
145 tty.ty_status |= TTY_SOFTCAR;
147 tty.ty_status |= TTY_MDMBUF;
149 tty.ty_window = value(p);
151 tty.ty_class = value(p);
160 tty.ty_comment = p;
162 tty.ty_comment = NULL;
165 return &tty;