tag | line | file | source code |
vt_mode | 175 | kernel/chr_drv/console.c | #define vtmode (vt_cons[currcons].vt_mode) |
vt_mode | 332 | kernel/chr_drv/tty_io.c | if (vt_cons[new_console].vt_mode.mode == VT_PROCESS) |
vt_mode | 340 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.acqsig, |
vt_mode | 354 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.mode = VT_AUTO; |
vt_mode | 355 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.waitv = 0; |
vt_mode | 356 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.relsig = 0; |
vt_mode | 357 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.acqsig = 0; |
vt_mode | 358 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.frsig = 0; |
vt_mode | 409 | kernel/chr_drv/tty_io.c | if (vt_cons[fg_console].vt_mode.mode == VT_PROCESS) |
vt_mode | 417 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.relsig, |
vt_mode | 440 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.mode = VT_AUTO; |
vt_mode | 441 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.waitv = 0; |
vt_mode | 442 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.relsig = 0; |
vt_mode | 443 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.acqsig = 0; |
vt_mode | 444 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.frsig = 0; |
vt_mode | 260 | kernel/chr_drv/vt.c | struct vt_mode *vtmode = (struct vt_mode *)arg; |
vt_mode | 263 | kernel/chr_drv/vt.c | i = verify_area(VERIFY_WRITE, (void *)vtmode, sizeof(struct vt_mode)); |
vt_mode | 269 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.mode = mode; |
vt_mode | 270 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.waitv = get_fs_byte(&vtmode->waitv); |
vt_mode | 271 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.relsig = get_fs_word(&vtmode->relsig); |
vt_mode | 272 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.acqsig = get_fs_word(&vtmode->acqsig); |
vt_mode | 274 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.frsig = 0; |
vt_mode | 282 | kernel/chr_drv/vt.c | struct vt_mode *vtmode = (struct vt_mode *)arg; |
vt_mode | 284 | kernel/chr_drv/vt.c | i = verify_area(VERIFY_WRITE, (void *)arg, sizeof(struct vt_mode)); |
vt_mode | 287 | kernel/chr_drv/vt.c | put_fs_byte(vt_cons[console].vt_mode.mode, &vtmode->mode); |
vt_mode | 288 | kernel/chr_drv/vt.c | put_fs_byte(vt_cons[console].vt_mode.waitv, &vtmode->waitv); |
vt_mode | 289 | kernel/chr_drv/vt.c | put_fs_word(vt_cons[console].vt_mode.relsig, &vtmode->relsig); |
vt_mode | 290 | kernel/chr_drv/vt.c | put_fs_word(vt_cons[console].vt_mode.acqsig, &vtmode->acqsig); |
vt_mode | 291 | kernel/chr_drv/vt.c | put_fs_word(vt_cons[console].vt_mode.frsig, &vtmode->frsig); |
vt_mode | 364 | kernel/chr_drv/vt.c | if (vt_cons[console].vt_mode.mode != VT_PROCESS) |
vt_mode | 16 | kernel/chr_drv/vt_kern.h | struct vt_mode vt_mode; |