Symbol: tem_vt_state
usr/src/boot/common/tem.c
100
static void tem_selgraph(struct tem_vt_state *);
usr/src/boot/common/tem.c
101
static void tem_chkparam(struct tem_vt_state *, uint8_t);
usr/src/boot/common/tem.c
102
static void tem_getparams(struct tem_vt_state *, uint8_t);
usr/src/boot/common/tem.c
103
static void tem_outch(struct tem_vt_state *, tem_char_t);
usr/src/boot/common/tem.c
104
static void tem_parse(struct tem_vt_state *, tem_char_t);
usr/src/boot/common/tem.c
106
static void tem_new_line(struct tem_vt_state *);
usr/src/boot/common/tem.c
107
static void tem_cr(struct tem_vt_state *);
usr/src/boot/common/tem.c
108
static void tem_lf(struct tem_vt_state *);
usr/src/boot/common/tem.c
1081
tem_terminal_emulate(struct tem_vt_state *tem, uint8_t *buf, int len)
usr/src/boot/common/tem.c
109
static void tem_send_data(struct tem_vt_state *);
usr/src/boot/common/tem.c
110
static void tem_cls(struct tem_vt_state *);
usr/src/boot/common/tem.c
1104
tem_control(struct tem_vt_state *tem, uint8_t ch)
usr/src/boot/common/tem.c
111
static void tem_tab(struct tem_vt_state *);
usr/src/boot/common/tem.c
112
static void tem_back_tab(struct tem_vt_state *);
usr/src/boot/common/tem.c
113
static void tem_clear_tabs(struct tem_vt_state *, int);
usr/src/boot/common/tem.c
114
static void tem_set_tab(struct tem_vt_state *);
usr/src/boot/common/tem.c
115
static void tem_mv_cursor(struct tem_vt_state *, int, int);
usr/src/boot/common/tem.c
116
static void tem_shift(struct tem_vt_state *, int, int);
usr/src/boot/common/tem.c
117
static void tem_scroll(struct tem_vt_state *, int, int, int, int);
usr/src/boot/common/tem.c
1174
tem_setparam(struct tem_vt_state *tem, int count, int newparam)
usr/src/boot/common/tem.c
118
static void tem_clear_chars(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
1190
tem_select_color(struct tem_vt_state *tem, int color, bool fg)
usr/src/boot/common/tem.c
120
static void tem_copy_area(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
1237
tem_selgraph(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
124
static void tem_bell(struct tem_vt_state *tem);
usr/src/boot/common/tem.c
125
static void tem_pix_clear_prom_output(struct tem_vt_state *tem);
usr/src/boot/common/tem.c
127
static void tem_virtual_cls(struct tem_vt_state *, size_t, screen_pos_t,
usr/src/boot/common/tem.c
129
static void tem_virtual_display(struct tem_vt_state *, term_char_t *,
usr/src/boot/common/tem.c
131
static void tem_align_cursor(struct tem_vt_state *tem);
usr/src/boot/common/tem.c
133
static void tem_check_first_time(struct tem_vt_state *tem);
usr/src/boot/common/tem.c
134
static void tem_reset_display(struct tem_vt_state *, bool, bool);
usr/src/boot/common/tem.c
135
static void tem_terminal_emulate(struct tem_vt_state *, uint8_t *, int);
usr/src/boot/common/tem.c
136
static void tem_text_cursor(struct tem_vt_state *, short);
usr/src/boot/common/tem.c
137
static void tem_text_cls(struct tem_vt_state *,
usr/src/boot/common/tem.c
139
static void tem_pix_display(struct tem_vt_state *, term_char_t *,
usr/src/boot/common/tem.c
141
static void tem_pix_copy(struct tem_vt_state *,
usr/src/boot/common/tem.c
145
static void tem_pix_cursor(struct tem_vt_state *, short);
usr/src/boot/common/tem.c
146
static void tem_get_attr(struct tem_vt_state *, text_color_t *,
usr/src/boot/common/tem.c
148
static void tem_get_color(struct tem_vt_state *,
usr/src/boot/common/tem.c
1504
tem_chkparam(struct tem_vt_state *tem, uint8_t ch)
usr/src/boot/common/tem.c
151
static void tem_pix_align(struct tem_vt_state *);
usr/src/boot/common/tem.c
152
static void tem_text_display(struct tem_vt_state *, term_char_t *, int,
usr/src/boot/common/tem.c
154
static void tem_text_copy(struct tem_vt_state *,
usr/src/boot/common/tem.c
157
static void tem_pix_bit2pix(struct tem_vt_state *, term_char_t *);
usr/src/boot/common/tem.c
158
static void tem_pix_cls_range(struct tem_vt_state *, screen_pos_t, int,
usr/src/boot/common/tem.c
160
static void tem_pix_cls(struct tem_vt_state *, int,
usr/src/boot/common/tem.c
163
static void bit_to_pix32(struct tem_vt_state *tem, tem_char_t c,
usr/src/boot/common/tem.c
1734
tem_chkparam_qmark(struct tem_vt_state *tem, tem_char_t ch)
usr/src/boot/common/tem.c
1784
tem_getparams(struct tem_vt_state *tem, uint8_t ch)
usr/src/boot/common/tem.c
1835
tem_outch(struct tem_vt_state *tem, tem_char_t ch)
usr/src/boot/common/tem.c
1864
tem_new_line(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
1871
tem_cr(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
1879
tem_lf(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
1925
tem_send_data(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
193
tem_add(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
1956
tem_align_cursor(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
1968
tem_parse(struct tem_vt_state *tem, tem_char_t ch)
usr/src/boot/common/tem.c
205
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/boot/common/tem.c
2126
tem_bell(struct tem_vt_state *tem __unused)
usr/src/boot/common/tem.c
2133
tem_scroll(struct tem_vt_state *tem, int start, int end, int count,
usr/src/boot/common/tem.c
216
tem_internal_init(struct tem_vt_state *ptem,
usr/src/boot/common/tem.c
2195
tem_copy_area(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
2276
tem_clear_chars(struct tem_vt_state *tem, int count, screen_pos_t row,
usr/src/boot/common/tem.c
2301
tem_text_display(struct tem_vt_state *tem __unused, term_char_t *string,
usr/src/boot/common/tem.c
2332
tem_image_display(struct tem_vt_state *tem, screen_pos_t s_row,
usr/src/boot/common/tem.c
2349
tem_text_copy(struct tem_vt_state *tem __unused,
usr/src/boot/common/tem.c
2366
tem_text_cls(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
2387
tem_pix_display(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
2408
tem_pix_copy(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
2468
tem_pix_bit2pix(struct tem_vt_state *tem, term_char_t *c)
usr/src/boot/common/tem.c
2481
tem_pix_cls(struct tem_vt_state *tem, int count,
usr/src/boot/common/tem.c
2512
tem_pix_clear_prom_output(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
2531
tem_cls(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
2561
tem_back_tab(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
2579
tem_tab(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
2597
tem_set_tab(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
260
struct tem_vt_state *ptem = (struct tem_vt_state *)tem_arg;
usr/src/boot/common/tem.c
2622
tem_clear_tabs(struct tem_vt_state *tem, int action)
usr/src/boot/common/tem.c
2645
tem_mv_cursor(struct tem_vt_state *tem, int row, int col)
usr/src/boot/common/tem.c
2673
tem_reset_emulator(struct tem_vt_state *tem, bool init_color)
usr/src/boot/common/tem.c
268
struct tem_vt_state *ptem;
usr/src/boot/common/tem.c
270
ptem = calloc(1, sizeof (struct tem_vt_state));
usr/src/boot/common/tem.c
2710
tem_reset_display(struct tem_vt_state *tem, bool clear_txt, bool init_color)
usr/src/boot/common/tem.c
2726
tem_shift(struct tem_vt_state *tem, int count, int direction)
usr/src/boot/common/tem.c
2770
tem_text_cursor(struct tem_vt_state *tem, short action)
usr/src/boot/common/tem.c
2787
tem_pix_cursor(struct tem_vt_state *tem, short action)
usr/src/boot/common/tem.c
2829
bit_to_pix32(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
2842
tem_get_attr(struct tem_vt_state *tem, text_color_t *fg,
usr/src/boot/common/tem.c
2858
tem_get_color(struct tem_vt_state *tem, text_color_t *fg, text_color_t *bg,
usr/src/boot/common/tem.c
2929
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/boot/common/tem.c
2953
tem_pix_cls_range(struct tem_vt_state *tem,
usr/src/boot/common/tem.c
2992
tem_virtual_display(struct tem_vt_state *tem, term_char_t *string,
usr/src/boot/common/tem.c
3014
tem_virtual_cls(struct tem_vt_state *tem, size_t count,
usr/src/boot/common/tem.c
302
tem_reinit(struct tem_vt_state *tem, bool reset_display)
usr/src/boot/common/tem.c
311
tem_free_buf(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
346
struct tem_vt_state *p;
usr/src/boot/common/tem.c
352
list_create(&tems.ts_list, sizeof (struct tem_vt_state),
usr/src/boot/common/tem.c
353
__offsetof(struct tem_vt_state, tvs_list_node));
usr/src/boot/common/tem.c
582
struct tem_vt_state *p;
usr/src/boot/common/tem.c
595
struct tem_vt_state *active = tems.ts_active;
usr/src/boot/common/tem.c
610
struct tem_vt_state *active = tems.ts_active;
usr/src/boot/common/tem.c
742
struct tem_vt_state *active = tems.ts_active;
usr/src/boot/common/tem.c
772
tem_prom_scroll_up(struct tem_vt_state *tem, int nrows)
usr/src/boot/common/tem.c
801
tem_adjust_row(struct tem_vt_state *tem, int prom_row)
usr/src/boot/common/tem.c
835
tem_pix_align(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
931
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/boot/common/tem.c
94
static void tem_free_buf(struct tem_vt_state *);
usr/src/boot/common/tem.c
943
tem_check_first_time(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
95
static void tem_internal_init(struct tem_vt_state *, bool, bool);
usr/src/boot/common/tem.c
966
tem_input_partial(struct tem_vt_state *tem)
usr/src/boot/common/tem.c
98
static void tem_control(struct tem_vt_state *, uint8_t);
usr/src/boot/common/tem.c
988
tem_input_byte(struct tem_vt_state *tem, uint8_t c)
usr/src/boot/common/tem.c
99
static void tem_setparam(struct tem_vt_state *, int, int);
usr/src/boot/sys/sys/tem_impl.h
223
void (*tsc_display)(struct tem_vt_state *, term_char_t *, int,
usr/src/boot/sys/sys/tem_impl.h
225
void (*tsc_copy)(struct tem_vt_state *,
usr/src/boot/sys/sys/tem_impl.h
228
void (*tsc_cursor)(struct tem_vt_state *, short);
usr/src/boot/sys/sys/tem_impl.h
229
void (*tsc_bit2pix)(struct tem_vt_state *, term_char_t *);
usr/src/boot/sys/sys/tem_impl.h
230
void (*tsc_cls)(struct tem_vt_state *, int, screen_pos_t, screen_pos_t);
usr/src/boot/sys/sys/tem_impl.h
266
struct tem_vt_state *ts_active;
usr/src/boot/sys/sys/tem_impl.h
292
void tem_image_display(struct tem_vt_state *, screen_pos_t, screen_pos_t,
usr/src/uts/common/io/tem.c
1031
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem.c
104
static void tem_free_buf(struct tem_vt_state *);
usr/src/uts/common/io/tem.c
1045
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem.c
105
static void tem_internal_init(struct tem_vt_state *, cred_t *, boolean_t,
usr/src/uts/common/io/tem.c
1071
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem.c
1091
struct tem_vt_state *cur = (struct tem_vt_state *)tem_arg1;
usr/src/uts/common/io/tem.c
1092
struct tem_vt_state *tobe = (struct tem_vt_state *)tem_arg2;
usr/src/uts/common/io/tem.c
141
list_create(&tems.ts_list, sizeof (struct tem_vt_state),
usr/src/uts/common/io/tem.c
142
offsetof(struct tem_vt_state, tvs_list_node));
usr/src/uts/common/io/tem.c
168
tem_add(struct tem_vt_state *tem)
usr/src/uts/common/io/tem.c
176
tem_rm(struct tem_vt_state *tem)
usr/src/uts/common/io/tem.c
190
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem.c
209
tem_internal_init(struct tem_vt_state *ptem, cred_t *credp,
usr/src/uts/common/io/tem.c
270
struct tem_vt_state *ptem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem.c
283
struct tem_vt_state *ptem;
usr/src/uts/common/io/tem.c
285
ptem = kmem_zalloc(sizeof (struct tem_vt_state), KM_SLEEP);
usr/src/uts/common/io/tem.c
325
tem_reinit(struct tem_vt_state *tem, boolean_t reset_display)
usr/src/uts/common/io/tem.c
336
tem_free_buf(struct tem_vt_state *tem)
usr/src/uts/common/io/tem.c
359
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem.c
376
kmem_free(tem, sizeof (struct tem_vt_state));
usr/src/uts/common/io/tem.c
406
struct tem_vt_state *p;
usr/src/uts/common/io/tem.c
652
struct tem_vt_state *p;
usr/src/uts/common/io/tem.c
675
struct tem_vt_state *active = tems.ts_active;
usr/src/uts/common/io/tem.c
832
tem_prom_scroll_up(struct tem_vt_state *tem, int nrows, cred_t *credp,
usr/src/uts/common/io/tem.c
865
tem_adjust_row(struct tem_vt_state *tem, int prom_row, cred_t *credp,
usr/src/uts/common/io/tem.c
905
tem_align(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
106
static void tem_safe_control(struct tem_vt_state *, tem_char_t,
usr/src/uts/common/io/tem_safe.c
108
static void tem_safe_setparam(struct tem_vt_state *, int, int);
usr/src/uts/common/io/tem_safe.c
109
static void tem_safe_selgraph(struct tem_vt_state *);
usr/src/uts/common/io/tem_safe.c
110
static void tem_safe_chkparam(struct tem_vt_state *, tem_char_t,
usr/src/uts/common/io/tem_safe.c
112
static void tem_safe_getparams(struct tem_vt_state *, tem_char_t,
usr/src/uts/common/io/tem_safe.c
114
static void tem_safe_outch(struct tem_vt_state *, tem_char_t,
usr/src/uts/common/io/tem_safe.c
116
static void tem_safe_parse(struct tem_vt_state *, tem_char_t,
usr/src/uts/common/io/tem_safe.c
1170
tem_safe_chkparam_qmark(struct tem_vt_state *tem, tem_char_t ch, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
119
static void tem_safe_new_line(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
121
static void tem_safe_cr(struct tem_vt_state *);
usr/src/uts/common/io/tem_safe.c
122
static void tem_safe_lf(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
1225
tem_safe_getparams(struct tem_vt_state *tem, tem_char_t ch,
usr/src/uts/common/io/tem_safe.c
124
static void tem_safe_send_data(struct tem_vt_state *, cred_t *,
usr/src/uts/common/io/tem_safe.c
126
static void tem_safe_cls(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
128
static void tem_safe_tab(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
1281
tem_safe_outch(struct tem_vt_state *tem, tem_char_t ch,
usr/src/uts/common/io/tem_safe.c
130
static void tem_safe_back_tab(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
1314
tem_safe_new_line(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
132
static void tem_safe_clear_tabs(struct tem_vt_state *, int);
usr/src/uts/common/io/tem_safe.c
1322
tem_safe_cr(struct tem_vt_state *tem)
usr/src/uts/common/io/tem_safe.c
133
static void tem_safe_set_tab(struct tem_vt_state *);
usr/src/uts/common/io/tem_safe.c
1330
tem_safe_lf(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
134
static void tem_safe_mv_cursor(struct tem_vt_state *, int, int,
usr/src/uts/common/io/tem_safe.c
136
static void tem_safe_shift(struct tem_vt_state *, int, int,
usr/src/uts/common/io/tem_safe.c
138
static void tem_safe_scroll(struct tem_vt_state *, int, int,
usr/src/uts/common/io/tem_safe.c
1383
tem_safe_send_data(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
140
static void tem_safe_clear_chars(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
1420
tem_safe_align_cursor(struct tem_vt_state *tem)
usr/src/uts/common/io/tem_safe.c
143
static void tem_safe_copy_area(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
1432
tem_safe_parse(struct tem_vt_state *tem, tem_char_t ch,
usr/src/uts/common/io/tem_safe.c
150
static void tem_safe_image_display(struct tem_vt_state *, uchar_t *,
usr/src/uts/common/io/tem_safe.c
154
static void tem_safe_bell(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
156
static void tem_safe_pix_clear_prom_output(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
158
static void tem_safe_get_color(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
1595
tem_safe_bell(struct tem_vt_state *tem, enum called_from called_from)
usr/src/uts/common/io/tem_safe.c
1605
tem_safe_scroll(struct tem_vt_state *tem, int start, int end, int count,
usr/src/uts/common/io/tem_safe.c
162
static void tem_safe_virtual_cls(struct tem_vt_state *, int, screen_pos_t,
usr/src/uts/common/io/tem_safe.c
164
static void tem_safe_virtual_display(struct tem_vt_state *,
usr/src/uts/common/io/tem_safe.c
166
static void tem_safe_virtual_copy(struct tem_vt_state *, screen_pos_t,
usr/src/uts/common/io/tem_safe.c
1674
tem_safe_copy_area(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
169
static void tem_safe_align_cursor(struct tem_vt_state *tem);
usr/src/uts/common/io/tem_safe.c
170
static void bit_to_pix4(struct tem_vt_state *tem, tem_char_t c,
usr/src/uts/common/io/tem_safe.c
172
static void bit_to_pix8(struct tem_vt_state *tem, tem_char_t c,
usr/src/uts/common/io/tem_safe.c
174
static void bit_to_pix16(struct tem_vt_state *tem, tem_char_t c,
usr/src/uts/common/io/tem_safe.c
1757
tem_safe_clear_chars(struct tem_vt_state *tem, int count, screen_pos_t row,
usr/src/uts/common/io/tem_safe.c
176
static void bit_to_pix24(struct tem_vt_state *tem, tem_char_t c,
usr/src/uts/common/io/tem_safe.c
178
static void bit_to_pix32(struct tem_vt_state *tem, tem_char_t c,
usr/src/uts/common/io/tem_safe.c
1786
tem_safe_text_display(struct tem_vt_state *tem, term_char_t *string,
usr/src/uts/common/io/tem_safe.c
1826
tem_safe_image_display(struct tem_vt_state *tem, uchar_t *image,
usr/src/uts/common/io/tem_safe.c
1850
tem_safe_text_copy(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
1872
tem_safe_text_cls(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
1899
tem_safe_pix_display(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
1927
tem_safe_pix_copy(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
197
struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
1993
tem_safe_pix_bit2pix(struct tem_vt_state *tem, term_char_t *c)
usr/src/uts/common/io/tem_safe.c
1996
void (*fp)(struct tem_vt_state *, tem_char_t,
usr/src/uts/common/io/tem_safe.c
2029
tem_safe_pix_cls(struct tem_vt_state *tem, int count,
usr/src/uts/common/io/tem_safe.c
2064
tem_safe_pix_clear_prom_output(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
2089
tem_safe_pix_clear_entire_screen(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
2134
tem_safe_cls(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2169
tem_safe_back_tab(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2192
tem_safe_tab(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2215
tem_safe_set_tab(struct tem_vt_state *tem)
usr/src/uts/common/io/tem_safe.c
2240
tem_safe_clear_tabs(struct tem_vt_state *tem, int action)
usr/src/uts/common/io/tem_safe.c
2263
tem_safe_mv_cursor(struct tem_vt_state *tem, int row, int col,
usr/src/uts/common/io/tem_safe.c
2295
tem_safe_reset_emulator(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2336
tem_safe_reset_display(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2360
struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
238
struct tem_vt_state *tem = (struct tem_vt_state *)tem_arg;
usr/src/uts/common/io/tem_safe.c
2414
tem_safe_text_cursor(struct tem_vt_state *tem, short action,
usr/src/uts/common/io/tem_safe.c
2435
tem_safe_pix_cursor(struct tem_vt_state *tem, short action,
usr/src/uts/common/io/tem_safe.c
2481
bit_to_pix4(struct tem_vt_state *tem, tem_char_t c, text_color_t fg,
usr/src/uts/common/io/tem_safe.c
2490
bit_to_pix8(struct tem_vt_state *tem, tem_char_t c, text_color_t fg,
usr/src/uts/common/io/tem_safe.c
2499
bit_to_pix16(struct tem_vt_state *tem, tem_char_t c, text_color_t fg,
usr/src/uts/common/io/tem_safe.c
2509
bit_to_pix24(struct tem_vt_state *tem, tem_char_t c, text_color_t fg,
usr/src/uts/common/io/tem_safe.c
2519
bit_to_pix32(struct tem_vt_state *tem, tem_char_t c, text_color_t fg,
usr/src/uts/common/io/tem_safe.c
2532
tem_safe_get_attr(struct tem_vt_state *tem, text_color_t *fg,
usr/src/uts/common/io/tem_safe.c
2548
tem_safe_get_color(struct tem_vt_state *tem, text_color_t *fg,
usr/src/uts/common/io/tem_safe.c
255
tem_safe_input_partial(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
2661
tem_safe_pix_cls_range(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2704
tem_safe_virtual_display(struct tem_vt_state *tem, term_char_t *string,
usr/src/uts/common/io/tem_safe.c
2772
tem_safe_virtual_copy(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
278
tem_safe_input_byte(struct tem_vt_state *tem, uchar_t c, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
2805
tem_safe_virtual_cls(struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
2826
tem_safe_blank_screen(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
2850
tem_safe_unblank_screen(struct tem_vt_state *tem, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
373
struct tem_vt_state *tem,
usr/src/uts/common/io/tem_safe.c
452
tem_safe_control(struct tem_vt_state *tem, tem_char_t ch, cred_t *credp,
usr/src/uts/common/io/tem_safe.c
527
tem_safe_setparam(struct tem_vt_state *tem, int count, int newparam)
usr/src/uts/common/io/tem_safe.c
543
tem_select_color(struct tem_vt_state *tem, int color, boolean_t fg)
usr/src/uts/common/io/tem_safe.c
590
tem_safe_selgraph(struct tem_vt_state *tem)
usr/src/uts/common/io/tem_safe.c
852
tem_safe_window(struct tem_vt_state *tem, enum called_from called_from)
usr/src/uts/common/io/tem_safe.c
906
tem_safe_chkparam(struct tem_vt_state *tem, tem_char_t ch, cred_t *credp,
usr/src/uts/common/sys/tem_impl.h
246
_NOTE(MUTEX_PROTECTS_DATA(tem_vt_state::tvs_lock, tem_vt_state))
usr/src/uts/common/sys/tem_impl.h
249
void (*tsc_display)(struct tem_vt_state *, term_char_t *, int,
usr/src/uts/common/sys/tem_impl.h
251
void (*tsc_copy)(struct tem_vt_state *,
usr/src/uts/common/sys/tem_impl.h
254
void (*tsc_cursor)(struct tem_vt_state *, short, cred_t *,
usr/src/uts/common/sys/tem_impl.h
256
void (*tsc_bit2pix)(struct tem_vt_state *, term_char_t *);
usr/src/uts/common/sys/tem_impl.h
257
void (*tsc_cls)(struct tem_vt_state *, int,
usr/src/uts/common/sys/tem_impl.h
291
struct tem_vt_state *ts_active;
usr/src/uts/common/sys/tem_impl.h
312
void tem_align(struct tem_vt_state *, cred_t *, enum called_from);
usr/src/uts/common/sys/tem_impl.h
313
void tem_safe_check_first_time(struct tem_vt_state *tem, cred_t *,
usr/src/uts/common/sys/tem_impl.h
315
void tem_safe_reset_display(struct tem_vt_state *, cred_t *,
usr/src/uts/common/sys/tem_impl.h
317
void tem_safe_terminal_emulate(struct tem_vt_state *, uchar_t *, int,
usr/src/uts/common/sys/tem_impl.h
319
void tem_safe_text_display(struct tem_vt_state *, term_char_t *,
usr/src/uts/common/sys/tem_impl.h
321
void tem_safe_text_copy(struct tem_vt_state *,
usr/src/uts/common/sys/tem_impl.h
326
void tem_safe_text_cursor(struct tem_vt_state *, short, cred_t *,
usr/src/uts/common/sys/tem_impl.h
328
void tem_safe_text_cls(struct tem_vt_state *,
usr/src/uts/common/sys/tem_impl.h
331
void tem_safe_pix_display(struct tem_vt_state *, term_char_t *,
usr/src/uts/common/sys/tem_impl.h
333
void tem_safe_pix_copy(struct tem_vt_state *,
usr/src/uts/common/sys/tem_impl.h
338
void tem_safe_pix_cursor(struct tem_vt_state *, short, cred_t *,
usr/src/uts/common/sys/tem_impl.h
340
void tem_safe_pix_bit2pix(struct tem_vt_state *, term_char_t *);
usr/src/uts/common/sys/tem_impl.h
341
void tem_safe_pix_cls(struct tem_vt_state *, int, screen_pos_t, screen_pos_t,
usr/src/uts/common/sys/tem_impl.h
343
void tem_safe_pix_cls_range(struct tem_vt_state *,
usr/src/uts/common/sys/tem_impl.h
348
void tem_safe_pix_clear_entire_screen(struct tem_vt_state *,
usr/src/uts/common/sys/tem_impl.h
351
void tem_safe_get_attr(struct tem_vt_state *, text_color_t *,
usr/src/uts/common/sys/tem_impl.h
354
void tem_safe_blank_screen(struct tem_vt_state *, cred_t *,
usr/src/uts/common/sys/tem_impl.h
356
void tem_safe_unblank_screen(struct tem_vt_state *, cred_t *,