Lines Matching refs:term
214 ttsetcompat(struct tty *tp, u_long *com, caddr_t data, struct termios *term) in ttsetcompat() argument
239 term->c_ispeed = compatspcodes[ispeed]; in ttsetcompat()
241 term->c_ispeed = tp->t_ispeed; in ttsetcompat()
261 term->c_ospeed = compatspcodes[ospeed]; in ttsetcompat()
263 term->c_ospeed = tp->t_ospeed; in ttsetcompat()
266 term->c_cc[VERASE] = sg->sg_erase; in ttsetcompat()
267 term->c_cc[VKILL] = sg->sg_kill; in ttsetcompat()
269 ttcompatsetflags(tp, term); in ttsetcompat()
282 cc = term->c_cc; in ttsetcompat()
304 cc = term->c_cc; in ttsetcompat()
345 ttcompatsetlflags(tp, term); in ttsetcompat()
405 struct termios term; in ttcompat() local
408 term = tp->t_termios; in ttcompat()
409 if ((error = ttsetcompat(tp, &com, data, &term)) != 0) { in ttcompat()
412 return ttioctl_locked(tp, com, (caddr_t) &term, flag, p); in ttcompat()