Symbol: teken_t
stand/common/gfx_fb.h
208
teken_t tg_teken; /* Teken core */
sys/dev/syscons/scterm-teken.c
68
teken_t ts_teken;
sys/sys/terminal.h
200
teken_t tm_emulator;
sys/teken/demo/teken_demo.c
280
teken_t t;
sys/teken/stress/teken_stress.c
101
teken_t t;
sys/teken/teken.c
111
teken_funcs_fill(const teken_t *t, const teken_rect_t *r,
sys/teken/teken.c
125
teken_funcs_copy(const teken_t *t, const teken_rect_t *r, const teken_pos_t *p)
sys/teken/teken.c
140
teken_funcs_pre_input(const teken_t *t)
sys/teken/teken.c
148
teken_funcs_post_input(const teken_t *t)
sys/teken/teken.c
156
teken_funcs_param(const teken_t *t, int cmd, unsigned int value)
sys/teken/teken.c
164
teken_funcs_respond(const teken_t *t, const void *buf, size_t len)
sys/teken/teken.c
179
teken_init(teken_t *t, const teken_funcs_t *tf, void *softc)
sys/teken/teken.c
199
teken_input_char(teken_t *t, teken_char_t c)
sys/teken/teken.c
276
teken_input_byte(teken_t *t, unsigned char c)
sys/teken/teken.c
311
teken_input(teken_t *t, const void *buf, size_t len)
sys/teken/teken.c
322
teken_get_cursor(const teken_t *t)
sys/teken/teken.c
329
teken_set_cursor(teken_t *t, const teken_pos_t *p)
sys/teken/teken.c
340
teken_get_curattr(const teken_t *t)
sys/teken/teken.c
347
teken_set_curattr(teken_t *t, const teken_attr_t *a)
sys/teken/teken.c
354
teken_get_defattr(const teken_t *t)
sys/teken/teken.c
361
teken_set_defattr(teken_t *t, const teken_attr_t *a)
sys/teken/teken.c
368
teken_get_winsize(const teken_t *t)
sys/teken/teken.c
375
teken_trim_cursor_pos(teken_t *t, const teken_pos_t *new)
sys/teken/teken.c
390
teken_set_winsize(teken_t *t, const teken_pos_t *p)
sys/teken/teken.c
399
teken_set_winsize_noreset(teken_t *t, const teken_pos_t *p)
sys/teken/teken.c
408
teken_set_8bit(teken_t *t)
sys/teken/teken.c
415
teken_set_cons25(teken_t *t)
sys/teken/teken.c
422
teken_set_cons25keys(teken_t *t)
sys/teken/teken.c
433
teken_state_switch(teken_t *t, teken_state_t *s)
sys/teken/teken.c
442
teken_state_numbers(teken_t *t, teken_char_t c)
sys/teken/teken.c
736
teken_get_sequence(const teken_t *t, unsigned int k)
sys/teken/teken.c
80
teken_funcs_bell(const teken_t *t)
sys/teken/teken.c
88
teken_funcs_cursor(const teken_t *t)
sys/teken/teken.c
99
teken_funcs_putchar(const teken_t *t, const teken_pos_t *p, teken_char_t c,
sys/teken/teken.h
124
typedef teken_char_t teken_scs_t(const teken_t *, teken_char_t);
sys/teken/teken.h
167
void teken_init(teken_t *, const teken_funcs_t *, void *);
sys/teken/teken.h
170
void teken_input(teken_t *, const void *, size_t);
sys/teken/teken.h
173
const teken_pos_t *teken_get_cursor(const teken_t *);
sys/teken/teken.h
174
const teken_attr_t *teken_get_curattr(const teken_t *);
sys/teken/teken.h
175
const teken_attr_t *teken_get_defattr(const teken_t *);
sys/teken/teken.h
176
void teken_get_defattr_cons25(const teken_t *, int *, int *);
sys/teken/teken.h
177
const teken_pos_t *teken_get_winsize(const teken_t *);
sys/teken/teken.h
178
void teken_set_cursor(teken_t *, const teken_pos_t *);
sys/teken/teken.h
179
void teken_set_curattr(teken_t *, const teken_attr_t *);
sys/teken/teken.h
180
void teken_set_defattr(teken_t *, const teken_attr_t *);
sys/teken/teken.h
181
void teken_set_winsize(teken_t *, const teken_pos_t *);
sys/teken/teken.h
182
void teken_set_winsize_noreset(teken_t *, const teken_pos_t *);
sys/teken/teken.h
211
const char *teken_get_sequence(const teken_t *, unsigned int);
sys/teken/teken.h
214
void teken_set_8bit(teken_t *);
sys/teken/teken.h
215
void teken_set_cons25(teken_t *);
sys/teken/teken.h
216
void teken_set_cons25keys(teken_t *);
sys/teken/teken.h
82
typedef void teken_state_t(teken_t *, teken_char_t);
sys/teken/teken_scs.h
30
teken_scs_process(const teken_t *t, teken_char_t c)
sys/teken/teken_scs.h
53
teken_scs_special_graphics(const teken_t *t, teken_char_t c)
sys/teken/teken_scs.h
65
teken_scs_uk_national(const teken_t *t, teken_char_t c)
sys/teken/teken_scs.h
75
teken_scs_us_ascii(const teken_t *t, teken_char_t c)
sys/teken/teken_subr.h
1013
teken_subr_reset_to_initial_state(teken_t *t)
sys/teken/teken_subr.h
1023
teken_subr_restore_cursor(teken_t *t)
sys/teken/teken_subr.h
1043
teken_subr_reverse_index(teken_t *t)
sys/teken/teken_subr.h
1056
teken_subr_save_cursor(teken_t *t)
sys/teken/teken_subr.h
1065
teken_subr_secondary_device_attributes(const teken_t *t, unsigned int request)
sys/teken/teken_subr.h
1077
teken_subr_set_dec_mode(teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
1129
teken_subr_set_mode(teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
1143
teken_subr_set_graphic_rendition(teken_t *t, unsigned int ncmds,
sys/teken/teken_subr.h
1250
teken_subr_set_top_and_bottom_margins(teken_t *t, unsigned int top,
sys/teken/teken_subr.h
1281
teken_subr_single_height_double_width_line(const teken_t *t)
sys/teken/teken_subr.h
1289
teken_subr_single_height_single_width_line(const teken_t *t)
sys/teken/teken_subr.h
1297
teken_subr_string_terminator(const teken_t *t)
sys/teken/teken_subr.h
1308
teken_subr_tab_clear(teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
1324
teken_subr_vertical_position_absolute(teken_t *t, unsigned int row)
sys/teken/teken_subr.h
1336
teken_subr_repeat_last_graphic_char(teken_t *t, unsigned int rpts)
sys/teken/teken_subr.h
150
teken_subr_do_cpr(const teken_t *t, unsigned int cmd, char response[16])
sys/teken/teken_subr.h
184
teken_subr_alignment_test(teken_t *t)
sys/teken/teken_subr.h
202
teken_subr_backspace(teken_t *t)
sys/teken/teken_subr.h
226
teken_subr_bell(const teken_t *t)
sys/teken/teken_subr.h
233
teken_subr_carriage_return(teken_t *t)
sys/teken/teken_subr.h
242
teken_subr_cursor_backward(teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
254
teken_subr_cursor_backward_tabulation(teken_t *t, unsigned int ntabs)
sys/teken/teken_subr.h
273
teken_subr_cursor_down(teken_t *t, unsigned int nrows)
sys/teken/teken_subr.h
285
teken_subr_cursor_forward(teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
29
static void teken_subr_cursor_up(teken_t *, unsigned int);
sys/teken/teken_subr.h
297
teken_subr_cursor_forward_tabulation(teken_t *t, unsigned int ntabs)
sys/teken/teken_subr.h
30
static void teken_subr_erase_line(const teken_t *, unsigned int);
sys/teken/teken_subr.h
31
static void teken_subr_regular_character(teken_t *, teken_char_t);
sys/teken/teken_subr.h
316
teken_subr_cursor_next_line(teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
32
static void teken_subr_reset_to_initial_state(teken_t *);
sys/teken/teken_subr.h
324
teken_subr_cursor_position(teken_t *t, unsigned int row, unsigned int col)
sys/teken/teken_subr.h
33
static void teken_subr_save_cursor(teken_t *);
sys/teken/teken_subr.h
340
teken_subr_cursor_position_report(const teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
353
teken_subr_cursor_previous_line(teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
36
teken_tab_isset(const teken_t *t, unsigned int col)
sys/teken/teken_subr.h
361
teken_subr_cursor_up(teken_t *t, unsigned int nrows)
sys/teken/teken_subr.h
373
teken_subr_set_cursor_style(teken_t *t __unused, unsigned int style __unused)
sys/teken/teken_subr.h
392
teken_subr_delete_character(const teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
415
teken_subr_delete_line(const teken_t *t, unsigned int nrows)
sys/teken/teken_subr.h
447
teken_subr_device_control_string(teken_t *t)
sys/teken/teken_subr.h
455
teken_subr_device_status_report(const teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
468
teken_subr_double_height_double_width_line_top(const teken_t *t)
sys/teken/teken_subr.h
476
teken_subr_double_height_double_width_line_bottom(const teken_t *t)
sys/teken/teken_subr.h
484
teken_subr_erase_character(const teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
50
teken_tab_clear(teken_t *t, unsigned int col)
sys/teken/teken_subr.h
500
teken_subr_erase_display(const teken_t *t, unsigned int mode)
sys/teken/teken_subr.h
536
teken_subr_erase_line(const teken_t *t, unsigned int mode)
sys/teken/teken_subr.h
562
teken_subr_g0_scs_special_graphics(teken_t *t)
sys/teken/teken_subr.h
569
teken_subr_g0_scs_uk_national(teken_t *t)
sys/teken/teken_subr.h
576
teken_subr_g0_scs_us_ascii(teken_t *t)
sys/teken/teken_subr.h
583
teken_subr_g1_scs_special_graphics(teken_t *t)
sys/teken/teken_subr.h
590
teken_subr_g1_scs_uk_national(teken_t *t)
sys/teken/teken_subr.h
597
teken_subr_g1_scs_us_ascii(teken_t *t)
sys/teken/teken_subr.h
604
teken_subr_horizontal_position_absolute(teken_t *t, unsigned int col)
sys/teken/teken_subr.h
616
teken_subr_horizontal_tab(teken_t *t)
sys/teken/teken_subr.h
623
teken_subr_horizontal_tab_set(teken_t *t)
sys/teken/teken_subr.h
630
teken_subr_index(teken_t *t)
sys/teken/teken_subr.h
64
teken_tab_set(teken_t *t, unsigned int col)
sys/teken/teken_subr.h
643
teken_subr_insert_character(const teken_t *t, unsigned int ncols)
sys/teken/teken_subr.h
669
teken_subr_insert_line(const teken_t *t, unsigned int nrows)
sys/teken/teken_subr.h
701
teken_subr_keypad_application_mode(const teken_t *t)
sys/teken/teken_subr.h
708
teken_subr_keypad_numeric_mode(const teken_t *t)
sys/teken/teken_subr.h
715
teken_subr_newline(teken_t *t)
sys/teken/teken_subr.h
730
teken_subr_newpage(teken_t *t)
sys/teken/teken_subr.h
754
teken_subr_next_line(teken_t *t)
sys/teken/teken_subr.h
762
teken_subr_operating_system_command(teken_t *t)
sys/teken/teken_subr.h
770
teken_subr_pan_down(const teken_t *t, unsigned int nrows)
sys/teken/teken_subr.h
777
teken_subr_pan_up(const teken_t *t, unsigned int nrows)
sys/teken/teken_subr.h
78
teken_tab_default(teken_t *t)
sys/teken/teken_subr.h
784
teken_subr_primary_device_attributes(const teken_t *t, unsigned int request)
sys/teken/teken_subr.h
797
teken_subr_do_putchar(teken_t *t, const teken_pos_t *tp, teken_char_t c,
sys/teken/teken_subr.h
832
teken_subr_regular_character(teken_t *t, teken_char_t c)
sys/teken/teken_subr.h
89
teken_subr_do_scroll(const teken_t *t, int amount)
sys/teken/teken_subr.h
919
teken_subr_reset_dec_mode(teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
971
teken_subr_reset_mode(teken_t *t, unsigned int cmd)
sys/teken/teken_subr.h
984
teken_subr_do_resize(teken_t *t)
sys/teken/teken_subr.h
993
teken_subr_do_reset(teken_t *t)
sys/teken/teken_subr_compat.h
104
teken_subr_cons25_set_bell_pitch_duration(const teken_t *t, unsigned int pitch,
sys/teken/teken_subr_compat.h
113
teken_subr_cons25_set_graphic_rendition(teken_t *t, unsigned int cmd,
sys/teken/teken_subr_compat.h
128
teken_subr_cons25_set_terminal_mode(teken_t *t, unsigned int mode)
sys/teken/teken_subr_compat.h
145
teken_subr_vt52_decid(teken_t *t)
sys/teken/teken_subr_compat.h
30
teken_subr_cons25_set_border(const teken_t *t, unsigned int c)
sys/teken/teken_subr_compat.h
37
teken_subr_cons25_set_global_cursor_shape(const teken_t *t, unsigned int ncmds,
sys/teken/teken_subr_compat.h
59
teken_subr_cons25_set_local_cursor_type(const teken_t *t, unsigned int type)
sys/teken/teken_subr_compat.h
69
teken_subr_cons25_set_default_background(teken_t *t, unsigned int c)
sys/teken/teken_subr_compat.h
77
teken_subr_cons25_set_default_foreground(teken_t *t, unsigned int c)
sys/teken/teken_subr_compat.h
87
teken_get_defattr_cons25(const teken_t *t, int *fg, int *bg)
sys/teken/teken_subr_compat.h
97
teken_subr_cons25_switch_virtual_terminal(const teken_t *t, unsigned int vt)