usr.bin/tmux/tmux.h
1080
struct screen_write_ctx {
usr.bin/tmux/tmux.h
2730
void format_draw(struct screen_write_ctx *, const struct grid_cell *,
usr.bin/tmux/tmux.h
3515
void screen_write_start_pane(struct screen_write_ctx *,
usr.bin/tmux/tmux.h
3517
void screen_write_start(struct screen_write_ctx *, struct screen *);
usr.bin/tmux/tmux.h
3518
void screen_write_start_callback(struct screen_write_ctx *, struct screen *,
usr.bin/tmux/tmux.h
3520
void screen_write_stop(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3521
void screen_write_reset(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3523
int printflike(7, 8) screen_write_text(struct screen_write_ctx *, u_int, u_int,
usr.bin/tmux/tmux.h
3525
void printflike(3, 4) screen_write_puts(struct screen_write_ctx *,
usr.bin/tmux/tmux.h
3527
void printflike(4, 5) screen_write_nputs(struct screen_write_ctx *,
usr.bin/tmux/tmux.h
3529
void printflike(4, 0) screen_write_vnputs(struct screen_write_ctx *, ssize_t,
usr.bin/tmux/tmux.h
3531
void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *,
usr.bin/tmux/tmux.h
3533
void screen_write_fast_copy(struct screen_write_ctx *, struct screen *,
usr.bin/tmux/tmux.h
3535
void screen_write_hline(struct screen_write_ctx *, u_int, int, int,
usr.bin/tmux/tmux.h
3537
void screen_write_vline(struct screen_write_ctx *, u_int, int, int,
usr.bin/tmux/tmux.h
3539
void screen_write_menu(struct screen_write_ctx *, struct menu *, int,
usr.bin/tmux/tmux.h
3542
void screen_write_box(struct screen_write_ctx *, u_int, u_int,
usr.bin/tmux/tmux.h
3544
void screen_write_preview(struct screen_write_ctx *, struct screen *, u_int,
usr.bin/tmux/tmux.h
3546
void screen_write_backspace(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3547
void screen_write_mode_set(struct screen_write_ctx *, int);
usr.bin/tmux/tmux.h
3548
void screen_write_mode_clear(struct screen_write_ctx *, int);
usr.bin/tmux/tmux.h
3552
void screen_write_cursorup(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3553
void screen_write_cursordown(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3554
void screen_write_cursorright(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3555
void screen_write_cursorleft(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3556
void screen_write_alignmenttest(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3557
void screen_write_insertcharacter(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3558
void screen_write_deletecharacter(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3559
void screen_write_clearcharacter(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3560
void screen_write_insertline(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3561
void screen_write_deleteline(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3562
void screen_write_clearline(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3563
void screen_write_clearendofline(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3564
void screen_write_clearstartofline(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3565
void screen_write_cursormove(struct screen_write_ctx *, int, int, int);
usr.bin/tmux/tmux.h
3566
void screen_write_reverseindex(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3567
void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3568
void screen_write_linefeed(struct screen_write_ctx *, int, u_int);
usr.bin/tmux/tmux.h
3569
void screen_write_scrollup(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3570
void screen_write_scrolldown(struct screen_write_ctx *, u_int, u_int);
usr.bin/tmux/tmux.h
3571
void screen_write_carriagereturn(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3572
void screen_write_clearendofscreen(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3573
void screen_write_clearstartofscreen(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3574
void screen_write_clearscreen(struct screen_write_ctx *, u_int);
usr.bin/tmux/tmux.h
3575
void screen_write_clearhistory(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3576
void screen_write_fullredraw(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3577
void screen_write_collect_end(struct screen_write_ctx *);
usr.bin/tmux/tmux.h
3578
void screen_write_collect_add(struct screen_write_ctx *,
usr.bin/tmux/tmux.h
3580
void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);
usr.bin/tmux/tmux.h
3581
void screen_write_setselection(struct screen_write_ctx *, const char *,
usr.bin/tmux/tmux.h
3583
void screen_write_rawstring(struct screen_write_ctx *, u_char *, u_int,
usr.bin/tmux/tmux.h
3585
void screen_write_alternateon(struct screen_write_ctx *,
usr.bin/tmux/tmux.h
3587
void screen_write_alternateoff(struct screen_write_ctx *,
usr.bin/tmux/tmux.h
3864
typedef void (*mode_tree_draw_cb)(void *, void *, struct screen_write_ctx *,