Lines Matching refs:vc_data

146 static void vc_init(struct vc_data *vc, unsigned int rows,
148 static void gotoxy(struct vc_data *vc, int new_x, int new_y);
149 static void save_cur(struct vc_data *vc);
150 static void reset_terminal(struct vc_data *vc, int do_clear);
153 static void set_cursor(struct vc_data *vc);
154 static void hide_cursor(struct vc_data *vc);
157 static void set_palette(struct vc_data *vc);
207 static struct vc_data *master_display_fg;
261 static void notify_write(struct vc_data *vc, unsigned int unicode) in notify_write()
267 static void notify_update(struct vc_data *vc) in notify_update()
284 static inline unsigned short *screenpos(struct vc_data *vc, int offset, int viewed) in screenpos()
312 static void scrup(struct vc_data *vc, unsigned int t, unsigned int b, int nr) in scrup()
329 static void scrdown(struct vc_data *vc, unsigned int t, unsigned int b, int nr) in scrdown()
346 static void do_update_region(struct vc_data *vc, unsigned long start, int count) in do_update_region()
392 void update_region(struct vc_data *vc, unsigned long start, int count) in update_region()
405 static u8 build_attr(struct vc_data *vc, u8 _color, u8 _intensity, u8 _blink, in build_attr()
452 static void update_attr(struct vc_data *vc) in update_attr()
461 void invert_screen(struct vc_data *vc, int offset, int count, int viewed) in invert_screen()
507 void complement_pos(struct vc_data *vc, int offset) in complement_pos()
542 static void insert_char(struct vc_data *vc, unsigned int nr) in insert_char()
554 static void delete_char(struct vc_data *vc, unsigned int nr) in delete_char()
569 static void add_softcursor(struct vc_data *vc) in add_softcursor()
586 static void hide_softcursor(struct vc_data *vc) in hide_softcursor()
597 static void hide_cursor(struct vc_data *vc) in hide_cursor()
605 static void set_cursor(struct vc_data *vc) in set_cursor()
620 static void set_origin(struct vc_data *vc) in set_origin()
633 static inline void save_screen(struct vc_data *vc) in save_screen()
645 void clear_buffer_attributes(struct vc_data *vc) in clear_buffer_attributes()
656 void redraw_screen(struct vc_data *vc, int is_switch) in redraw_screen()
669 struct vc_data *old_vc = vc_cons[fg_console].d; in redraw_screen()
728 static void visual_init(struct vc_data *vc, int num, int init) in visual_init()
762 struct vc_data *vc; in vc_allocate()
775 param.vc = vc = kzalloc(sizeof(struct vc_data), GFP_KERNEL); in vc_allocate()
803 static inline int resize_screen(struct vc_data *vc, int width, int height, in resize_screen()
839 static int vc_do_resize(struct tty_struct *tty, struct vc_data *vc, in vc_do_resize()
964 int vc_resize(struct vc_data *vc, unsigned int cols, unsigned int rows) in vc_resize()
983 struct vc_data *vc = tty->driver_data; in vt_resize()
992 struct vc_data *vc_deallocate(unsigned int currcons) in vc_deallocate()
994 struct vc_data *vc = NULL; in vc_deallocate()
1052 static void gotoxy(struct vc_data *vc, int new_x, int new_y) in gotoxy()
1083 static void gotoxay(struct vc_data *vc, int new_x, int new_y) in gotoxay()
1088 void scrollback(struct vc_data *vc, int lines) in scrollback()
1095 void scrollfront(struct vc_data *vc, int lines) in scrollfront()
1102 static void lf(struct vc_data *vc) in lf()
1117 static void ri(struct vc_data *vc) in ri()
1131 static inline void cr(struct vc_data *vc) in cr()
1138 static inline void bs(struct vc_data *vc) in bs()
1148 static inline void del(struct vc_data *vc) in del()
1153 static void csi_J(struct vc_data *vc, int vpar) in csi_J()
1187 static void csi_K(struct vc_data *vc, int vpar) in csi_K()
1214 static void csi_X(struct vc_data *vc, int vpar) /* erase the following vpar positions */ in csi_X()
1228 static void default_attr(struct vc_data *vc) in default_attr()
1260 static void rgb_foreground(struct vc_data *vc, struct rgb c) in rgb_foreground()
1277 static void rgb_background(struct vc_data *vc, struct rgb c) in rgb_background()
1285 static void csi_m(struct vc_data *vc) in csi_m()
1433 static void cursor_report(struct vc_data *vc, struct tty_struct *tty) in cursor_report()
1467 static void set_mode(struct vc_data *vc, int on_off) in set_mode()
1537 static void setterm_command(struct vc_data *vc) in setterm_command()
1597 static void csi_at(struct vc_data *vc, unsigned int nr) in csi_at()
1607 static void csi_L(struct vc_data *vc, unsigned int nr) in csi_L()
1618 static void csi_P(struct vc_data *vc, unsigned int nr) in csi_P()
1628 static void csi_M(struct vc_data *vc, unsigned int nr) in csi_M()
1639 static void save_cur(struct vc_data *vc) in save_cur()
1655 static void restore_cur(struct vc_data *vc) in restore_cur()
1677 static void reset_terminal(struct vc_data *vc, int do_clear) in reset_terminal()
1728 static void do_con_trol(struct tty_struct *tty, struct vc_data *vc, int c) in do_con_trol()
2170 struct vc_data *vc; in do_con_write()
2446 struct vc_data *vc = vc_cons[fg_console].d; in console_callback()
2463 struct vc_data *vc = vc_cons[fg_console].d; in set_console()
2528 struct vc_data *vc = vc_cons[fg_console].d; in vt_console_print()
2797 struct vc_data *vc = tty->driver_data; in con_unthrottle()
2832 struct vc_data *vc; in con_flush_chars()
2851 struct vc_data *vc; in con_install()
2901 struct vc_data *vc = tty->driver_data; in con_shutdown()
2915 static void vc_init(struct vc_data *vc, unsigned int rows, in vc_init()
2950 struct vc_data *vc; in con_init()
2985 vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT); in con_init()
3138 struct vc_data *vc = vc_cons[i].d; in do_bind_con_driver()
3174 struct vc_data *vc = vc_cons[j].d; in do_bind_con_driver()
3200 struct vc_data *vc = vc_cons[i].d; in con_is_graphics()
3491 int con_debug_enter(struct vc_data *vc) in con_debug_enter()
3550 struct vc_data *vc; in con_debug_leave()
3773 struct vc_data *vc = vc_cons[fg_console].d; in do_blank_screen()
3834 struct vc_data *vc; in do_unblank_screen()
3934 static void set_palette(struct vc_data *vc) in set_palette()
3995 void reset_palette(struct vc_data *vc) in reset_palette()
4021 static int con_font_get(struct vc_data *vc, struct console_font_op *op) in con_font_get()
4075 static int con_font_set(struct vc_data *vc, struct console_font_op *op) in con_font_set()
4130 static int con_font_default(struct vc_data *vc, struct console_font_op *op) in con_font_default()
4162 static int con_font_copy(struct vc_data *vc, struct console_font_op *op) in con_font_copy()
4183 int con_font_op(struct vc_data *vc, struct console_font_op *op) in con_font_op()
4203 u16 screen_glyph(struct vc_data *vc, int offset) in screen_glyph()
4215 unsigned short *screen_pos(struct vc_data *vc, int w_offset, int viewed) in screen_pos()
4220 void getconsxy(struct vc_data *vc, unsigned char *p) in getconsxy()
4226 void putconsxy(struct vc_data *vc, unsigned char *p) in putconsxy()
4233 u16 vcs_scr_readw(struct vc_data *vc, const u16 *org) in vcs_scr_readw()
4240 void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org) in vcs_scr_writew()
4249 void vcs_scr_updated(struct vc_data *vc) in vcs_scr_updated()