Searched defs:termio (Results 1 - 3 of 3) sorted by relevance

/include/asm-generic/
H A Dtermios-base.h1 /* termios.h: generic termios/termio user copying/translation
12 * Translate a "termio" structure into a "termios". Ugh.
15 struct termio __user *termio)
19 if (get_user(tmp, &termio->c_iflag) < 0)
23 if (get_user(tmp, &termio->c_oflag) < 0)
27 if (get_user(tmp, &termio->c_cflag) < 0)
31 if (get_user(tmp, &termio->c_lflag) < 0)
35 if (get_user(termios->c_line, &termio->c_line) < 0)
38 if (copy_from_user(termios->c_cc, termio
14 user_termio_to_kernel_termios(struct ktermios *termios, struct termio __user *termio) argument
50 kernel_termios_to_user_termio(struct termio __user *termio, struct ktermios *termios) argument
[all...]
H A Dtermios.h17 * Translate a "termio" structure into a "termios". Ugh.
20 const struct termio __user *termio)
24 if (get_user(tmp, &termio->c_iflag) < 0)
28 if (get_user(tmp, &termio->c_oflag) < 0)
32 if (get_user(tmp, &termio->c_cflag) < 0)
36 if (get_user(tmp, &termio->c_lflag) < 0)
40 if (get_user(termios->c_line, &termio->c_line) < 0)
43 if (copy_from_user(termios->c_cc, termio->c_cc, NCC) != 0)
53 * Translate a "termios" structure into a "termio"
19 user_termio_to_kernel_termios(struct ktermios *termios, const struct termio __user *termio) argument
55 kernel_termios_to_user_termio(struct termio __user *termio, struct ktermios *termios) argument
[all...]
/include/uapi/asm-generic/
H A Dtermios.h22 struct termio { struct

Completed in 18 milliseconds