Symbol: term_pos_t
sys/dev/vt/vt.h
206
term_pos_t vb_scr_size; /* (b) Screen dimensions. */
sys/dev/vt/vt.h
216
term_pos_t vb_cursor; /* (u) Cursor position. */
sys/dev/vt/vt.h
217
term_pos_t vb_mark_start; /* (b) Copy region start. */
sys/dev/vt/vt.h
218
term_pos_t vb_mark_end; /* (b) Copy region end. */
sys/dev/vt/vt.h
233
void vtbuf_copy(struct vt_buf *, const term_rect_t *, const term_pos_t *);
sys/dev/vt/vt.h
236
void vtbuf_init(struct vt_buf *, const term_pos_t *);
sys/dev/vt/vt.h
237
void vtbuf_grow(struct vt_buf *, const term_pos_t *, unsigned int);
sys/dev/vt/vt.h
238
void vtbuf_putchar(struct vt_buf *, const term_pos_t *, term_char_t);
sys/dev/vt/vt.h
239
void vtbuf_cursor_position(struct vt_buf *, const term_pos_t *);
sys/dev/vt/vt.h
457
void vt_termsize(struct vt_device *, struct vt_font *, term_pos_t *);
sys/dev/vt/vt_buf.c
312
vtbuf_dirty_cell(struct vt_buf *vb, const term_pos_t *p)
sys/dev/vt/vt_buf.c
339
vtbuf_copy(struct vt_buf *vb, const term_rect_t *r, const term_pos_t *p2)
sys/dev/vt/vt_buf.c
341
const term_pos_t *p1 = &r->tr_begin;
sys/dev/vt/vt_buf.c
489
vtbuf_init(struct vt_buf *vb, const term_pos_t *p)
sys/dev/vt/vt_buf.c
520
term_pos_t p;
sys/dev/vt/vt_buf.c
529
vtbuf_grow(struct vt_buf *vb, const term_pos_t *p, unsigned int history_size)
sys/dev/vt/vt_buf.c
545
rows = mallocarray(history_size, sizeof(term_pos_t *), M_VTBUF,
sys/dev/vt/vt_buf.c
694
vtbuf_putchar(struct vt_buf *vb, const term_pos_t *p, term_char_t c)
sys/dev/vt/vt_buf.c
714
vtbuf_cursor_position(struct vt_buf *vb, const term_pos_t *p)
sys/dev/vt/vt_buf.c
764
term_pos_t s, e;
sys/dev/vt/vt_buf.c
814
term_pos_t s, e;
sys/dev/vt/vt_core.c
1181
vtterm_cursor(struct terminal *tm, const term_pos_t *p)
sys/dev/vt/vt_core.c
1189
vtterm_putchar(struct terminal *tm, const term_pos_t *p, term_char_t c)
sys/dev/vt/vt_core.c
1210
const term_pos_t *p)
sys/dev/vt/vt_core.c
2153
term_pos_t size;
sys/dev/vt/vt_core.c
2392
term_pos_t size;
sys/dev/vt/vt_core.c
3158
term_pos_t size;
sys/dev/vt/vt_core.c
648
vt_termsize(struct vt_device *vd, struct vt_font *vf, term_pos_t *size)
sys/dev/vt/vt_core.c
745
term_pos_t size;
sys/dev/vt/vt_core.c
823
term_pos_t size;
sys/dev/vt/vt_cpulogos.c
156
term_pos_t size;
sys/dev/vt/vt_cpulogos.c
213
term_pos_t size;
sys/kern/subr_terminal.c
243
terminal_set_cursor(struct terminal *tm, const term_pos_t *pos)
sys/sys/terminal.h
144
typedef void tc_cursor_t(struct terminal *tm, const term_pos_t *p);
sys/sys/terminal.h
145
typedef void tc_putchar_t(struct terminal *tm, const term_pos_t *p,
sys/sys/terminal.h
150
const term_pos_t *p);
sys/sys/terminal.h
213
void terminal_set_cursor(struct terminal *tm, const term_pos_t *pos);