Symbol: rconsole
sys/dev/rcons/rcons.h
100
void rcons_bell(struct rconsole *);
sys/dev/rcons/rcons.h
101
void rcons_init(struct rconsole *, int);
sys/dev/rcons/rcons.h
105
void rcons_init_ops(struct rconsole *rc);
sys/dev/rcons/rcons.h
106
void rcons_puts(struct rconsole *, const unsigned char *, int);
sys/dev/rcons/rcons.h
107
void rcons_pctrl(struct rconsole *, int);
sys/dev/rcons/rcons.h
108
void rcons_esc(struct rconsole *, int);
sys/dev/rcons/rcons.h
109
void rcons_doesc(struct rconsole *, int);
sys/dev/rcons/rcons.h
110
void rcons_sgresc(struct rconsole *, int);
sys/dev/rcons/rcons.h
111
void rcons_text(struct rconsole *, const unsigned char *, int);
sys/dev/rcons/rcons.h
112
void rcons_cursor(struct rconsole *);
sys/dev/rcons/rcons.h
113
void rcons_invert(struct rconsole *, int);
sys/dev/rcons/rcons.h
114
void rcons_clear2eop(struct rconsole *);
sys/dev/rcons/rcons.h
115
void rcons_clear2eol(struct rconsole *);
sys/dev/rcons/rcons.h
116
void rcons_scroll(struct rconsole *, int);
sys/dev/rcons/rcons.h
117
void rcons_delchar(struct rconsole *, int);
sys/dev/rcons/rcons.h
118
void rcons_delline(struct rconsole *, int);
sys/dev/rcons/rcons.h
119
void rcons_insertchar(struct rconsole *, int);
sys/dev/rcons/rcons.h
120
void rcons_insertline(struct rconsole *, int);
sys/dev/rcons/rcons.h
121
void rcons_setcolor(struct rconsole *, int, int);
sys/dev/rcons/rcons_kern.c
111
rcons_bell(struct rconsole *rc)
sys/dev/rcons/rcons_kern.c
141
struct rconsole *rc = p;
sys/dev/rcons/rcons_kern.c
163
rcons_init(struct rconsole *rc, int clear)
sys/dev/rcons/rcons_kern.c
183
struct rconsole *rc = mydevicep;
sys/dev/rcons/rcons_kern.c
59
static struct rconsole *mydevicep; /* XXX */
sys/dev/rcons/rcons_subr.c
105
rcons_puts(struct rconsole *rc, const unsigned char *str, int n)
sys/dev/rcons/rcons_subr.c
175
rcons_pctrl(struct rconsole *rc, int c)
sys/dev/rcons/rcons_subr.c
218
rcons_esc(struct rconsole *rc, int c)
sys/dev/rcons/rcons_subr.c
262
rcons_sgresc(struct rconsole *rc, int c)
sys/dev/rcons/rcons_subr.c
309
rcons_doesc(struct rconsole *rc, int c)
sys/dev/rcons/rcons_subr.c
478
rcons_setcolor(struct rconsole *rc, int fg, int bg)
sys/dev/rcons/rcons_subr.c
515
rcons_text(struct rconsole *rc, const unsigned char *str, int n)
sys/dev/rcons/rcons_subr.c
536
rcons_cursor(struct rconsole *rc)
sys/dev/rcons/rcons_subr.c
549
rcons_invert(struct rconsole *rc, int wob)
sys/dev/rcons/rcons_subr.c
558
rcons_clear2eop(struct rconsole *rc)
sys/dev/rcons/rcons_subr.c
57
extern void rcons_bell(struct rconsole *);
sys/dev/rcons/rcons_subr.c
573
rcons_clear2eol(struct rconsole *rc)
sys/dev/rcons/rcons_subr.c
582
rcons_scroll(struct rconsole *rc, int n)
sys/dev/rcons/rcons_subr.c
600
rcons_delchar(struct rconsole *rc, int n)
sys/dev/rcons/rcons_subr.c
615
rcons_delline(struct rconsole *rc, int n)
sys/dev/rcons/rcons_subr.c
630
rcons_insertchar(struct rconsole *rc, int n)
sys/dev/rcons/rcons_subr.c
645
rcons_insertline(struct rconsole *rc, int n)
sys/dev/rcons/rcons_subr.c
68
rcons_init_ops(struct rconsole *rc)