Lines Matching refs:termio
371 * Translate a "termio" structure into a "termios". Ugh.
374 struct termio __user *termio)
376 struct termio v;
378 if (copy_from_user(&v, termio, sizeof(struct termio)))
391 * Translate a "termios" structure into a "termio". Ugh.
393 __weak int kernel_termios_to_user_termio(struct termio __user *termio,
396 struct termio v;
397 memset(&v, 0, sizeof(struct termio));
404 return copy_to_user(termio, &v, sizeof(struct termio));
471 (struct termio __user *)arg))
552 static int get_termio(struct tty_struct *tty, struct termio __user *termio)
556 if (kernel_termios_to_user_termio(termio, &kterm))