Lines Matching defs:consw
48 struct consw { struct
49 struct module *owner;
50 const char *(*con_startup)(void);
51 void (*con_init)(struct vc_data *vc, int init);
52 void (*con_deinit)(struct vc_data *vc);
53 void (*con_clear)(struct vc_data *vc, int sy, int sx, int height,
55 void (*con_putc)(struct vc_data *vc, int c, int ypos, int xpos);
56 void (*con_putcs)(struct vc_data *vc, const unsigned short *s,
58 void (*con_cursor)(struct vc_data *vc, int mode);
59 bool (*con_scroll)(struct vc_data *vc, unsigned int top,
62 int (*con_switch)(struct vc_data *vc);
63 int (*con_blank)(struct vc_data *vc, int blank, int mode_switch);
64 int (*con_font_set)(struct vc_data *vc, struct console_font *font,
66 int (*con_font_get)(struct vc_data *vc, struct console_font *font);
67 int (*con_font_default)(struct vc_data *vc,
69 int (*con_font_copy)(struct vc_data *vc, int con);
70 int (*con_resize)(struct vc_data *vc, unsigned int width,
72 void (*con_set_palette)(struct vc_data *vc,
74 void (*con_scrolldelta)(struct vc_data *vc, int lines);
75 int (*con_set_origin)(struct vc_data *vc);
99 extern const struct consw *conswitchp; argument