taglinefilesource code
process_char_map374drivers/char/n_tty.cif (!test_bit(c, &tty->process_char_map) || tty->lnext) {
process_char_map628drivers/char/n_tty.cmemset(tty->process_char_map, 0, 256/8);
process_char_map631drivers/char/n_tty.cset_bit('\r', &tty->process_char_map);
process_char_map633drivers/char/n_tty.cset_bit('\n', &tty->process_char_map);
process_char_map636drivers/char/n_tty.cset_bit(ERASE_CHAR(tty), &tty->process_char_map);
process_char_map637drivers/char/n_tty.cset_bit(KILL_CHAR(tty), &tty->process_char_map);
process_char_map638drivers/char/n_tty.cset_bit(EOF_CHAR(tty), &tty->process_char_map);
process_char_map639drivers/char/n_tty.cset_bit('\n', &tty->process_char_map);
process_char_map640drivers/char/n_tty.cset_bit(EOL_CHAR(tty), &tty->process_char_map);
process_char_map643drivers/char/n_tty.c&tty->process_char_map);
process_char_map645drivers/char/n_tty.c&tty->process_char_map);
process_char_map647drivers/char/n_tty.c&tty->process_char_map);
process_char_map650drivers/char/n_tty.c&tty->process_char_map);
process_char_map654drivers/char/n_tty.cset_bit(START_CHAR(tty), &tty->process_char_map);
process_char_map655drivers/char/n_tty.cset_bit(STOP_CHAR(tty), &tty->process_char_map);
process_char_map658drivers/char/n_tty.cset_bit(INTR_CHAR(tty), &tty->process_char_map);
process_char_map659drivers/char/n_tty.cset_bit(QUIT_CHAR(tty), &tty->process_char_map);
process_char_map660drivers/char/n_tty.cset_bit(SUSP_CHAR(tty), &tty->process_char_map);
process_char_map662drivers/char/n_tty.cclear_bit(__DISABLED_CHAR, &tty->process_char_map);
process_char_map234include/linux/tty.hunsigned long process_char_map[256/(8*sizeof(unsigned long))];