Lines Matching refs:textcon_t

11 static inline void invalidate(textcon_t* tc, int x, int y, int w, int h) {
14 static inline void movecursor(textcon_t* tc, int x, int y) {
17 static inline void push_scrollback_line(textcon_t* tc, int y) {
20 static inline void setparam(textcon_t* tc, int param, uint8_t* arg,
26 static inline vc_char_t make_vc_char(textcon_t* tc, uint8_t ch) {
32 static vc_char_t* dataxy(textcon_t* tc, int x, int y) {
40 static vc_char_t* get_start_of_line(textcon_t* tc, int y) {
46 static int clampx(textcon_t* tc, int x) {
50 static int clampxatedge(textcon_t* tc, int x) {
54 static int clampy(textcon_t* tc, int y) {
58 static void moveto(textcon_t* tc, int x, int y) {
63 static inline void moverel(textcon_t* tc, int dx, int dy) {
73 static void erase_region(textcon_t* tc, int x0, int y0, int x1, int y1) {
84 static void erase_screen(textcon_t* tc, int arg) {
98 static void erase_line(textcon_t* tc, int arg) {
112 static void erase_chars(textcon_t* tc, int arg) {
137 void tc_copy_lines(textcon_t* tc, int y_dest, int y_src, int line_count) {
143 static void clear_lines(textcon_t* tc, int y, int line_count) {
151 static void scroll_lines(textcon_t* tc, int y0, int y1, int diff) {
170 static void scroll_up(textcon_t* tc) {
175 static void scroll_at_pos(textcon_t* tc, int dir) {
184 void set_scroll(textcon_t* tc, int y0, int y1) {
192 static void savecursorpos(textcon_t* tc) {
197 static void restorecursorpos(textcon_t* tc) {
202 static void putc_plain(textcon_t* tc, uint8_t c);
203 static void putc_escape2(textcon_t* tc, uint8_t c);
205 static void putc_ignore(textcon_t* tc, uint8_t c) {
209 static void putc_param(textcon_t* tc, uint8_t c) {
242 static void putc_dec(textcon_t* tc, uint8_t c) {
280 static void putc_osc2(textcon_t* tc, uint8_t c) {
296 static void putc_osc(textcon_t* tc, uint8_t c) {
328 static void putc_escape2(textcon_t* tc, uint8_t c) {
452 static void putc_escape(textcon_t* tc, uint8_t c) {
504 static void putc_cr(textcon_t* tc) {
508 static void putc_lf(textcon_t* tc) {
516 static void putc_plain(textcon_t* tc, uint8_t c) {
558 void tc_init(textcon_t* tc, int w, int h, vc_char_t* data,
574 void tc_seth(textcon_t* tc, int h) {