Searched refs:wl (Results 1 - 25 of 193) sorted by relevance

12345678

/netbsd-6-1-5-RELEASE/sys/kern/
H A Dvfs_wapbl.c111 struct mount *wl_mount; /* r: mountpoint wl is associated with */
204 static int wapbl_write_commit(struct wapbl *wl, off_t head, off_t tail);
205 static int wapbl_write_blocks(struct wapbl *wl, off_t *offp);
206 static int wapbl_write_revocations(struct wapbl *wl, off_t *offp);
207 static int wapbl_write_inodes(struct wapbl *wl, off_t *offp);
230 static void wapbl_inodetrk_init(struct wapbl *wl, u_int size);
231 static void wapbl_inodetrk_free(struct wapbl *wl);
232 static struct wapbl_ino *wapbl_inodetrk_get(struct wapbl *wl, ino_t ino);
234 static size_t wapbl_transaction_len(struct wapbl *wl);
235 static inline size_t wapbl_transaction_inodes_len(struct wapbl *wl);
333 wapbl_start_flush_inodes(struct wapbl *wl, struct wapbl_replay *wr) argument
384 struct wapbl *wl; local
560 wapbl_discard(struct wapbl *wl) argument
688 wapbl_stop(struct wapbl *wl, int force) argument
806 wapbl_buffered_flush(struct wapbl *wl) argument
825 wapbl_buffered_write(void *data, size_t len, struct wapbl *wl, daddr_t pbn) argument
882 wapbl_circ_write(struct wapbl *wl, void *data, size_t len, off_t *offp) argument
924 wapbl_begin(struct wapbl *wl, const char *file, int line) argument
980 wapbl_end(struct wapbl *wl) argument
1012 wapbl_add_buf(struct wapbl *wl, struct buf * bp) argument
1057 wapbl_remove_buf_locked(struct wapbl * wl, struct buf *bp) argument
1095 wapbl_remove_buf(struct wapbl * wl, struct buf *bp) argument
1104 wapbl_resize_buf(struct wapbl *wl, struct buf *bp, long oldsz, long oldcnt) argument
1216 wapbl_truncate(struct wapbl *wl, size_t minfree, int waitonly) argument
1310 struct wapbl *wl = we->we_wapbl; local
1448 wapbl_flush(struct wapbl *wl, int waitfor) argument
1722 wapbl_jlock_assert(struct wapbl *wl) argument
1729 wapbl_junlock_assert(struct wapbl *wl) argument
1739 wapbl_print(struct wapbl *wl, int full, void (*pr)(const char *, ...)) argument
1836 wapbl_dump(struct wapbl *wl) argument
1851 wapbl_register_deallocation(struct wapbl *wl, daddr_t blk, int len) argument
1877 wapbl_inodetrk_init(struct wapbl *wl, u_int size) argument
1888 wapbl_inodetrk_free(struct wapbl *wl) argument
1900 wapbl_inodetrk_get(struct wapbl *wl, ino_t ino) argument
1916 wapbl_register_inode(struct wapbl *wl, ino_t ino, mode_t mode) argument
1940 wapbl_unregister_inode(struct wapbl *wl, ino_t ino, mode_t mode) argument
1963 wapbl_transaction_inodes_len(struct wapbl *wl) argument
1980 wapbl_transaction_len(struct wapbl *wl) argument
2004 wapbl_cache_sync(struct wapbl *wl, const char *msg) argument
2047 wapbl_write_commit(struct wapbl *wl, off_t head, off_t tail) argument
2121 wapbl_write_blocks(struct wapbl *wl, off_t *offp) argument
2210 wapbl_write_revocations(struct wapbl *wl, off_t *offp) argument
2251 wapbl_write_inodes(struct wapbl *wl, off_t *offp) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcmd-rename-window.c46 struct winlink *wl; local
48 if ((wl = cmd_find_window(ctx, args_get(args, 't'), &s)) == NULL)
51 xfree(wl->window->name);
52 wl->window->name = xstrdup(args->argv[0]);
53 options_set_number(&wl->window->options, "automatic-rename", 0);
55 server_status_window(wl->window);
H A Dcmd-list-windows.c74 struct winlink *wl; local
77 RB_FOREACH(wl, winlinks, &s->windows) {
78 layout = layout_dump(wl->window);
81 s->name, wl->idx, wl->window->name, wl->window->sx,
82 wl->window->sy, layout,
83 wl == s->curw ? " (active)" : "");
86 wl->idx, wl
[all...]
H A Dcmd-kill-pane.c45 struct winlink *wl; local
48 if ((wl = cmd_find_pane(ctx, args_get(args, 't'), NULL, &wp)) == NULL)
51 if (window_count_panes(wl->window) == 1) {
53 server_kill_window(wl->window);
59 loopwp = TAILQ_FIRST(&wl->window->panes);
64 window_remove_pane(wl->window, loopwp);
70 window_remove_pane(wl->window, wp);
72 server_redraw_window(wl->window);
H A Dcmd-new-window.c46 struct winlink *wl; local
51 wl = cmd_find_window(ctx, args_get(args, 't'), &s);
52 if (wl == NULL)
54 idx = wl->idx + 1;
68 wl = winlink_find_by_index(&s->windows, last - 1);
69 server_link_window(s, wl, s, last, 0, 0, NULL);
70 server_unlink_window(s, wl);
78 wl = NULL;
80 wl = winlink_find_by_index(&s->windows, idx);
81 if (wl !
[all...]
H A Dcmd-kill-window.c43 struct winlink *wl; local
45 if ((wl = cmd_find_window(ctx, args_get(args, 't'), NULL)) == NULL)
48 server_kill_window(wl->window);
H A Dcmd-select-pane.c70 struct winlink *wl; local
74 wl = cmd_find_window(ctx, args_get(args, 't'), NULL);
75 if (wl == NULL)
78 if (wl->window->last == NULL) {
83 window_set_active_pane(wl->window, wl->window->last);
84 server_status_window(wl->window);
85 server_redraw_window_borders(wl->window);
90 if ((wl = cmd_find_pane(ctx, args_get(args, 't'), NULL, &wp)) == NULL)
111 window_set_active_pane(wl
[all...]
H A Dsession.c221 struct winlink *wl; local
226 if ((wl = winlink_add(&s->windows, idx)) == NULL) {
244 winlink_remove(&s->windows, wl);
248 winlink_set_window(wl, w);
255 return (wl);
262 struct winlink *wl; local
264 if ((wl = winlink_add(&s->windows, idx)) == NULL) {
268 winlink_set_window(wl, w);
271 return (wl);
276 session_detach(struct session *s, struct winlink *wl) argument
297 struct winlink *wl; local
307 session_next_alert(struct winlink *wl) argument
321 struct winlink *wl; local
344 session_previous_alert(struct winlink *wl) argument
358 struct winlink *wl; local
384 struct winlink *wl; local
402 struct winlink *wl; local
529 struct winlink *wl, *wl2; local
[all...]
H A Dserver-window.c38 struct winlink *wl; local
49 wl = session_has(s, w);
50 if (wl == NULL)
53 if (server_window_check_bell(s, wl) ||
54 server_window_check_activity(s, wl) ||
55 server_window_check_silence(s, wl))
58 server_window_check_content(s, wl, wp);
66 server_window_check_bell(struct session *s, struct winlink *wl) argument
69 struct window *w = wl->window;
73 if (!(w->flags & WINDOW_BELL) || wl
124 server_window_check_activity(struct session *s, struct winlink *wl) argument
157 server_window_check_silence(struct session *s, struct winlink *wl) argument
209 server_window_check_content( struct session *s, struct winlink *wl, struct window_pane *wp) argument
[all...]
H A Dcmd-move-window.c46 struct winlink *wl; local
50 if ((wl = cmd_find_window(ctx, args_get(args, 's'), &src)) == NULL)
57 if (server_link_window(src, wl, dst, idx, kflag, !dflag, &cause) != 0) {
62 server_unlink_window(src, wl);
H A Dcmd-unlink-window.c43 struct winlink *wl; local
49 if ((wl = cmd_find_window(ctx, args_get(args, 't'), &s)) == NULL)
51 w = wl->window;
66 server_unlink_window(s, wl);
H A Dcmd-list-panes.c51 struct winlink *wl; local
61 wl = cmd_find_window(ctx, args_get(args, 't'), &s);
62 if (wl == NULL)
64 cmd_list_panes_window(s, wl, ctx, 0);
82 struct winlink *wl; local
84 RB_FOREACH(wl, winlinks, &s->windows)
85 cmd_list_panes_window(s, wl, ctx, type);
90 struct session *s, struct winlink *wl, struct cmd_ctx *ctx, int type)
99 TAILQ_FOREACH(wp, &wl->window->panes, entry) {
121 "%%%u%s%s", wl
89 cmd_list_panes_window( struct session *s, struct winlink *wl, struct cmd_ctx *ctx, int type) argument
[all...]
H A Dcmd-select-layout.c89 struct winlink *wl; local
93 if ((wl = cmd_find_window(ctx, args_get(args, 't'), NULL)) == NULL)
105 layout = layout_set_next(wl->window);
107 layout = layout_set_previous(wl->window);
113 layout = wl->window->lastlayout;
117 layout = layout_set_select(wl->window, layout);
124 if (layout_parse(wl->window, layoutname) == -1) {
H A Dcmd-display-message.c47 struct winlink *wl; local
56 wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp);
57 if (wl == NULL)
61 wl = NULL;
70 msg = status_replace(c, s, wl, wp, template, time(NULL), 0);
H A Dcmd-link-window.c46 struct winlink *wl; local
50 if ((wl = cmd_find_window(ctx, args_get(args, 's'), &src)) == NULL)
57 if (server_link_window(src, wl, dst, idx, kflag, !dflag, &cause) != 0) {
H A Dcmd-break-pane.c45 struct winlink *wl; local
52 if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)
55 if (window_count_panes(wl->window) == 1) {
60 w = wl->window;
81 wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */
83 session_select(s, wl->idx);
H A Dcmd-respawn-pane.c46 struct winlink *wl; local
54 if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)
56 w = wl->window;
60 s->name, wl->idx, window_pane_index(w, wp));
H A Dcmd-show-options.c58 struct winlink *wl; local
72 wl = cmd_find_window(ctx, args_get(args, 't'), NULL);
73 if (wl == NULL)
75 oo = &wl->window->options;
H A Dcmd.c325 struct winlink *wl; local
341 RB_FOREACH(wl, winlinks, &s->windows) {
342 TAILQ_FOREACH(wp, &wl->window->panes, entry) {
583 struct winlink *wl, *wlfound; local
592 if ((wl = winlink_find_by_index(&s->windows, idx)) != NULL)
593 return (wl);
598 RB_FOREACH(wl, winlinks, &s->windows) {
599 if (strcmp(name, wl->window->name) == 0) {
604 wlfound = wl;
612 RB_FOREACH(wl, winlink
635 struct winlink *wl; local
677 struct winlink *wl; local
758 struct winlink *wl; local
879 struct winlink *wl; local
906 struct winlink *wl; local
1062 struct winlink *wl; local
1157 cmd_find_pane_offset(const char *paneptr, struct winlink *wl) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Ddelwin.c54 struct __winlist *wl, *pwl; local
82 for (wl = screen->winlistp; wl; pwl = wl, wl = wl->nextp) {
83 if (wl->winp != win)
86 pwl->nextp = wl->nextp;
88 screen->winlistp = wl->nextp;
89 free(wl);
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/isc/
H A Dev_waits.c58 evWaitList *wl = evGetWaitList(ctx, tag, 1); local
65 if (wl->last != NULL)
66 wl->last->next = new;
68 wl->first = new;
69 wl->last = new;
83 evWaitList *wl = evGetWaitList(ctx, tag, 0); local
86 if (!wl) {
91 first = wl->first;
98 ctx->waitDone.last = wl->last;
99 evFreeWaitList(ctx, wl);
111 evWaitList *wl; local
189 evWaitList *wl; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ripemd/asm/
H A Drmd-586.pl32 @wl=( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15,
349 &RIP1($A,$B,$C,$D,$E,$wl[ 0],$sl[ 0],-1);
350 &RIP1($E,$A,$B,$C,$D,$wl[ 1],$sl[ 1],0);
351 &RIP1($D,$E,$A,$B,$C,$wl[ 2],$sl[ 2],0);
352 &RIP1($C,$D,$E,$A,$B,$wl[ 3],$sl[ 3],0);
353 &RIP1($B,$C,$D,$E,$A,$wl[ 4],$sl[ 4],0);
354 &RIP1($A,$B,$C,$D,$E,$wl[ 5],$sl[ 5],0);
355 &RIP1($E,$A,$B,$C,$D,$wl[ 6],$sl[ 6],0);
356 &RIP1($D,$E,$A,$B,$C,$wl[ 7],$sl[ 7],0);
357 &RIP1($C,$D,$E,$A,$B,$wl[
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/lns/
H A Dlns-duplicate.d1 #readelf: -wl
/netbsd-6-1-5-RELEASE/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
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/
H A Dltcf-cxx.sh81 archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
82 archive_expsym_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
84 hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
85 export_dynamic_flag_spec='${wl}--export-dynamic'
90 wlarc='${wl}'
[all...]

Completed in 89 milliseconds

12345678