tag | line | file | source code |
vt_cons | 174 | kernel/chr_drv/console.c | #define vcmode (vt_cons[currcons].vc_mode) |
vt_cons | 175 | kernel/chr_drv/console.c | #define vtmode (vt_cons[currcons].vt_mode) |
vt_cons | 176 | kernel/chr_drv/console.c | #define vtpid (vt_cons[currcons].vt_pid) |
vt_cons | 177 | kernel/chr_drv/console.c | #define vtnewvt (vt_cons[currcons].vt_newvt) |
vt_cons | 1210 | kernel/chr_drv/console.c | if (vt_cons[fg_console].vc_mode == KD_GRAPHICS) |
vt_cons | 1481 | kernel/chr_drv/console.c | if (vt_cons[fg_console].vc_mode == KD_GRAPHICS) |
vt_cons | 324 | kernel/chr_drv/tty_io.c | old_vc_mode = vt_cons[fg_console].vc_mode; |
vt_cons | 332 | kernel/chr_drv/tty_io.c | if (vt_cons[new_console].vt_mode.mode == VT_PROCESS) |
vt_cons | 339 | kernel/chr_drv/tty_io.c | if (kill_proc(vt_cons[new_console].vt_pid, |
vt_cons | 340 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.acqsig, |
vt_cons | 352 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vc_mode = KD_TEXT; |
vt_cons | 354 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.mode = VT_AUTO; |
vt_cons | 355 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.waitv = 0; |
vt_cons | 356 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.relsig = 0; |
vt_cons | 357 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.acqsig = 0; |
vt_cons | 358 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_mode.frsig = 0; |
vt_cons | 359 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_pid = -1; |
vt_cons | 360 | kernel/chr_drv/tty_io.c | vt_cons[new_console].vt_newvt = -1; |
vt_cons | 368 | kernel/chr_drv/tty_io.c | if (old_vc_mode != vt_cons[new_console].vc_mode) |
vt_cons | 370 | kernel/chr_drv/tty_io.c | if (vt_cons[new_console].vc_mode == KD_TEXT) |
vt_cons | 409 | kernel/chr_drv/tty_io.c | if (vt_cons[fg_console].vt_mode.mode == VT_PROCESS) |
vt_cons | 416 | kernel/chr_drv/tty_io.c | if (kill_proc(vt_cons[fg_console].vt_pid, |
vt_cons | 417 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.relsig, |
vt_cons | 425 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_newvt = new_console; |
vt_cons | 438 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vc_mode = KD_TEXT; |
vt_cons | 440 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.mode = VT_AUTO; |
vt_cons | 441 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.waitv = 0; |
vt_cons | 442 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.relsig = 0; |
vt_cons | 443 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.acqsig = 0; |
vt_cons | 444 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_mode.frsig = 0; |
vt_cons | 445 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_pid = -1; |
vt_cons | 446 | kernel/chr_drv/tty_io.c | vt_cons[fg_console].vt_newvt = -1; |
vt_cons | 455 | kernel/chr_drv/tty_io.c | if (vt_cons[fg_console].vc_mode == KD_GRAPHICS) |
vt_cons | 35 | kernel/chr_drv/vt.c | struct vt_cons vt_cons[NR_CONSOLES]; |
vt_cons | 177 | kernel/chr_drv/vt.c | if (vt_cons[console].vc_mode == (unsigned char) arg) |
vt_cons | 179 | kernel/chr_drv/vt.c | vt_cons[console].vc_mode = (unsigned char) arg; |
vt_cons | 196 | kernel/chr_drv/vt.c | put_fs_long(vt_cons[console].vc_mode, (unsigned long *) arg); |
vt_cons | 269 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.mode = mode; |
vt_cons | 270 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.waitv = get_fs_byte(&vtmode->waitv); |
vt_cons | 271 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.relsig = get_fs_word(&vtmode->relsig); |
vt_cons | 272 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.acqsig = get_fs_word(&vtmode->acqsig); |
vt_cons | 274 | kernel/chr_drv/vt.c | vt_cons[console].vt_mode.frsig = 0; |
vt_cons | 275 | kernel/chr_drv/vt.c | vt_cons[console].vt_pid = current->pid; |
vt_cons | 276 | kernel/chr_drv/vt.c | vt_cons[console].vt_newvt = 0; |
vt_cons | 287 | kernel/chr_drv/vt.c | put_fs_byte(vt_cons[console].vt_mode.mode, &vtmode->mode); |
vt_cons | 288 | kernel/chr_drv/vt.c | put_fs_byte(vt_cons[console].vt_mode.waitv, &vtmode->waitv); |
vt_cons | 289 | kernel/chr_drv/vt.c | put_fs_word(vt_cons[console].vt_mode.relsig, &vtmode->relsig); |
vt_cons | 290 | kernel/chr_drv/vt.c | put_fs_word(vt_cons[console].vt_mode.acqsig, &vtmode->acqsig); |
vt_cons | 291 | kernel/chr_drv/vt.c | put_fs_word(vt_cons[console].vt_mode.frsig, &vtmode->frsig); |
vt_cons | 364 | kernel/chr_drv/vt.c | if (vt_cons[console].vt_mode.mode != VT_PROCESS) |
vt_cons | 370 | kernel/chr_drv/vt.c | if (vt_cons[console].vt_newvt >= 0) |
vt_cons | 377 | kernel/chr_drv/vt.c | vt_cons[console].vt_newvt = -1; |
vt_cons | 385 | kernel/chr_drv/vt.c | int newvt = vt_cons[console].vt_newvt; |
vt_cons | 386 | kernel/chr_drv/vt.c | vt_cons[console].vt_newvt = -1; |
vt_cons | 19 | kernel/chr_drv/vt_kern.h | } vt_cons[NR_CONSOLES]; |