tag | line | file | source code |
tp | 70 | kernel/chr_drv/tty_io.c | static void initialize_termios(int line, struct termios *tp); |
tp | 997 | kernel/chr_drv/tty_io.c | struct termios *tp, *o_tp; |
tp | 1003 | kernel/chr_drv/tty_io.c | tp = o_tp = NULL; |
tp | 1016 | kernel/chr_drv/tty_io.c | if (!tty_termios[dev] && !tp) { |
tp | 1017 | kernel/chr_drv/tty_io.c | tp = (struct termios *) kmalloc(sizeof(struct termios), GFP_KERNEL); |
tp | 1018 | kernel/chr_drv/tty_io.c | if (!tp) |
tp | 1020 | kernel/chr_drv/tty_io.c | initialize_termios(dev, tp); |
tp | 1041 | kernel/chr_drv/tty_io.c | tty_termios[dev] = tp; |
tp | 1042 | kernel/chr_drv/tty_io.c | tp = NULL; |
tp | 1071 | kernel/chr_drv/tty_io.c | if (tp) |
tp | 1072 | kernel/chr_drv/tty_io.c | kfree_s(tp, sizeof(struct termios)); |
tp | 1086 | kernel/chr_drv/tty_io.c | struct termios *tp, *o_tp; |
tp | 1090 | kernel/chr_drv/tty_io.c | tp = tty_termios[dev]; |
tp | 1097 | kernel/chr_drv/tty_io.c | if (!tp) { |
tp | 1158 | kernel/chr_drv/tty_io.c | kfree_s(tp, sizeof(struct termios)); |
tp | 1477 | kernel/chr_drv/tty_io.c | static void initialize_termios(int line, struct termios * tp) |
tp | 1479 | kernel/chr_drv/tty_io.c | memset(tp, 0, sizeof(struct termios)); |
tp | 1480 | kernel/chr_drv/tty_io.c | memcpy(tp->c_cc, INIT_C_CC, NCCS); |
tp | 1482 | kernel/chr_drv/tty_io.c | tp->c_iflag = ICRNL | IXON; |
tp | 1483 | kernel/chr_drv/tty_io.c | tp->c_oflag = OPOST | ONLCR; |
tp | 1484 | kernel/chr_drv/tty_io.c | tp->c_cflag = B38400 | CS8 | CREAD; |
tp | 1485 | kernel/chr_drv/tty_io.c | tp->c_lflag = ISIG | ICANON | ECHO | |
tp | 1488 | kernel/chr_drv/tty_io.c | tp->c_cflag = B2400 | CS8 | CREAD | HUPCL | CLOCAL; |
tp | 1490 | kernel/chr_drv/tty_io.c | tp->c_cflag = B9600 | CS8 | CREAD; |
tp | 1492 | kernel/chr_drv/tty_io.c | tp->c_iflag = ICRNL | IXON; |
tp | 1493 | kernel/chr_drv/tty_io.c | tp->c_oflag = OPOST | ONLCR; |
tp | 1494 | kernel/chr_drv/tty_io.c | tp->c_cflag = B38400 | CS8 | CREAD; |
tp | 1495 | kernel/chr_drv/tty_io.c | tp->c_lflag = ISIG | ICANON | ECHO | |
tp | 395 | kernel/sched.c | struct timer_struct *tp = timer_table+0; |
tp | 435 | kernel/sched.c | for (mask = 1 ; mask ; tp++,mask += mask) { |
tp | 440 | kernel/sched.c | if (tp->expires > jiffies) |
tp | 443 | kernel/sched.c | tp->fn(); |