Lines Matching defs:consw
88 struct consw { struct
89 struct module *owner;
90 const char *(*con_startup)(void);
91 void (*con_init)(struct vc_data *vc, bool init);
92 void (*con_deinit)(struct vc_data *vc);
93 void (*con_clear)(struct vc_data *vc, unsigned int y,
95 void (*con_putc)(struct vc_data *vc, u16 ca, unsigned int y,
97 void (*con_putcs)(struct vc_data *vc, const u16 *s,
100 void (*con_cursor)(struct vc_data *vc, bool enable);
101 bool (*con_scroll)(struct vc_data *vc, unsigned int top,
104 bool (*con_switch)(struct vc_data *vc);
105 bool (*con_blank)(struct vc_data *vc, enum vesa_blank_mode blank,
129 extern const struct consw *conswitchp; argument