tag | line | file | source code |
vc_cons | 179 | drivers/char/console.c | struct vc vc_cons [MAX_NR_CONSOLES]; |
vc_cons | 299 | drivers/char/console.c | return (i < MAX_NR_CONSOLES && vc_cons[i].d); |
vc_cons | 306 | drivers/char/console.c | if (!vc_cons[i].d) { |
vc_cons | 325 | drivers/char/console.c | vc_cons[i].d = (struct vc_data *) p; |
vc_cons | 329 | drivers/char/console.c | vc_cons[i].d->vc_kmalloced = 1; |
vc_cons | 330 | drivers/char/console.c | vc_cons[i].d->vc_screenbuf_size = video_screen_size; |
vc_cons | 442 | drivers/char/console.c | kfree_s(vc_cons[currcons].d, structsize); |
vc_cons | 443 | drivers/char/console.c | vc_cons[currcons].d = 0; |
vc_cons | 1925 | drivers/char/console.c | vc_cons[currcons].d->vc_palette[k++] = default_red[j] ; |
vc_cons | 1926 | drivers/char/console.c | vc_cons[currcons].d->vc_palette[k++] = default_grn[j] ; |
vc_cons | 1927 | drivers/char/console.c | vc_cons[currcons].d->vc_palette[k++] = default_blu[j] ; |
vc_cons | 2010 | drivers/char/console.c | vc_cons[currcons].d = (struct vc_data *) kmem_start; |
vc_cons | 2020 | drivers/char/console.c | vc_cons[currcons].d->vc_palette[k++] = default_red[j] ; |
vc_cons | 2021 | drivers/char/console.c | vc_cons[currcons].d->vc_palette[k++] = default_grn[j] ; |
vc_cons | 2022 | drivers/char/console.c | vc_cons[currcons].d->vc_palette[k++] = default_blu[j] ; |
vc_cons | 78 | drivers/char/console_struct.h | extern struct vc vc_cons [MAX_NR_CONSOLES]; |
vc_cons | 80 | drivers/char/console_struct.h | #define screenbuf_size (vc_cons[currcons].d->vc_screenbuf_size) |
vc_cons | 81 | drivers/char/console_struct.h | #define origin (vc_cons[currcons].d->vc_origin) |
vc_cons | 82 | drivers/char/console_struct.h | #define scr_end (vc_cons[currcons].d->vc_scr_end) |
vc_cons | 83 | drivers/char/console_struct.h | #define pos (vc_cons[currcons].d->vc_pos) |
vc_cons | 84 | drivers/char/console_struct.h | #define top (vc_cons[currcons].d->vc_top) |
vc_cons | 85 | drivers/char/console_struct.h | #define bottom (vc_cons[currcons].d->vc_bottom) |
vc_cons | 86 | drivers/char/console_struct.h | #define x (vc_cons[currcons].d->vc_x) |
vc_cons | 87 | drivers/char/console_struct.h | #define y (vc_cons[currcons].d->vc_y) |
vc_cons | 88 | drivers/char/console_struct.h | #define vc_state (vc_cons[currcons].d->vc_state) |
vc_cons | 89 | drivers/char/console_struct.h | #define npar (vc_cons[currcons].d->vc_npar) |
vc_cons | 90 | drivers/char/console_struct.h | #define par (vc_cons[currcons].d->vc_par) |
vc_cons | 91 | drivers/char/console_struct.h | #define ques (vc_cons[currcons].d->vc_ques) |
vc_cons | 92 | drivers/char/console_struct.h | #define attr (vc_cons[currcons].d->vc_attr) |
vc_cons | 93 | drivers/char/console_struct.h | #define saved_x (vc_cons[currcons].d->vc_saved_x) |
vc_cons | 94 | drivers/char/console_struct.h | #define saved_y (vc_cons[currcons].d->vc_saved_y) |
vc_cons | 95 | drivers/char/console_struct.h | #define translate (vc_cons[currcons].d->vc_translate) |
vc_cons | 96 | drivers/char/console_struct.h | #define G0_charset (vc_cons[currcons].d->vc_G0_charset) |
vc_cons | 97 | drivers/char/console_struct.h | #define G1_charset (vc_cons[currcons].d->vc_G1_charset) |
vc_cons | 98 | drivers/char/console_struct.h | #define saved_G0 (vc_cons[currcons].d->vc_saved_G0) |
vc_cons | 99 | drivers/char/console_struct.h | #define saved_G1 (vc_cons[currcons].d->vc_saved_G1) |
vc_cons | 100 | drivers/char/console_struct.h | #define utf (vc_cons[currcons].d->vc_utf) |
vc_cons | 101 | drivers/char/console_struct.h | #define utf_count (vc_cons[currcons].d->vc_utf_count) |
vc_cons | 102 | drivers/char/console_struct.h | #define utf_char (vc_cons[currcons].d->vc_utf_char) |
vc_cons | 103 | drivers/char/console_struct.h | #define video_mem_start (vc_cons[currcons].d->vc_video_mem_start) |
vc_cons | 104 | drivers/char/console_struct.h | #define video_mem_end (vc_cons[currcons].d->vc_video_mem_end) |
vc_cons | 105 | drivers/char/console_struct.h | #define video_erase_char (vc_cons[currcons].d->vc_video_erase_char) |
vc_cons | 106 | drivers/char/console_struct.h | #define disp_ctrl (vc_cons[currcons].d->vc_disp_ctrl) |
vc_cons | 107 | drivers/char/console_struct.h | #define toggle_meta (vc_cons[currcons].d->vc_toggle_meta) |
vc_cons | 108 | drivers/char/console_struct.h | #define decscnm (vc_cons[currcons].d->vc_decscnm) |
vc_cons | 109 | drivers/char/console_struct.h | #define decom (vc_cons[currcons].d->vc_decom) |
vc_cons | 110 | drivers/char/console_struct.h | #define decawm (vc_cons[currcons].d->vc_decawm) |
vc_cons | 111 | drivers/char/console_struct.h | #define deccm (vc_cons[currcons].d->vc_deccm) |
vc_cons | 112 | drivers/char/console_struct.h | #define decim (vc_cons[currcons].d->vc_decim) |
vc_cons | 113 | drivers/char/console_struct.h | #define deccolm (vc_cons[currcons].d->vc_deccolm) |
vc_cons | 114 | drivers/char/console_struct.h | #define need_wrap (vc_cons[currcons].d->vc_need_wrap) |
vc_cons | 115 | drivers/char/console_struct.h | #define has_scrolled (vc_cons[currcons].d->vc_has_scrolled) |
vc_cons | 116 | drivers/char/console_struct.h | #define kmalloced (vc_cons[currcons].d->vc_kmalloced) |
vc_cons | 117 | drivers/char/console_struct.h | #define report_mouse (vc_cons[currcons].d->vc_report_mouse) |
vc_cons | 118 | drivers/char/console_struct.h | #define color (vc_cons[currcons].d->vc_color) |
vc_cons | 119 | drivers/char/console_struct.h | #define s_color (vc_cons[currcons].d->vc_s_color) |
vc_cons | 120 | drivers/char/console_struct.h | #define def_color (vc_cons[currcons].d->vc_def_color) |
vc_cons | 123 | drivers/char/console_struct.h | #define charset (vc_cons[currcons].d->vc_charset) |
vc_cons | 124 | drivers/char/console_struct.h | #define s_charset (vc_cons[currcons].d->vc_s_charset) |
vc_cons | 125 | drivers/char/console_struct.h | #define intensity (vc_cons[currcons].d->vc_intensity) |
vc_cons | 126 | drivers/char/console_struct.h | #define underline (vc_cons[currcons].d->vc_underline) |
vc_cons | 127 | drivers/char/console_struct.h | #define blink (vc_cons[currcons].d->vc_blink) |
vc_cons | 128 | drivers/char/console_struct.h | #define reverse (vc_cons[currcons].d->vc_reverse) |
vc_cons | 129 | drivers/char/console_struct.h | #define s_intensity (vc_cons[currcons].d->vc_s_intensity) |
vc_cons | 130 | drivers/char/console_struct.h | #define s_underline (vc_cons[currcons].d->vc_s_underline) |
vc_cons | 131 | drivers/char/console_struct.h | #define s_blink (vc_cons[currcons].d->vc_s_blink) |
vc_cons | 132 | drivers/char/console_struct.h | #define s_reverse (vc_cons[currcons].d->vc_s_reverse) |
vc_cons | 133 | drivers/char/console_struct.h | #define ulcolor (vc_cons[currcons].d->vc_ulcolor) |
vc_cons | 134 | drivers/char/console_struct.h | #define halfcolor (vc_cons[currcons].d->vc_halfcolor) |
vc_cons | 135 | drivers/char/console_struct.h | #define tab_stop (vc_cons[currcons].d->vc_tab_stop) |
vc_cons | 136 | drivers/char/console_struct.h | #define palette (vc_cons[currcons].d->vc_palette) |
vc_cons | 137 | drivers/char/console_struct.h | #define bell_pitch (vc_cons[currcons].d->vc_bell_pitch) |
vc_cons | 138 | drivers/char/console_struct.h | #define bell_duration (vc_cons[currcons].d->vc_bell_duration) |
vc_cons | 409 | drivers/char/tga.c | vc_cons[i].d->vc_palette[k++] = default_red[j]; |
vc_cons | 410 | drivers/char/tga.c | vc_cons[i].d->vc_palette[k++] = default_grn[j]; |
vc_cons | 411 | drivers/char/tga.c | vc_cons[i].d->vc_palette[k++] = default_blu[j]; |
vc_cons | 78 | drivers/char/vga.c | outb_p (vc_cons[fg_console].d->vc_palette[j++]>>2, dac_val) ; |
vc_cons | 79 | drivers/char/vga.c | outb_p (vc_cons[fg_console].d->vc_palette[j++]>>2, dac_val) ; |
vc_cons | 80 | drivers/char/vga.c | outb_p (vc_cons[fg_console].d->vc_palette[j++]>>2, dac_val) ; |
vc_cons | 559 | drivers/char/vga.c | vc_cons[i].d->vc_palette[k++] = default_red[j]; |
vc_cons | 560 | drivers/char/vga.c | vc_cons[i].d->vc_palette[k++] = default_grn[j]; |
vc_cons | 561 | drivers/char/vga.c | vc_cons[i].d->vc_palette[k++] = default_blu[j]; |