Lines Matching refs:flag

1472 n_tty_receive_char_flagged(struct tty_struct *tty, unsigned char c, char flag)  in n_tty_receive_char_flagged()  argument
1474 switch (flag) { in n_tty_receive_char_flagged()
1487 tty_name(tty), flag); in n_tty_receive_char_flagged()
1493 n_tty_receive_char_lnext(struct tty_struct *tty, unsigned char c, char flag) in n_tty_receive_char_lnext() argument
1498 if (likely(flag == TTY_NORMAL)) { in n_tty_receive_char_lnext()
1505 n_tty_receive_char_flagged(tty, c, flag); in n_tty_receive_char_lnext()
1533 char flag = TTY_NORMAL; in n_tty_receive_buf_raw() local
1537 flag = *fp++; in n_tty_receive_buf_raw()
1538 if (likely(flag == TTY_NORMAL)) in n_tty_receive_buf_raw()
1541 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_raw()
1549 char flag = TTY_NORMAL; in n_tty_receive_buf_closing() local
1553 flag = *fp++; in n_tty_receive_buf_closing()
1554 if (likely(flag == TTY_NORMAL)) in n_tty_receive_buf_closing()
1557 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_closing()
1566 char flag = TTY_NORMAL; in n_tty_receive_buf_standard() local
1570 flag = *fp++; in n_tty_receive_buf_standard()
1571 if (likely(flag == TTY_NORMAL)) { in n_tty_receive_buf_standard()
1586 flag = *fp++; in n_tty_receive_buf_standard()
1587 n_tty_receive_char_lnext(tty, *cp++, flag); in n_tty_receive_buf_standard()
1591 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_standard()
1600 char flag = TTY_NORMAL; in n_tty_receive_buf_fast() local
1604 flag = *fp++; in n_tty_receive_buf_fast()
1605 if (likely(flag == TTY_NORMAL)) { in n_tty_receive_buf_fast()
1612 flag = *fp++; in n_tty_receive_buf_fast()
1613 n_tty_receive_char_lnext(tty, *cp++, flag); in n_tty_receive_buf_fast()
1617 n_tty_receive_char_flagged(tty, *cp++, flag); in n_tty_receive_buf_fast()
1635 char flag = TTY_NORMAL; in __receive_buf() local
1638 flag = *fp++; in __receive_buf()
1639 n_tty_receive_char_lnext(tty, *cp++, flag); in __receive_buf()