Home
last modified time | relevance | path

Searched refs:dst_s (Results 1 – 3 of 3) sorted by relevance

/openbsd/src/usr.bin/tmux/
Dcmd-break-pane.c58 struct session *dst_s = target->s; in cmd_break_pane_exec() local
68 idx = winlink_shuffle_up(dst_s, target->wl, before); in cmd_break_pane_exec()
70 idx = winlink_shuffle_up(dst_s, dst_s->curw, before); in cmd_break_pane_exec()
77 if (server_link_window(src_s, wl, dst_s, idx, 0, in cmd_break_pane_exec()
90 if (idx != -1 && winlink_find_by_index(&dst_s->windows, idx) != NULL) { in cmd_break_pane_exec()
121 idx = -1 - options_get_number(dst_s->options, "base-index"); in cmd_break_pane_exec()
122 wl = session_attach(dst_s, w, idx, &cause); /* can't fail */ in cmd_break_pane_exec()
124 session_select(dst_s, wl->idx); in cmd_break_pane_exec()
125 cmd_find_from_session(current, dst_s, 0); in cmd_break_pane_exec()
129 if (src_s != dst_s) in cmd_break_pane_exec()
[all …]
Dcmd-join-pane.c70 struct session *dst_s; in cmd_join_pane_exec() local
81 dst_s = target->s; in cmd_join_pane_exec()
168 session_select(dst_s, dst_idx); in cmd_join_pane_exec()
169 cmd_find_from_session(current, dst_s, 0); in cmd_join_pane_exec()
170 server_redraw_session(dst_s); in cmd_join_pane_exec()
172 server_status_session(dst_s); in cmd_join_pane_exec()
/openbsd/src/gnu/llvm/compiler-rt/lib/msan/
Dmsan_poisoning.cpp35 uptr dst_s = MEM_TO_SHADOW(addr); in SetOriginIfPoisoned() local
39 for (; src_s < src_s_end; ++dst_s, ++src_s) in SetOriginIfPoisoned()
40 if (*(u8 *)src_s) *(u32 *)SHADOW_TO_ORIGIN(dst_s & ~3UL) = src_origin; in SetOriginIfPoisoned()