Searched refs:console (Results 1 - 25 of 396) sorted by relevance

1234567891011>>

/linux-master/arch/m68k/mvme16x/
H A Dmvme16x.h3 struct console;
6 void mvme16x_cons_write(struct console *co, const char *str, unsigned count);
/linux-master/kernel/printk/
H A Dbraille.h14 * Setup console according to braille options.
24 _braille_register_console(struct console *console, struct console_cmdline *c);
27 _braille_unregister_console(struct console *console);
43 _braille_register_console(struct console *console, struct console_cmdline *c) argument
49 _braille_unregister_console(struct console *console) argument
H A Dbraille.c5 #include <linux/console.h>
38 _braille_register_console(struct console *console, struct console_cmdline *c) argument
43 console->flags |= CON_BRL;
44 rtn = braille_register_console(console, c->index, c->options,
52 _braille_unregister_console(struct console *console) argument
54 if (console->flags & CON_BRL)
55 return braille_unregister_console(console);
H A Dinternal.h6 #include <linux/console.h>
75 u64 nbcon_seq_read(struct console *con);
76 void nbcon_seq_force(struct console *con, u64 seq);
77 bool nbcon_alloc(struct console *con);
78 void nbcon_init(struct console *con);
79 void nbcon_free(struct console *con);
89 * semaphore and some of console functions (console_unlock()/etc.), so
96 static inline u64 nbcon_seq_read(struct console *con) { return 0; }
97 static inline void nbcon_seq_force(struct console *con, u64 seq) { }
98 static inline bool nbcon_alloc(struct console *co
[all...]
/linux-master/arch/m68k/sun3/prom/
H A DMakefile6 obj-y := init.o console.o printf.o misc.o
7 #bootstr.o init.o misc.o segment.o console.o printf.o
/linux-master/include/linux/
H A Dsunserialcore.h19 #include <linux/console.h>
33 extern int sunserial_console_match(struct console *, struct device_node *,
35 extern void sunserial_console_termios(struct console *,
H A Dvt_kern.h6 * this really is an extension of the vc_cons structure in console.c, but
24 /* console.c */
26 int vc_allocate(unsigned int console);
27 int vc_cons_allocated(unsigned int console);
30 struct vc_data *vc_deallocate(unsigned int console);
157 int vt_do_kdskbmode(unsigned int console, unsigned int arg);
158 int vt_do_kdskbmeta(unsigned int console, unsigned int arg);
162 unsigned int console);
164 int vt_do_kdskled(unsigned int console, int cmd, unsigned long arg, int perm);
165 int vt_do_kdgkbmode(unsigned int console);
[all...]
H A Dconsole.h2 * linux/include/linux/console.h
40 * @owner: the module to get references of when this console is used
41 * @con_startup: set up the console and return its name (like VGA, EGA, ...)
42 * @con_init: initialize the console on @vc. @init is true for the very first
44 * @con_deinit: deinitialize the console from @vc.
52 * Invoked by csi_M and printing to the console.
53 * @con_switch: notifier about the console switch; it is supposed to return
55 * @con_blank: blank/unblank the console. The target mode is passed in @blank.
58 * @con_font_set: set console @vc font to @font with height @vpitch. @flags can
64 * @con_resize: resize the @vc console t
276 struct console *console; member in struct:nbcon_context
328 struct console { struct
[all...]
/linux-master/drivers/hwtracing/stm/
H A Dconsole.c3 * Simple kernel console driver for STM devices
6 * STM console will send kernel messages over STM devices to a trace host.
11 #include <linux/console.h>
20 struct console console; member in struct:stm_console
23 .name = "console",
31 stm_console_write(struct console *con, const char *buf, unsigned len)
33 struct stm_console *sc = container_of(con, struct stm_console, console);
42 strcpy(sc->console.name, "stm_console");
43 sc->console
[all...]
/linux-master/arch/um/kernel/
H A Dearly_printk.c7 #include <linux/console.h>
11 static void early_console_write(struct console *con, const char *s, unsigned int n)
16 static struct console early_console_dev = {
/linux-master/arch/um/drivers/
H A Dstderr_console.c4 #include <linux/console.h>
9 /* trivial console driver -- simply dump everything to stderr */
13 * boot process it becomes the default console.
19 static void stderr_console_write(struct console *console, const char *string, argument
25 static struct console stderr_console = {
48 /* The previous behavior of not unregistering led to /dev/console being
51 * console to become the default console, and /dev/console ca
[all...]
/linux-master/arch/mips/fw/arc/
H A Darc_con.c3 * Wrap-around code for a console using the
13 #include <linux/console.h>
18 static void prom_console_write(struct console *co, const char *s,
29 static int prom_console_setup(struct console *co, char *options)
36 static struct console arc_cons = {
45 * Register console.
/linux-master/tools/testing/selftests/rcutorture/bin/
H A Dkvm-recheck-rcuscale-ftrace.sh18 if test "`grep -c 'rcu_exp_grace_period.*start' < $i/console.log`" -lt 100
23 sed -e 's/^\[[^]]*]//' < $i/console.log |
H A Dkcsan-collapse.sh4 # If this was a KCSAN run, collapse the reports in the various console.log
17 find $1 -name console.log -exec cat {} \; |
/linux-master/arch/mips/dec/prom/
H A DMakefile7 lib-y += init.o memory.o cmdline.o identify.o console.o
H A Dconsole.c3 * DECstation PROM-based early console support.
7 #include <linux/console.h>
14 static void __init prom_console_write(struct console *con, const char *s,
31 static struct console promcons __initdata = {
/linux-master/arch/mips/kernel/
H A Dearly_printk.c11 #include <linux/console.h>
17 static void early_console_write(struct console *con, const char *s, unsigned n)
27 static struct console early_console_prom = {
/linux-master/arch/s390/kernel/
H A Dearly_printk.c6 #include <linux/console.h>
11 static void sclp_early_write(struct console *con, const char *s, unsigned int len)
16 static struct console sclp_early_console = {
/linux-master/drivers/net/ethernet/cavium/liquidio/
H A Docteon_console.c101 /* Structure that defines a single console.
104 * The actual usable size of each console is console_buf_size -1;
422 struct octeon_console *console; local
424 console = &oct->console[console_num];
426 console->waiting = 0;
432 struct octeon_console *console,
449 * having been read from the console).
453 if (console->leftover[0] &&
454 (line != console
431 output_console_line(struct octeon_device *oct, struct octeon_console *console, size_t console_num, char *console_buffer, s32 bytes_read) argument
482 struct octeon_console *console; local
579 struct octeon_console *console; local
659 struct octeon_console *console; local
717 struct octeon_console *console; local
762 struct octeon_console *console; local
[all...]
/linux-master/include/xen/
H A Dhvc-console.h5 extern struct console xenboot_console;
/linux-master/arch/xtensa/platforms/iss/
H A DMakefile9 obj-$(CONFIG_TTY) += console.o
/linux-master/arch/x86/xen/
H A Dsuspend_pv.c16 xen_start_info->console.domU.mfn =
17 mfn_to_pfn(xen_start_info->console.domU.mfn);
37 xen_start_info->console.domU.mfn =
38 pfn_to_mfn(xen_start_info->console.domU.mfn);
/linux-master/drivers/tty/serial/
H A Dearlycon-semihost.c11 #include <linux/console.h>
16 static void smh_write(struct console *con, const char *s, unsigned n)
/linux-master/arch/arm/kernel/
H A Dearly_printk.c9 #include <linux/console.h>
28 static void early_console_write(struct console *con, const char *s, unsigned n)
33 static struct console early_console_dev = {
/linux-master/arch/parisc/kernel/
H A Dpdc_cons.c3 * PDC early console support - use PDC firmware to dump text via boot console
8 #include <linux/console.h>
15 static void pdc_console_write(struct console *co, const char *s, unsigned count)
34 /* no need to print char as it's shown on standard console */
48 struct console *earlycon_console;
50 /* If the console is duplex then copy the COUT parameters to CIN. */

Completed in 299 milliseconds

1234567891011>>