Searched refs:sc_vtb_t (Results 1 – 4 of 4) sorted by relevance
/freebsd/sys/dev/syscons/ |
H A D | scvtb.c | 49 sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows, void *buf, int wait) in sc_vtb_init() 87 sc_vtb_destroy(sc_vtb_t *vtb) in sc_vtb_destroy() 118 sc_vtb_getc(sc_vtb_t *vtb, int at) in sc_vtb_getc() 127 sc_vtb_geta(sc_vtb_t *vtb, int at) in sc_vtb_geta() 136 sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a) in sc_vtb_putc() 145 sc_vtb_putchar(sc_vtb_t *vtb, vm_offset_t p, int c, int a) in sc_vtb_putchar() 155 sc_vtb_pointer(sc_vtb_t *vtb, int at) in sc_vtb_pointer() 161 sc_vtb_pos(sc_vtb_t *vtb, int pos, int offset) in sc_vtb_pos() 167 sc_vtb_clear(sc_vtb_t *vtb, int c, int attr) in sc_vtb_clear() 176 sc_vtb_copy(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int to, int count) in sc_vtb_copy() [all …]
|
H A D | syscons.h | 160 } sc_vtb_t; typedef 280 sc_vtb_t scr; 281 sc_vtb_t vtb; 335 sc_vtb_t *history; /* circular history buffer */ 634 void sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows, 636 void sc_vtb_destroy(sc_vtb_t *vtb); 638 void sc_vtb_clear(sc_vtb_t *vtb, int c, int attr); 640 int sc_vtb_getc(sc_vtb_t *vtb, int at); 641 int sc_vtb_geta(sc_vtb_t *vtb, int at); 642 void sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a); [all …]
|
H A D | schistory.c | 81 static void copy_history(sc_vtb_t *from, sc_vtb_t *to); 94 sc_vtb_t *history; in sc_alloc_history_buffer() 95 sc_vtb_t *prev_history; in sc_alloc_history_buffer() 130 history = (sc_vtb_t *)malloc(sizeof(*history), in sc_alloc_history_buffer() 162 copy_history(sc_vtb_t *from, sc_vtb_t *to) in copy_history() 189 sc_vtb_t *history; in sc_free_history_buffer()
|
H A D | syscons.c | 3568 sc_vtb_t new; in sc_alloc_scr_buffer() 3569 sc_vtb_t old; in sc_alloc_scr_buffer()
|