/linux/include/linux/ |
A D | vt_kern.h | 30 void reset_palette(struct vc_data *vc); 38 void scrollback(struct vc_data *vc); 39 void scrollfront(struct vc_data *vc, int lines); 40 void clear_buffer_attributes(struct vc_data *vc); 58 int con_clear_unimap(struct vc_data *vc); 61 int con_set_default_unimap(struct vc_data *vc); 62 void con_free_unimap(struct vc_data *vc); 63 int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc); 108 int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc) in con_copy_unimap() 118 void change_console(struct vc_data *new_vc); [all …]
|
A D | console.h | 20 struct vc_data; 47 void (*con_init)(struct vc_data *vc, int init); 48 void (*con_deinit)(struct vc_data *vc); 58 int (*con_switch)(struct vc_data *vc); 63 int (*con_font_default)(struct vc_data *vc, 67 void (*con_set_palette)(struct vc_data *vc, 70 int (*con_set_origin)(struct vc_data *vc); 71 void (*con_save_screen)(struct vc_data *vc); 88 int (*con_debug_enter)(struct vc_data *vc); 92 int (*con_debug_leave)(struct vc_data *vc); [all …]
|
A D | selection.h | 15 struct vc_data; 27 bool vc_is_sel(struct vc_data *vc); 36 extern unsigned short *screen_pos(const struct vc_data *vc, int w_offset, 38 extern u16 screen_glyph(const struct vc_data *vc, int offset); 39 extern u32 screen_glyph_unicode(const struct vc_data *vc, int offset); 40 extern void complement_pos(struct vc_data *vc, int offset); 46 extern u16 vcs_scr_readw(const struct vc_data *vc, const u16 *org); 47 extern void vcs_scr_writew(struct vc_data *vc, u16 val, u16 *org); 48 extern void vcs_scr_updated(struct vc_data *vc); 50 extern int vc_uniscr_check(struct vc_data *vc); [all …]
|
A D | consolemap.h | 18 struct vc_data; 20 extern u16 inverse_translate(const struct vc_data *conp, int glyph, 22 extern unsigned short *set_translate(int m, struct vc_data *vc); 23 extern int conv_uni_to_pc(struct vc_data *conp, long ucs);
|
A D | console_struct.h | 94 struct vc_data { struct 159 struct vc_data **vc_display_fg; /* [!] Ptr to var holding fg console for this display */ argument 167 struct vc_data *d; argument 195 bool con_is_visible(const struct vc_data *vc);
|
/linux/drivers/video/console/ |
A D | dummycon.c | 52 static void dummycon_putc(struct vc_data *vc, int c, int ypos, int xpos) in dummycon_putc() 60 static void dummycon_putcs(struct vc_data *vc, const unsigned short *s, in dummycon_putcs() 80 static int dummycon_blank(struct vc_data *vc, int blank, int mode_switch) in dummycon_blank() 87 static void dummycon_putcs(struct vc_data *vc, const unsigned short *s, in dummycon_putcs() 89 static int dummycon_blank(struct vc_data *vc, int blank, int mode_switch) in dummycon_blank() 100 static void dummycon_init(struct vc_data *vc, int init) in dummycon_init() 110 static void dummycon_deinit(struct vc_data *vc) { } in dummycon_deinit() 111 static void dummycon_clear(struct vc_data *vc, int sy, int sx, int height, in dummycon_clear() 113 static void dummycon_cursor(struct vc_data *vc, int mode) { } in dummycon_cursor() 115 static bool dummycon_scroll(struct vc_data *vc, unsigned int top, in dummycon_scroll() [all …]
|
A D | vgacon.c | 69 static void vgacon_init(struct vc_data *c, int init); 70 static void vgacon_deinit(struct vc_data *c); 72 static int vgacon_switch(struct vc_data *c); 75 static int vgacon_set_origin(struct vc_data *c); 76 static void vgacon_save_screen(struct vc_data *c); 406 static void vgacon_deinit(struct vc_data *c) in vgacon_deinit() 565 static int vgacon_doresize(struct vc_data *c, in vgacon_doresize() 627 static int vgacon_switch(struct vc_data *c) in vgacon_switch() 979 struct vc_data *c = vc_cons[i].d; in vgacon_do_font_op() 1036 struct vc_data *c = vc_cons[i].d; in vgacon_adjust_height() [all …]
|
A D | sticon.c | 73 static void sticon_putc(struct vc_data *conp, int c, int ypos, int xpos) in sticon_putc() 84 static void sticon_putcs(struct vc_data *conp, const unsigned short *s, in sticon_putcs() 99 static void sticon_cursor(struct vc_data *conp, int mode) in sticon_cursor() 129 static bool sticon_scroll(struct vc_data *conp, unsigned int t, in sticon_scroll() 171 static int sticon_set_font(struct vc_data *vc, struct console_font *op) in sticon_set_font() 268 static int sticon_font_set(struct vc_data *vc, struct console_font *font, in sticon_font_set() 274 static void sticon_init(struct vc_data *c, int init) in sticon_init() 292 static void sticon_deinit(struct vc_data *c) in sticon_deinit() 311 static int sticon_switch(struct vc_data *conp) in sticon_switch() 316 static int sticon_blank(struct vc_data *c, int blank, int mode_switch) in sticon_blank() [all …]
|
A D | mdacon.c | 76 static struct vc_data *mda_display_fg = NULL; 355 static void mdacon_init(struct vc_data *c, int init) in mdacon_init() 372 static void mdacon_deinit(struct vc_data *c) in mdacon_deinit() 397 static u8 mdacon_build_attr(struct vc_data *c, u8 color, in mdacon_build_attr() 417 static void mdacon_invert_region(struct vc_data *c, u16 *p, int count) in mdacon_invert_region() 430 static void mdacon_putc(struct vc_data *c, int ch, int y, int x) in mdacon_putc() 435 static void mdacon_putcs(struct vc_data *c, const unsigned short *s, in mdacon_putcs() 445 static void mdacon_clear(struct vc_data *c, int y, int x, in mdacon_clear() 462 static int mdacon_switch(struct vc_data *c) in mdacon_switch() 467 static int mdacon_blank(struct vc_data *c, int blank, int mode_switch) in mdacon_blank() [all …]
|
A D | newport_con.c | 327 static void newport_init(struct vc_data *vc, int init) in newport_init() 341 static void newport_deinit(struct vc_data *c) in newport_deinit() 349 static void newport_clear(struct vc_data *vc, int sy, int sx, int height, in newport_clear() 370 static void newport_putc(struct vc_data *vc, int charattr, int ypos, in newport_putc() 399 static void newport_putcs(struct vc_data *vc, const unsigned short *s, in newport_putcs() 440 static void newport_cursor(struct vc_data *vc, int mode) in newport_cursor() 465 static int newport_switch(struct vc_data *vc) in newport_switch() 482 static int newport_blank(struct vc_data *c, int blank, int mode_switch) in newport_blank() 567 static int newport_font_default(struct vc_data *vc, struct console_font *op, char *name) in newport_font_default() 577 static bool newport_scroll(struct vc_data *vc, unsigned int t, unsigned int b, in newport_scroll() [all …]
|
/linux/drivers/accessibility/speakup/ |
A D | main.c | 300 static void speech_kill(struct vc_data *vc) in speech_kill() 479 static void say_char(struct vc_data *vc) in say_char() 543 static u_long get_word(struct vc_data *vc) in get_word() 590 static void say_word(struct vc_data *vc) in say_word() 700 static void spell_word(struct vc_data *vc) in spell_word() 750 static int get_line(struct vc_data *vc) in get_line() 768 static void say_line(struct vc_data *vc) in say_line() 969 static void top_edge(struct vc_data *vc) in top_edge() 985 static void left_edge(struct vc_data *vc) in left_edge() 2216 struct vc_data *vc = param->vc; in keyboard_notifier_call() [all …]
|
/linux/drivers/tty/vt/ |
A D | vt.c | 1091 struct vc_data *vc = container_of(port, struct vc_data, port); in vc_port_destruct() 1111 struct vc_data *vc; in vc_allocate() 1390 struct vc_data *vc = NULL; in vc_deallocate() 1501 static void lf(struct vc_data *vc) in lf() 1516 static void ri(struct vc_data *vc) in ri() 2901 struct vc_data *vc; in do_con_write() 3359 struct vc_data *vc; in con_flush_chars() 3378 struct vc_data *vc; in con_install() 3485 struct vc_data *vc; in con_init() 4088 struct vc_data *vc; in con_debug_leave() [all …]
|
A D | keyboard.c | 464 static void fn_enter(struct vc_data *vc) in fn_enter() 490 static void fn_caps_on(struct vc_data *vc) in fn_caps_on() 506 static void fn_hold(struct vc_data *vc) in fn_hold() 524 static void fn_num(struct vc_data *vc) in fn_num() 538 static void fn_bare_num(struct vc_data *vc) in fn_bare_num() 544 static void fn_lastcons(struct vc_data *vc) in fn_lastcons() 600 static void fn_show_mem(struct vc_data *vc) in fn_show_mem() 610 static void fn_boot_it(struct vc_data *vc) in fn_boot_it() 615 static void fn_compose(struct vc_data *vc) in fn_compose() 631 static void fn_SAK(struct vc_data *vc) in fn_SAK() [all …]
|
A D | vt_ioctl.c | 46 const struct vc_data *vc = vc_cons[i].d; in vt_in_use() 490 bool perm, struct vc_data *vc) in do_unimap_ioctl() 594 struct vc_data *nvc; in vt_setactivate() 632 struct vc_data *vc = NULL; in vt_disallocate() 651 struct vc_data *vc[MAX_NR_CONSOLES]; in vt_disallocate_all() 702 struct vc_data *vcp; in vt_resizex() 909 struct vc_data *vc; in vt_ioctl() 960 void reset_vc(struct vc_data *vc) in reset_vc() 979 struct vc_data *vc; in vc_SAK() 1035 int perm, struct vc_data *vc) in compat_unimap_ioctl() [all …]
|
A D | consolemap.c | 223 static void set_inverse_trans_unicode(struct vc_data *conp, in set_inverse_trans_unicode() 258 unsigned short *set_translate(int m, struct vc_data *vc) in set_translate() 271 u16 inverse_translate(const struct vc_data *conp, int glyph, int use_unicode) in inverse_translate() 420 void con_free_unimap(struct vc_data *vc) in con_free_unimap() 434 static int con_unify_unimap(struct vc_data *conp, struct uni_pagedir *p) in con_unify_unimap() 504 static int con_do_clear_unimap(struct vc_data *vc) in con_do_clear_unimap() 527 int con_clear_unimap(struct vc_data *vc) in con_clear_unimap() 536 int con_set_unimap(struct vc_data *vc, ushort ct, struct unipair __user *list) in con_set_unimap() 659 int con_set_default_unimap(struct vc_data *vc) in con_set_default_unimap() 715 int con_copy_unimap(struct vc_data *dst_vc, struct vc_data *src_vc) in con_copy_unimap() [all …]
|
A D | vc_screen.c | 88 struct vc_data *vc = param->vc; in vcs_notifier() 183 static struct vc_data *vcs_vc(struct inode *inode, bool *viewed) in vcs_vc() 209 static int vcs_size(const struct vc_data *vc, bool attr, bool unicode) in vcs_size() 231 struct vc_data *vc; in vcs_lseek() 248 static int vcs_read_buf_uni(struct vc_data *vc, char *con_buf, in vcs_read_buf_uni() 276 static void vcs_read_buf_noattr(const struct vc_data *vc, char *con_buf, in vcs_read_buf_noattr() 296 static unsigned int vcs_read_buf(const struct vc_data *vc, char *con_buf, in vcs_read_buf() 368 struct vc_data *vc; in vcs_read() 478 static u16 *vcs_write_buf_noattr(struct vc_data *vc, const char *con_buf, in vcs_write_buf_noattr() 518 static u16 *vcs_write_buf(struct vc_data *vc, const char *con_buf, in vcs_write_buf() [all …]
|
A D | selection.c | 41 struct vc_data *cons; /* must not be deallocated */ 90 bool vc_is_sel(struct vc_data *vc) in vc_is_sel() 188 static int vc_selection_store_chars(struct vc_data *vc, bool unicode) in vc_selection_store_chars() 229 static int vc_do_selection(struct vc_data *vc, unsigned short mode, int ps, in vc_do_selection() 316 static int vc_selection(struct vc_data *vc, struct tiocl_selection *v, in vc_selection() 376 struct vc_data *vc = tty->driver_data; in paste_selection()
|
/linux/drivers/usb/misc/sisusbvga/ |
A D | sisusb_con.c | 199 sisusbcon_init(struct vc_data *c, int init) in sisusbcon_init() 265 sisusbcon_deinit(struct vc_data *c) in sisusbcon_deinit() 474 sisusbcon_switch(struct vc_data *c) in sisusbcon_switch() 523 sisusbcon_save_screen(struct vc_data *c) in sisusbcon_save_screen() 673 sisusbcon_scrolldelta(struct vc_data *c, int lines) in sisusbcon_scrolldelta() 698 sisusbcon_cursor(struct vc_data *c, int mode) in sisusbcon_cursor() 930 sisusbcon_set_origin(struct vc_data *c) in sisusbcon_set_origin() 993 struct vc_data *c, int fh, int uplock) in sisusbcon_do_font_op() 1110 struct vc_data *d = vc_cons[i].d; in sisusbcon_do_font_op() 1177 struct vc_data *vc = vc_cons[i].d; in sisusbcon_do_font_op() [all …]
|
/linux/drivers/video/fbdev/core/ |
A D | fbcon.c | 228 struct vc_data *vc; in fbcon_rotate_all() 352 struct vc_data *vc = NULL; in fb_flashcursor() 1333 struct vc_data *svc; in fbcon_set_disp() 1497 struct vc_data *vc) in updatescrollmode() 2125 struct vc_data *vc = NULL; in fbcon_suspended() 2138 struct vc_data *vc; in fbcon_resumed() 2151 struct vc_data *vc; in fbcon_modechanged() 2189 struct vc_data *vc; in fbcon_set_all_vcs() 2455 struct vc_data *vc; in fbcon_fb_blanked() 2477 struct vc_data *vc; in fbcon_new_modelist() [all …]
|
A D | fbcon.h | 54 void (*clear)(struct vc_data *vc, struct fb_info *info, int sy, 56 void (*putcs)(struct vc_data *vc, struct fb_info *info, 59 void (*clear_margins)(struct vc_data *vc, struct fb_info *info, 61 void (*cursor)(struct vc_data *vc, struct fb_info *info, int mode, 64 int (*rotate_font)(struct fb_info *info, struct vc_data *vc); 116 static inline int attr_col_ec(int shift, struct vc_data *vc, in attr_col_ec() 153 extern void fbcon_set_tileops(struct vc_data *vc, struct fb_info *info);
|
A D | tileblit.c | 19 static void tile_clear(struct vc_data *vc, struct fb_info *info, int sy, in tile_clear() 39 static void tile_putcs(struct vc_data *vc, struct fb_info *info, in tile_putcs() 61 static void tile_clear_margins(struct vc_data *vc, struct fb_info *info, in tile_clear_margins() 67 static void tile_cursor(struct vc_data *vc, struct fb_info *info, int mode, in tile_cursor() 116 void fbcon_set_tileops(struct vc_data *vc, struct fb_info *info) in fbcon_set_tileops()
|
A D | bitblit.c | 26 struct vc_data *vc) in update_attr() 46 static void bit_clear(struct vc_data *vc, struct fb_info *info, int sy, in bit_clear() 62 static inline void bit_putcs_aligned(struct vc_data *vc, struct fb_info *info, in bit_putcs_aligned() 93 static inline void bit_putcs_unaligned(struct vc_data *vc, in bit_putcs_unaligned() 128 static void bit_putcs(struct vc_data *vc, struct fb_info *info, in bit_putcs() 190 static void bit_clear_margins(struct vc_data *vc, struct fb_info *info, in bit_clear_margins() 221 static void bit_cursor(struct vc_data *vc, struct fb_info *info, int mode, in bit_cursor()
|
A D | fbcon_ud.c | 26 struct vc_data *vc) in ud_update_attr() 47 static void ud_clear(struct vc_data *vc, struct fb_info *info, int sy, in ud_clear() 65 static inline void ud_putcs_aligned(struct vc_data *vc, struct fb_info *info, in ud_putcs_aligned() 96 static inline void ud_putcs_unaligned(struct vc_data *vc, in ud_putcs_unaligned() 131 static void ud_putcs(struct vc_data *vc, struct fb_info *info, in ud_putcs() 202 static void ud_clear_margins(struct vc_data *vc, struct fb_info *info, in ud_clear_margins() 231 static void ud_cursor(struct vc_data *vc, struct fb_info *info, int mode, in ud_cursor()
|
A D | fbcon_ccw.c | 26 struct vc_data *vc) in ccw_update_attr() 62 static void ccw_clear(struct vc_data *vc, struct fb_info *info, int sy, in ccw_clear() 79 static inline void ccw_putcs_aligned(struct vc_data *vc, struct fb_info *info, in ccw_putcs_aligned() 110 static void ccw_putcs(struct vc_data *vc, struct fb_info *info, in ccw_putcs() 172 static void ccw_clear_margins(struct vc_data *vc, struct fb_info *info, in ccw_clear_margins() 202 static void ccw_cursor(struct vc_data *vc, struct fb_info *info, int mode, in ccw_cursor()
|
/linux/drivers/accessibility/braille/ |
A D | braille_console.c | 110 static void vc_follow_cursor(struct vc_data *vc) in vc_follow_cursor() 119 static void vc_maybe_cursor_moved(struct vc_data *vc) in vc_maybe_cursor_moved() 126 static void vc_refresh(struct vc_data *vc) in vc_refresh() 147 struct vc_data *vc = param->vc; in keyboard_notifier_call() 268 struct vc_data *vc = param->vc; in vt_notifier_call()
|