Searched refs:textcon_t (Results 1 - 4 of 4) sorted by relevance

/fuchsia/zircon/system/core/virtcon/
H A Dtextcon.h13 typedef struct textcon textcon_t; typedef in typeref:struct:textcon
41 void (*putc)(textcon_t* tc, uint8_t c);
83 void tc_init(textcon_t* tc, int w, int h, vc_char_t* data,
86 void tc_copy_lines(textcon_t* tc, int y_dest, int y_src, int line_count);
88 static inline void tc_putc(textcon_t* tc, uint8_t c) {
92 void tc_seth(textcon_t* tc, int h);
H A Dtextcon.cpp11 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* t
[all...]
H A Dvc.h88 textcon_t textcon;
H A Dtextcon-test.cpp33 auto* tc = reinterpret_cast<textcon_t*>(cookie);
43 // * A textcon_t (non-graphical), for testing character-level output.
47 // In principle, we could test the character-level output via the textcon_t
49 // separate textcon_t instance helps check that textcon_t can be used on
55 // Create a textcon_t.
213 textcon_t textcon = {};

Completed in 77 milliseconds