|
| module_param (default_utf8, int, S_IRUGO|S_IWUSR) |
|
| module_param (global_cursor_default, int, S_IRUGO|S_IWUSR) |
|
| module_param (cur_default, int, S_IRUGO|S_IWUSR) |
|
| core_param (consoleblank, blankinterval, int, 0444) |
|
int | register_vt_notifier (struct notifier_block *nb) |
|
| EXPORT_SYMBOL_GPL (register_vt_notifier) |
|
int | unregister_vt_notifier (struct notifier_block *nb) |
|
| EXPORT_SYMBOL_GPL (unregister_vt_notifier) |
|
void | schedule_console_callback (void) |
|
void | update_region (struct vc_data *vc, unsigned long start, int count) |
|
void | invert_screen (struct vc_data *vc, int offset, int count, int viewed) |
|
void | complement_pos (struct vc_data *vc, int offset) |
|
void | redraw_screen (struct vc_data *vc, int is_switch) |
|
int | vc_cons_allocated (unsigned int i) |
|
int | vc_allocate (unsigned int currcons) |
|
int | vc_resize (struct vc_data *vc, unsigned int cols, unsigned int rows) |
|
void | vc_deallocate (unsigned int currcons) |
|
| module_param_array (default_red, int, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (default_grn, int, NULL, S_IRUGO|S_IWUSR) |
|
| module_param_array (default_blu, int, NULL, S_IRUGO|S_IWUSR) |
|
void | scrollback (struct vc_data *vc, int lines) |
|
void | scrollfront (struct vc_data *vc, int lines) |
|
void | mouse_report (struct tty_struct *tty, int butt, int mrx, int mry) |
|
int | mouse_reporting (void) |
|
int | set_console (int nr) |
|
int | tioclinux (struct tty_struct *tty, unsigned long arg) |
|
| module_param_named (italic, default_italic_color, int, S_IRUGO|S_IWUSR) |
|
| module_param_named (underline, default_underline_color, int, S_IRUGO|S_IWUSR) |
|
| console_initcall (con_init) |
|
int __init | vty_init (const struct file_operations *console_fops) |
|
int | con_is_bound (const struct consw *csw) |
|
| EXPORT_SYMBOL (con_is_bound) |
|
int | con_debug_enter (struct vc_data *vc) |
|
| EXPORT_SYMBOL_GPL (con_debug_enter) |
|
int | con_debug_leave (void) |
|
| EXPORT_SYMBOL_GPL (con_debug_leave) |
|
int | register_con_driver (const struct consw *csw, int first, int last) |
|
| EXPORT_SYMBOL (register_con_driver) |
|
int | unregister_con_driver (const struct consw *csw) |
|
| EXPORT_SYMBOL (unregister_con_driver) |
|
int | take_over_console (const struct consw *csw, int first, int last, int deflt) |
|
void | give_up_console (const struct consw *csw) |
|
| postcore_initcall (vtconsole_class_init) |
|
void | do_blank_screen (int entering_gfx) |
|
| EXPORT_SYMBOL (do_blank_screen) |
|
void | do_unblank_screen (int leaving_gfx) |
|
| EXPORT_SYMBOL (do_unblank_screen) |
|
void | unblank_screen (void) |
|
void | poke_blanked_console (void) |
|
int | con_set_cmap (unsigned char __user *arg) |
|
int | con_get_cmap (unsigned char __user *arg) |
|
void | reset_palette (struct vc_data *vc) |
|
int | con_font_op (struct vc_data *vc, struct console_font_op *op) |
|
u16 | screen_glyph (struct vc_data *vc, int offset) |
|
| EXPORT_SYMBOL_GPL (screen_glyph) |
|
unsigned short * | screen_pos (struct vc_data *vc, int w_offset, int viewed) |
|
void | getconsxy (struct vc_data *vc, unsigned char *p) |
|
void | putconsxy (struct vc_data *vc, unsigned char *p) |
|
u16 | vcs_scr_readw (struct vc_data *vc, const u16 *org) |
|
void | vcs_scr_writew (struct vc_data *vc, u16 val, u16 *org) |
|
void | vcs_scr_updated (struct vc_data *vc) |
|
| EXPORT_SYMBOL (color_table) |
|
| EXPORT_SYMBOL (default_red) |
|
| EXPORT_SYMBOL (default_grn) |
|
| EXPORT_SYMBOL (default_blu) |
|
| EXPORT_SYMBOL (update_region) |
|
| EXPORT_SYMBOL (redraw_screen) |
|
| EXPORT_SYMBOL (vc_resize) |
|
| EXPORT_SYMBOL (fg_console) |
|
| EXPORT_SYMBOL (console_blank_hook) |
|
| EXPORT_SYMBOL (console_blanked) |
|
| EXPORT_SYMBOL (vc_cons) |
|
| EXPORT_SYMBOL (global_cursor_default) |
|
| EXPORT_SYMBOL (take_over_console) |
|
| EXPORT_SYMBOL (give_up_console) |
|
con_debug_enter - prepare the console for the kernel debugger : console driver
Called when the console is taken over by the kernel debugger, this function needs to save the current console state, then put the console into a state suitable for the kernel debugger.
RETURNS: Zero on success, nonzero if a failure occurred when trying to prepare the console for the debugger.
Definition at line 3417 of file vt.c.
con_is_bound - checks if driver is bound to the console : console driver
RETURNS: zero if unbound, nonzero if bound
Drivers can call this and if zero, they should release all resources allocated on con_startup()
Definition at line 3390 of file vt.c.
register_con_driver - register console driver to console layer : console driver : the first console to take over, minimum value is 0 : the last console to take over, maximum value is MAX_NR_CONSOLES -1
DESCRIPTION: This function registers a console driver which can later bind to a range of consoles specified by and . It will also initialize the console driver by calling con_startup().
Definition at line 3502 of file vt.c.
unregister_con_driver - unregister console driver from console layer : console driver
DESCRIPTION: All drivers that registers to the console layer must call this function upon exit, or if the console driver is in a state where it won't be able to handle console services, such as the framebuffer console without loaded framebuffer drivers.
The driver must unbind first prior to unregistration.
Definition at line 3583 of file vt.c.