Symbol: sc_vtb_t
sys/dev/syscons/schistory.c
130
history = (sc_vtb_t *)malloc(sizeof(*history),
sys/dev/syscons/schistory.c
162
copy_history(sc_vtb_t *from, sc_vtb_t *to)
sys/dev/syscons/schistory.c
189
sc_vtb_t *history;
sys/dev/syscons/schistory.c
81
static void copy_history(sc_vtb_t *from, sc_vtb_t *to);
sys/dev/syscons/schistory.c
94
sc_vtb_t *history;
sys/dev/syscons/schistory.c
95
sc_vtb_t *prev_history;
sys/dev/syscons/scvtb.c
118
sc_vtb_getc(sc_vtb_t *vtb, int at)
sys/dev/syscons/scvtb.c
127
sc_vtb_geta(sc_vtb_t *vtb, int at)
sys/dev/syscons/scvtb.c
136
sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a)
sys/dev/syscons/scvtb.c
145
sc_vtb_putchar(sc_vtb_t *vtb, vm_offset_t p, int c, int a)
sys/dev/syscons/scvtb.c
155
sc_vtb_pointer(sc_vtb_t *vtb, int at)
sys/dev/syscons/scvtb.c
161
sc_vtb_pos(sc_vtb_t *vtb, int pos, int offset)
sys/dev/syscons/scvtb.c
167
sc_vtb_clear(sc_vtb_t *vtb, int c, int attr)
sys/dev/syscons/scvtb.c
176
sc_vtb_copy(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int to, int count)
sys/dev/syscons/scvtb.c
194
sc_vtb_append(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int count)
sys/dev/syscons/scvtb.c
218
sc_vtb_seek(sc_vtb_t *vtb, int pos)
sys/dev/syscons/scvtb.c
224
sc_vtb_erase(sc_vtb_t *vtb, int at, int count, int c, int attr)
sys/dev/syscons/scvtb.c
235
sc_vtb_move(sc_vtb_t *vtb, int from, int to, int count)
sys/dev/syscons/scvtb.c
252
sc_vtb_delete(sc_vtb_t *vtb, int at, int count, int c, int attr)
sys/dev/syscons/scvtb.c
278
sc_vtb_ins(sc_vtb_t *vtb, int at, int count, int c, int attr)
sys/dev/syscons/scvtb.c
49
sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows, void *buf, int wait)
sys/dev/syscons/scvtb.c
87
sc_vtb_destroy(sc_vtb_t *vtb)
sys/dev/syscons/syscons.c
3568
sc_vtb_t new;
sys/dev/syscons/syscons.c
3569
sc_vtb_t old;
sys/dev/syscons/syscons.h
280
sc_vtb_t scr;
sys/dev/syscons/syscons.h
281
sc_vtb_t vtb;
sys/dev/syscons/syscons.h
335
sc_vtb_t *history; /* circular history buffer */
sys/dev/syscons/syscons.h
634
void sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows,
sys/dev/syscons/syscons.h
636
void sc_vtb_destroy(sc_vtb_t *vtb);
sys/dev/syscons/syscons.h
638
void sc_vtb_clear(sc_vtb_t *vtb, int c, int attr);
sys/dev/syscons/syscons.h
640
int sc_vtb_getc(sc_vtb_t *vtb, int at);
sys/dev/syscons/syscons.h
641
int sc_vtb_geta(sc_vtb_t *vtb, int at);
sys/dev/syscons/syscons.h
642
void sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a);
sys/dev/syscons/syscons.h
643
vm_offset_t sc_vtb_putchar(sc_vtb_t *vtb, vm_offset_t p, int c, int a);
sys/dev/syscons/syscons.h
644
vm_offset_t sc_vtb_pointer(sc_vtb_t *vtb, int at);
sys/dev/syscons/syscons.h
645
int sc_vtb_pos(sc_vtb_t *vtb, int pos, int offset);
sys/dev/syscons/syscons.h
651
void sc_vtb_copy(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int to,
sys/dev/syscons/syscons.h
653
void sc_vtb_append(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2,
sys/dev/syscons/syscons.h
655
void sc_vtb_seek(sc_vtb_t *vtb, int pos);
sys/dev/syscons/syscons.h
656
void sc_vtb_erase(sc_vtb_t *vtb, int at, int count, int c, int attr);
sys/dev/syscons/syscons.h
657
void sc_vtb_move(sc_vtb_t *vtb, int from, int to, int count);
sys/dev/syscons/syscons.h
658
void sc_vtb_delete(sc_vtb_t *vtb, int at, int count, int c, int attr);
sys/dev/syscons/syscons.h
659
void sc_vtb_ins(sc_vtb_t *vtb, int at, int count, int c, int attr);