Symbol: redraw
games/atc/extern.h
108
void redraw(void);
games/atc/input.c
295
redraw();
games/boggle/boggle/bog.c
204
redraw();
games/boggle/boggle/extern.h
59
void redraw(void);
games/boggle/boggle/mach.c
254
redraw();
usr.bin/mg/def.h
423
int redraw(int, int);
usr.bin/mg/funmap.c
182
{redraw, "redraw-display", 0},
usr.bin/mg/ttyio.c
172
redraw(0, 0);
usr.bin/tmux/input.c
2894
int c, bad = 0, redraw = 0;
usr.bin/tmux/input.c
2927
redraw = 1;
usr.bin/tmux/input.c
2932
if (redraw)
usr.bin/tmux/input.c
3413
int bad = 0, redraw = 0;
usr.bin/tmux/input.c
3433
redraw = 1;
usr.bin/tmux/input.c
3439
if (redraw)
usr.bin/tmux/mode-tree.c
1505
int redraw;
usr.bin/tmux/mode-tree.c
1515
redraw = 0;
usr.bin/tmux/mode-tree.c
1535
&redraw);
usr.bin/tmux/mode-tree.c
1540
result = prompt_key(prompt, *key, &redraw);
usr.bin/tmux/mode-tree.c
1552
if (redraw || mtd->prompt != prompt) {
usr.bin/tmux/prompt.c
1174
prompt_done(struct prompt *pr, const char *s, int *redraw)
usr.bin/tmux/prompt.c
1176
if (prompt_fire_callback(pr, s, PROMPT_KEY_CLOSE, redraw))
usr.bin/tmux/prompt.c
1214
prompt_key(struct prompt *pr, key_code key, int *redraw)
usr.bin/tmux/prompt.c
1266
switch (prompt_translate_key(pr, key, &key, redraw)) {
usr.bin/tmux/prompt.c
1318
return (prompt_done(pr, NULL, redraw));
usr.bin/tmux/prompt.c
1451
result = prompt_done(pr, s, redraw);
usr.bin/tmux/prompt.c
1458
return (prompt_done(pr, NULL, redraw));
usr.bin/tmux/prompt.c
1488
*redraw = 1;
usr.bin/tmux/prompt.c
1523
result = prompt_done(pr, s, redraw);
usr.bin/tmux/prompt.c
1529
*redraw = 1;
usr.bin/tmux/prompt.c
247
enum prompt_key_result type, int *redraw)
usr.bin/tmux/prompt.c
256
if (redraw != NULL)
usr.bin/tmux/prompt.c
257
*redraw = 1;
usr.bin/tmux/prompt.c
560
int *redraw)
usr.bin/tmux/prompt.c
590
if (redraw != NULL)
usr.bin/tmux/prompt.c
591
*redraw = 1;
usr.bin/tmux/prompt.c
662
prompt_mouse(struct prompt *pr, u_int x, u_int ax, u_int aw, int *redraw)
usr.bin/tmux/prompt.c
686
pl.content_width, redraw);
usr.bin/tmux/prompt.c
709
if (redraw != NULL)
usr.bin/tmux/prompt.c
710
*redraw = 1;
usr.bin/tmux/prompt.c
785
int *redraw)
usr.bin/tmux/prompt.c
822
*redraw = 1;
usr.bin/tmux/prompt.c
839
*redraw = 1;
usr.bin/tmux/prompt.c
843
*redraw = 1;
usr.bin/tmux/prompt.c
848
*redraw = 1;
usr.bin/tmux/screen-redraw.c
1695
int redraw;
usr.bin/tmux/screen-redraw.c
1702
redraw = status_message_redraw(c);
usr.bin/tmux/screen-redraw.c
1704
redraw = status_prompt_redraw(c);
usr.bin/tmux/screen-redraw.c
1706
redraw = status_redraw(c);
usr.bin/tmux/screen-redraw.c
1707
if (!redraw && !REDRAW_IS_ALL(flags)) {
usr.bin/tmux/screen-redraw.c
1734
redraw = 0;
usr.bin/tmux/screen-redraw.c
1748
redraw = 1;
usr.bin/tmux/screen-redraw.c
1751
if (!redraw && !REDRAW_IS_ALL(flags)) {
usr.bin/tmux/screen-write.c
2571
int selected, skip = 1, redraw = 0;
usr.bin/tmux/screen-write.c
2617
redraw = 1;
usr.bin/tmux/screen-write.c
2702
if (redraw && wp != NULL) {
usr.bin/tmux/server-client.c
2536
c->redraw = EVBUFFER_LENGTH(tty->out);
usr.bin/tmux/server-client.c
2537
log_debug("%s: redraw added %zu bytes", c->name, c->redraw);
usr.bin/tmux/status.c
714
int redraw = 0;
usr.bin/tmux/status.c
722
result = prompt_mouse(c->prompt, m->x, ax, aw, &redraw);
usr.bin/tmux/status.c
724
result = prompt_key(c->prompt, key, &redraw);
usr.bin/tmux/status.c
725
if (redraw && c->prompt != NULL)
usr.bin/tmux/tty.c
255
if (c->redraw > 0) {
usr.bin/tmux/tty.c
256
if ((size_t)nwrite >= c->redraw)
usr.bin/tmux/tty.c
257
c->redraw = 0;
usr.bin/tmux/tty.c
259
c->redraw -= nwrite;
usr.bin/tmux/tty.c
261
c->redraw);
usr.bin/tmux/window-copy.c
6001
int redraw = 0;
usr.bin/tmux/window-copy.c
6008
redraw = PANE_REDRAW;
usr.bin/tmux/window-copy.c
6014
wp->flags |= redraw;
usr.bin/tmux/window-switch.c
519
int redraw = 0;
usr.bin/tmux/window-switch.c
529
screen_size_x(&data->screen), &redraw);
usr.bin/tmux/window-switch.c
530
if (redraw || result == PROMPT_KEY_HANDLED) {
usr.bin/tmux/window-switch.c
586
result = prompt_key(data->prompt, key, &redraw);
usr.bin/tmux/window-switch.c
587
if (redraw) {
usr.bin/tmux/window.c
1818
int redraw = 0;
usr.bin/tmux/window.c
1839
&redraw);
usr.bin/tmux/window.c
1844
result = prompt_key(prompt, key, &redraw);
usr.bin/tmux/window.c
1860
if (redraw || wp->prompt != prompt)
usr.bin/vi/vi/vs_msg.c
650
int redraw;
usr.bin/vi/vi/vs_msg.c
702
redraw = 0;
usr.bin/vi/vi/vs_msg.c
714
redraw = 0;
usr.bin/vi/vi/vs_msg.c
728
redraw = 1;
usr.bin/vi/vi/vs_msg.c
736
if (redraw)