Lines Matching refs:flag
1477 n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag) in n_tty_receive_char_flagged() argument
1481 switch (flag) { in n_tty_receive_char_flagged()
1494 tty_name(tty, buf), flag); in n_tty_receive_char_flagged()
1500 n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag) in n_tty_receive_char_lnext() argument
1505 if (likely(flag == TTY_NORMAL)) { in n_tty_receive_char_lnext()
1512 n_tty_receive_char_flagged(tty, c, flag); in n_tty_receive_char_lnext()
1540 char flag = TTY_NORMAL; in n_tty_receive_buf_raw() local
1544 flag = *fp++; in n_tty_receive_buf_raw()
1545 if (likely(flag == TTY_NORMAL)) in n_tty_receive_buf_raw()
1548 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_raw()
1556 char flag = TTY_NORMAL; in n_tty_receive_buf_closing() local
1560 flag = *fp++; in n_tty_receive_buf_closing()
1561 if (likely(flag == TTY_NORMAL)) in n_tty_receive_buf_closing()
1564 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_closing()
1573 char flag = TTY_NORMAL; in n_tty_receive_buf_standard() local
1577 flag = *fp++; in n_tty_receive_buf_standard()
1578 if (likely(flag == TTY_NORMAL)) { in n_tty_receive_buf_standard()
1593 flag = *fp++; in n_tty_receive_buf_standard()
1594 n_tty_receive_char_lnext(tty, *cp++, flag); in n_tty_receive_buf_standard()
1598 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_standard()
1607 char flag = TTY_NORMAL; in n_tty_receive_buf_fast() local
1611 flag = *fp++; in n_tty_receive_buf_fast()
1612 if (likely(flag == TTY_NORMAL)) { in n_tty_receive_buf_fast()
1619 flag = *fp++; in n_tty_receive_buf_fast()
1620 n_tty_receive_char_lnext(tty, *cp++, flag); in n_tty_receive_buf_fast()
1624 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_fast()
1642 char flag = TTY_NORMAL; in __receive_buf() local
1645 flag = *fp++; in __receive_buf()
1646 n_tty_receive_char_lnext(tty, *cp++, flag); in __receive_buf()