Symbol: status_prompt_hlist
usr.bin/tmux/cmd-show-prompt-history.c
107
status_prompt_hlist[type][hidx]);
usr.bin/tmux/cmd-show-prompt-history.c
65
free(status_prompt_hlist[tidx][hidx]);
usr.bin/tmux/cmd-show-prompt-history.c
66
free(status_prompt_hlist[tidx]);
usr.bin/tmux/cmd-show-prompt-history.c
67
status_prompt_hlist[tidx] = NULL;
usr.bin/tmux/cmd-show-prompt-history.c
77
free(status_prompt_hlist[type][hidx]);
usr.bin/tmux/cmd-show-prompt-history.c
78
free(status_prompt_hlist[type]);
usr.bin/tmux/cmd-show-prompt-history.c
79
status_prompt_hlist[type] = NULL;
usr.bin/tmux/cmd-show-prompt-history.c
93
status_prompt_hlist[tidx][hidx]);
usr.bin/tmux/status.c
170
fputs(status_prompt_hlist[type][i], f);
usr.bin/tmux/status.c
1709
return (status_prompt_hlist[type][status_prompt_hsize[type] - idx[type]]);
usr.bin/tmux/status.c
1721
return (status_prompt_hlist[type][status_prompt_hsize[type] - idx[type]]);
usr.bin/tmux/status.c
1733
strcmp(status_prompt_hlist[type][oldsize - 1], line) == 0)
usr.bin/tmux/status.c
1749
free(status_prompt_hlist[type][i]);
usr.bin/tmux/status.c
1751
sizeof *status_prompt_hlist[type];
usr.bin/tmux/status.c
1753
memmove(&status_prompt_hlist[type][0],
usr.bin/tmux/status.c
1754
&status_prompt_hlist[type][freecount], movesize);
usr.bin/tmux/status.c
1759
free(status_prompt_hlist[type]);
usr.bin/tmux/status.c
1760
status_prompt_hlist[type] = NULL;
usr.bin/tmux/status.c
1762
status_prompt_hlist[type] =
usr.bin/tmux/status.c
1763
xreallocarray(status_prompt_hlist[type], newsize,
usr.bin/tmux/status.c
1764
sizeof *status_prompt_hlist[type]);
usr.bin/tmux/status.c
1768
status_prompt_hlist[type][newsize - 1] = xstrdup(line);
usr.bin/tmux/status.c
60
char **status_prompt_hlist[PROMPT_NTYPES];