Symbol: window_panes
usr.bin/tmux/cmd-rotate-window.c
58
wp = TAILQ_LAST(&w->panes, window_panes);
usr.bin/tmux/cmd-rotate-window.c
80
if ((wp = TAILQ_PREV(w->active, window_panes, entry)) == NULL)
usr.bin/tmux/cmd-rotate-window.c
81
wp = TAILQ_LAST(&w->panes, window_panes);
usr.bin/tmux/cmd-rotate-window.c
90
TAILQ_FOREACH_REVERSE(wp, &w->panes, window_panes, entry) {
usr.bin/tmux/cmd-rotate-window.c
91
if ((wp2 = TAILQ_PREV(wp, window_panes, entry)) == NULL)
usr.bin/tmux/cmd-select-pane.c
171
lastwp = TAILQ_PREV(w->active, window_panes, entry);
usr.bin/tmux/cmd-swap-pane.c
106
src_wp = TAILQ_PREV(dst_wp, window_panes, entry);
usr.bin/tmux/cmd-swap-pane.c
109
src_wp = TAILQ_LAST(&dst_w->panes, window_panes);
usr.bin/tmux/cmd-swap-pane.c
123
tmp_wp = TAILQ_PREV(dst_wp, window_panes, entry);
usr.bin/tmux/cmd-swap-pane.c
133
tmp_wp = TAILQ_PREV(dst_wp, window_panes, zentry);
usr.bin/tmux/cmd-swap-pane.c
57
wp = TAILQ_PREV(wp, window_panes, entry);
usr.bin/tmux/screen-write.c
201
while ((wp = TAILQ_PREV(wp, window_panes, zentry)) != NULL) {
usr.bin/tmux/tmux.h
1388
TAILQ_HEAD(window_panes, window_pane);
usr.bin/tmux/tmux.h
1410
struct window_panes last_panes;
usr.bin/tmux/tmux.h
1411
struct window_panes z_index;
usr.bin/tmux/tmux.h
1412
struct window_panes panes;
usr.bin/tmux/window.c
1077
w->active = TAILQ_PREV(wp, window_panes, entry);
usr.bin/tmux/window.c
1139
if ((wp = TAILQ_PREV(wp, window_panes, entry)) == NULL)
usr.bin/tmux/window.c
1140
wp = TAILQ_LAST(&w->panes, window_panes);
usr.bin/tmux/window.c
2294
window_pane_stack_push(struct window_panes *stack, struct window_pane *wp)
usr.bin/tmux/window.c
2305
window_pane_stack_remove(struct window_panes *stack, struct window_pane *wp)