Home
last modified time | relevance | path

Searched refs:wl (Results 1 – 25 of 354) sorted by relevance

12345678910>>...15

/netbsd-src/sys/kern/
H A Dvfs_wapbl.c119 struct mount *wl_mount; /* r: mountpoint wl is associated with */
242 #define WAPBL_USE_FUA(wl) \
243 (wapbl_allow_dpofua && ISSET((wl)->wl_dkcache, DKCACHE_FUA))
244 #define WAPBL_JFLAGS(wl) \
245 (WAPBL_USE_FUA(wl) ? (wl)->wl_jwrite_flags : 0)
246 #define WAPBL_JDATA_FLAGS(wl) \
247 (WAPBL_JFLAGS(wl) & B_MEDIA_DPO) /* only DPO */
286 static void wapbl_inodetrk_init(struct wapbl *wl, u_int size);
287 static void wapbl_inodetrk_free(struct wapbl *wl);
237 WAPBL_USE_FUA(wl) global() argument
239 WAPBL_JFLAGS(wl) global() argument
241 WAPBL_JDATA_FLAGS(wl) global() argument
394 wapbl_evcnt_init(struct wapbl * wl) wapbl_evcnt_init() argument
415 wapbl_evcnt_free(struct wapbl * wl) wapbl_evcnt_free() argument
425 wapbl_dkcache_init(struct wapbl * wl) wapbl_dkcache_init() argument
447 wapbl_start_flush_inodes(struct wapbl * wl,struct wapbl_replay * wr) wapbl_start_flush_inodes() argument
498 struct wapbl *wl; wapbl_start() local
697 wapbl_discard(struct wapbl * wl) wapbl_discard() argument
834 wapbl_stop(struct wapbl * wl,int force) wapbl_stop() argument
988 wapbl_buffered_write_async(struct wapbl * wl,struct buf * bp) wapbl_buffered_write_async() argument
1014 wapbl_buffered_flush(struct wapbl * wl,bool full) wapbl_buffered_flush() argument
1064 wapbl_buffered_write(void * data,size_t len,struct wapbl * wl,daddr_t pbn,int bflags) wapbl_buffered_write() argument
1146 wapbl_circ_write(struct wapbl * wl,void * data,size_t len,off_t * offp) wapbl_circ_write() argument
1193 wapbl_begin(struct wapbl * wl,const char * file,int line) wapbl_begin() argument
1249 wapbl_end(struct wapbl * wl) wapbl_end() argument
1278 wapbl_add_buf(struct wapbl * wl,struct buf * bp) wapbl_add_buf() argument
1323 wapbl_remove_buf_locked(struct wapbl * wl,struct buf * bp) wapbl_remove_buf_locked() argument
1361 wapbl_remove_buf(struct wapbl * wl,struct buf * bp) wapbl_remove_buf() argument
1370 wapbl_resize_buf(struct wapbl * wl,struct buf * bp,long oldsz,long oldcnt) wapbl_resize_buf() argument
1521 wapbl_truncate(struct wapbl * wl,size_t minfree) wapbl_truncate() argument
1612 struct wapbl *wl; wapbl_biodone() local
1751 wapbl_flush(struct wapbl * wl,int waitfor) wapbl_flush() argument
2024 wapbl_jlock_assert(struct wapbl * wl) wapbl_jlock_assert() argument
2031 wapbl_junlock_assert(struct wapbl * wl) wapbl_junlock_assert() argument
2041 wapbl_print(struct wapbl * wl,int full,void (* pr)(const char *,...)) wapbl_print() argument
2162 wapbl_dump(struct wapbl * wl) wapbl_dump() argument
2177 wapbl_register_deallocation(struct wapbl * wl,daddr_t blk,int len,bool force,void ** cookiep) wapbl_register_deallocation() argument
2231 wapbl_deallocation_free(struct wapbl * wl,struct wapbl_dealloc * wd,bool locked) wapbl_deallocation_free() argument
2250 wapbl_unregister_deallocation(struct wapbl * wl,void * cookie) wapbl_unregister_deallocation() argument
2259 wapbl_inodetrk_init(struct wapbl * wl,u_int size) wapbl_inodetrk_init() argument
2270 wapbl_inodetrk_free(struct wapbl * wl) wapbl_inodetrk_free() argument
2284 wapbl_inodetrk_get(struct wapbl * wl,ino_t ino) wapbl_inodetrk_get() argument
2300 wapbl_register_inode(struct wapbl * wl,ino_t ino,mode_t mode) wapbl_register_inode() argument
2324 wapbl_unregister_inode(struct wapbl * wl,ino_t ino,mode_t mode) wapbl_unregister_inode() argument
2353 wapbl_transaction_inodes_len(struct wapbl * wl) wapbl_transaction_inodes_len() argument
2374 wapbl_transaction_len(struct wapbl * wl) wapbl_transaction_len() argument
2397 wapbl_cache_sync(struct wapbl * wl,const char * msg) wapbl_cache_sync() argument
2453 wapbl_write_commit(struct wapbl * wl,off_t head,off_t tail) wapbl_write_commit() argument
2541 wapbl_write_blocks(struct wapbl * wl,off_t * offp) wapbl_write_blocks() argument
2635 wapbl_write_revocations(struct wapbl * wl,off_t * offp) wapbl_write_revocations() argument
2691 wapbl_write_inodes(struct wapbl * wl,off_t * offp) wapbl_write_inodes() argument
[all...]
/netbsd-src/external/bsd/tmux/dist/
H A Dalerts.c71 alerts_action_applies(struct winlink *wl, const char *name) in alerts_action_applies() argument
81 action = options_get_number(wl->session->options, name); in alerts_action_applies()
85 return (wl == wl->session->curw); in alerts_action_applies()
87 return (wl != wl->session->curw); in alerts_action_applies()
105 struct winlink *wl; in alerts_check_session() local
107 RB_FOREACH(wl, winlinks, &s->windows) in alerts_check_session()
108 alerts_check_all(wl->window); in alerts_check_session()
185 struct winlink *wl; in alerts_check_bell() local
193 TAILQ_FOREACH(wl, &w->winlinks, wentry) in alerts_check_bell()
194 wl->session->flags &= ~SESSION_ALERTED; in alerts_check_bell()
[all …]
H A Dsession.c203 struct winlink *wl; in session_destroy() local
225 wl = RB_ROOT(&s->windows); in session_destroy()
226 notify_session_window("window-unlinked", s, wl->window); in session_destroy()
227 winlink_remove(&s->windows, wl); in session_destroy()
338 struct winlink *wl; in session_attach() local
340 if ((wl = winlink_add(&s->windows, idx)) == NULL) { in session_attach()
344 wl->session = s; in session_attach()
345 winlink_set_window(wl, w); in session_attach()
349 return (wl); in session_attach()
354 session_detach(struct session *s, struct winlink *wl) in session_detach() argument
[all …]
H A Dcmd-find.c211 struct winlink *wl, *wl_loop; in cmd_find_best_winlink_with_window() local
215 wl = NULL; in cmd_find_best_winlink_with_window()
217 wl = fs->s->curw; in cmd_find_best_winlink_with_window()
221 wl = wl_loop; in cmd_find_best_winlink_with_window()
226 if (wl == NULL) in cmd_find_best_winlink_with_window()
228 fs->wl = wl; in cmd_find_best_winlink_with_window()
229 fs->idx = fs->wl->idx; in cmd_find_best_winlink_with_window()
333 fs->wl = fs->s->curw; in cmd_find_get_window()
334 fs->w = fs->wl->window; in cmd_find_get_window()
336 fs->idx = fs->wl->idx; in cmd_find_get_window()
[all …]
H A Dcmd-kill-window.c60 struct winlink *wl = target->wl, *loop; in cmd_kill_window_exec() local
61 struct window *w = wl->window; in cmd_kill_window_exec()
70 server_unlink_window(s, wl); in cmd_kill_window_exec()
76 if (RB_PREV(winlinks, &s->windows, wl) == NULL && in cmd_kill_window_exec()
77 RB_NEXT(winlinks, &s->windows, wl) == NULL) in cmd_kill_window_exec()
84 if (loop->window != wl->window) { in cmd_kill_window_exec()
98 if (loop->window == wl->window) in cmd_kill_window_exec()
102 server_kill_window(wl->window, 0); in cmd_kill_window_exec()
108 server_kill_window(wl->window, 1); in cmd_kill_window_exec()
H A Dwindow-tree.c297 window_tree_build_pane(struct session *s, struct winlink *wl, in window_tree_build_pane() argument
310 item->winlink = wl->idx; in window_tree_build_pane()
313 text = format_single(NULL, data->format, NULL, s, wl, wp); in window_tree_build_pane()
322 window_tree_filter_pane(struct session *s, struct winlink *wl, in window_tree_filter_pane() argument
331 cp = format_single(NULL, filter, NULL, s, wl, wp); in window_tree_filter_pane()
339 window_tree_build_window(struct session *s, struct winlink *wl, in window_tree_build_window() argument
354 item->winlink = wl->idx; in window_tree_build_window()
357 text = format_single(NULL, data->format, NULL, s, wl, NULL); in window_tree_build_window()
358 xasprintf(&name, "%u", wl->idx); in window_tree_build_window()
365 mti = mode_tree_add(data->data, parent, item, (uintptr_t)wl, name, text, in window_tree_build_window()
[all …]
H A Dspawn.c55 struct winlink *wl = sc->wl; in spawn_log() local
62 if (wl != NULL && wp0 != NULL) in spawn_log()
63 xsnprintf(tmp, sizeof tmp, "wl=%d wp0=%%%u", wl->idx, wp0->id); in spawn_log()
64 else if (wl != NULL) in spawn_log()
65 xsnprintf(tmp, sizeof tmp, "wl=%d wp0=none", wl->idx); in spawn_log()
82 struct winlink *wl; in spawn_window() local
93 w = sc->wl->window; in spawn_window()
101 s->name, sc->wl->idx); in spawn_window()
125 wl = winlink_find_by_index(&s->windows, idx); in spawn_window()
126 if (wl != NULL && (~sc->flags & SPAWN_KILL)) { in spawn_window()
[all …]
H A Dcmd-list-panes.c56 struct winlink *wl = target->wl; in cmd_list_panes_exec() local
63 cmd_list_panes_window(self, s, wl, item, 0); in cmd_list_panes_exec()
81 struct winlink *wl; in cmd_list_panes_session() local
83 RB_FOREACH(wl, winlinks, &s->windows) in cmd_list_panes_session()
84 cmd_list_panes_window(self, s, wl, item, type); in cmd_list_panes_session()
88 cmd_list_panes_window(struct cmd *self, struct session *s, struct winlink *wl, in cmd_list_panes_window() argument
128 TAILQ_FOREACH(wp, &wl->window->panes, entry) { in cmd_list_panes_window()
131 format_defaults(ft, NULL, s, wl, wp); in cmd_list_panes_window()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ripemd/asm/
H A Drmd-586.pl41 @wl=( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,
359 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
360 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
361 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
362 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
363 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
364 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
365 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
366 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
367 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ripemd/asm/
H A Drmd-586.pl42 @wl=( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,
360 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
361 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
362 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
363 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
364 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
365 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
366 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
367 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
368 &RIP1($C,$D,$E,$A,$B,$wl[ 8],$sl[ 8],0);
[all …]
/netbsd-src/external/bsd/libbind/dist/isc/
H A Dev_waits.c58 evWaitList *wl = evGetWaitList(ctx, tag, 1); in evWaitFor() local
65 if (wl->last != NULL) in evWaitFor()
66 wl->last->next = new; in evWaitFor()
68 wl->first = new; in evWaitFor()
69 wl->last = new; in evWaitFor()
83 evWaitList *wl = evGetWaitList(ctx, tag, 0); in evDo() local
86 if (!wl) { in evDo()
91 first = wl->first; in evDo()
98 ctx->waitDone.last = wl->last; in evDo()
99 evFreeWaitList(ctx, wl); in evDo()
[all …]
/netbsd-src/external/gpl3/gdb/dist/readline/readline/support/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
66 wl='-Wl,'
71 wl='-Wl,'
74 wl='-Wl,'
77 wl='-Wl,'
80 wl='-Wl,-Wl,,'
83 wl='-Wl,'
[all …]
/netbsd-src/external/gpl3/gdb.old/dist/readline/readline/support/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
66 wl='-Wl,'
71 wl='-Wl,'
74 wl='-Wl,'
77 wl='-Wl,'
80 wl='-Wl,-Wl,,'
83 wl='-Wl,'
[all …]
/netbsd-src/external/public-domain/xz/dist/build-aux/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
66 wl='-Wl,'
71 wl='-Wl,'
74 wl='-Wl,'
77 wl='-Wl,'
80 wl='-Wl,-Wl,,'
83 wl='-Wl,'
[all …]
/netbsd-src/lib/libcurses/
H A Ddelwin.c54 struct __winlist *wl, *pwl; in delwin() local
84 for (wl = screen->winlistp; wl; pwl = wl, wl = wl->nextp) { in delwin()
85 if (wl->winp != win) in delwin()
88 pwl->nextp = wl->nextp; in delwin()
90 screen->winlistp = wl->nextp; in delwin()
91 free(wl); in delwin()
/netbsd-src/external/bsd/flex/dist/build-aux/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
70 wl='-Wl,'
73 wl='-Wl,'
80 wl='-Wl,'
83 wl='-Wl,'
86 wl='-Wl,'
89 wl='-Wl,'
[all …]
/netbsd-src/crypto/external/cpl/tpm-tools/dist/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
70 wl='-Wl,'
73 wl='-Wl,'
80 wl='-Wl,'
83 wl='-Wl,'
86 wl='-Wl,'
89 wl='-lopt='
[all …]
/netbsd-src/external/gpl2/gettext/dist/build-aux/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
70 wl='-Wl,'
73 wl='-Wl,'
80 wl='-Wl,'
83 wl='-Wl,'
86 wl='-Wl,'
89 wl='-lopt='
[all …]
/netbsd-src/external/gpl2/gettext/dist/autoconf-lib-link/
H A Dconfig.rpath52 wl=
54 wl='-Wl,'
58 wl='-Wl,'
63 wl='-Wl,'
70 wl='-Wl,'
73 wl='-Wl,'
80 wl='-Wl,'
83 wl='-Wl,'
86 wl='-Wl,'
89 wl='-lopt='
[all …]
H A Dconfigure7805 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
8064 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enabl…
8073 …/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-…
8082 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
8083 export_dynamic_flag_spec='${wl}-E'
8090 …archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image…
8091 …ag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$so…
8099wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
8103wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
8114wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_con…
[all …]
/netbsd-src/external/gpl2/xcvs/dist/build-aux/
H A Dconfig.rpath42 wl=
44 wl='-Wl,'
48 wl='-Wl,'
53 wl='-Wl,'
60 wl='-Wl,'
63 wl='-Wl,'
70 wl='-Wl,'
73 wl='-Wl,'
76 wl='-Wl,'
79 wl='-lopt='
[all …]
/netbsd-src/external/gpl2/gettext/dist/autoconf-lib-link/tests/rpathy/
H A Dconfigure7355 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
7614 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enabl…
7623 …/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-…
7632 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
7633 export_dynamic_flag_spec='${wl}-E'
7640 …archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image…
7641 …ag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$so…
7649wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
7653wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
7664wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_con…
[all …]
/netbsd-src/external/gpl2/gettext/dist/autoconf-lib-link/tests/rpathz/
H A Dconfigure7359 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
7618 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enabl…
7627 …/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-…
7636 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
7637 export_dynamic_flag_spec='${wl}-E'
7644 …archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image…
7645 …ag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$so…
7653wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
7657wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
7668wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_con…
[all …]
/netbsd-src/external/gpl2/gettext/dist/autoconf-lib-link/tests/rpathx/
H A Dconfigure7349 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
7608 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enabl…
7617 …/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-…
7626 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
7627 export_dynamic_flag_spec='${wl}-E'
7634 …archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image…
7635 …ag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$so…
7643wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
7647wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
7658wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_con…
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/
H A Dconfigure9153 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
9503 …archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enabl…
9512 …/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-…
9519 archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
9526 hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
9527 export_dynamic_flag_spec='${wl}-E'
9534 …archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image…
9535 …ag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$so…
9552wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
9557wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_c…
[all …]

12345678910>>...15