| /dragonfly/sys/dev/misc/syscons/ |
| HD | schistory.c | 80 sc_vtb_t *history; in sc_alloc_history_buffer() local 94 history = prev_history = scp->history; in sc_alloc_history_buffer() 95 scp->history = NULL; in sc_alloc_history_buffer() 100 cur_lines = sc_vtb_rows(history); in sc_alloc_history_buffer() 111 scp->history = prev_history; in sc_alloc_history_buffer() 118 history = kmalloc(sizeof(*history), M_SYSCONS, in sc_alloc_history_buffer() 120 if (history != NULL) { in sc_alloc_history_buffer() 124 sc_vtb_init(history, VTB_RINGBUFFER, scp->xsize, lines, in sc_alloc_history_buffer() 126 if (history->vtb_flags & VTB_VALID) { in sc_alloc_history_buffer() 128 sc_vtb_clear(history, scp->sc->scr_map[0x20], in sc_alloc_history_buffer() [all …]
|
| HD | scvidctl.c | 132 if (scp->history != NULL) { in sc_set_text_mode() 134 new_ysize = sc_vtb_rows(scp->history); in sc_set_text_mode() 373 if (scp->history != NULL) { in sc_set_pixel_mode() 375 new_ysize = sc_vtb_rows(scp->history); in sc_set_pixel_mode() 908 if (scp->history != NULL) { in sc_update_render() 914 new_ysize = sc_vtb_rows(scp->history); in sc_update_render() 948 if (scp->history != NULL) { in sc_update_render()
|
| /dragonfly/contrib/gdb-7/readline/doc/ |
| HD | hsuser.texi | 46 @pxref{Programming with GNU History, , , history, GNU History Library}. 52 history. 54 the command history. 67 @cindex command history 68 @cindex history list 70 When the @option{-o history} option to the @code{set} builtin 72 the shell provides access to the @dfn{command history}, 75 number of commands to save in a history list. 78 The shell stores each command in the history list prior to 80 but after history expansion is performed, subject to the [all …]
|
| HD | rluser.texi | 290 Readline provides commands for searching through the command history 300 the next entry from the history matching the string typed so far. 302 find the desired history entry. 303 To search backward in the history for a particular string, type 304 @kbd{C-r}. Typing @kbd{C-s} searches forward through the history. 310 When the search is terminated, the history entry containing the 313 To find other matching entries in the history list, type @kbd{C-r} or 315 This will search backward or forward in the history for the next 320 the line, thereby executing the command from the history list. 329 to search for matching history lines. The search string may be [all …]
|
| /dragonfly/bin/sh/ |
| HD | histedit.c | 121 el_set(el, EL_HIST, history, hist); in histedit() 171 history(hist, &he, H_SETSIZE, histsize); in sethistsize() 172 history(hist, &he, H_SETUNIQUE, 1); in sethistsize() 331 history(hist, &he, H_FIRST); in histcmd() 332 retval = history(hist, &he, H_NEXT_EVENT, first); in histcmd() 333 for (;retval != -1; retval = history(hist, &he, direction)) { in histcmd() 354 history(hist, &he, H_ENTER, s); in histcmd() 360 history(hist, &he, in histcmd() 432 retval = history(hist, &he, H_FIRST); in str_to_event() 444 retval = history(hist, &he, H_NEXT); in str_to_event() [all …]
|
| /dragonfly/contrib/libedit/src/ |
| HD | readline.c | 342 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */ in rl_initialize() 345 el_set(e, EL_HIST, history, h); in rl_initialize() 496 history(h, &ev, H_GETSIZE); in readline() 587 if (history(h, &ev, H_FIRST) != 0) in get_history_event() 644 if (history(h, &ev, H_CURR) != 0) { in get_history_event() 662 history(h, &ev, H_FIRST); in get_history_event() 677 if (history(h, &ev, H_CURR) != 0) in get_history_event() 683 (void)history(h, &ev, H_SET, num); in get_history_event() 1244 if (history(h, &ev, H_SETSIZE, max) == 0) { in stifle_history() 1267 history(h, &ev, H_SETSIZE, INT_MAX); in unstifle_history() [all …]
|
| HD | histedit.h | 189 typedef struct history History; 202 int history(History *, HistEvent *, int, ...);
|
| /dragonfly/sys/netgraph7/mppc/ |
| HD | ng_mppc.c | 131 u_char *history; /* compression history */ member 294 if (d->history != NULL) { in ng_mppc_rcvmsg() 295 kfree(d->history, M_NETGRAPH_MPPC); in ng_mppc_rcvmsg() 296 d->history = NULL; in ng_mppc_rcvmsg() 299 … d->history = kmalloc(isComp ? MPPC_SizeOfCompressionHistory() : MPPC_SizeOfDecompressionHistory(), in ng_mppc_rcvmsg() 302 if (d->history == NULL) in ng_mppc_rcvmsg() 305 MPPC_InitCompressionHistory(d->history); in ng_mppc_rcvmsg() 308 d->history); in ng_mppc_rcvmsg() 423 if (priv->xmit.history != NULL) in ng_mppc_shutdown() 424 kfree(priv->xmit.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown() [all …]
|
| /dragonfly/sys/netgraph/mppc/ |
| HD | ng_mppc.c | 117 u_char *history; /* compression history */ member 288 if (d->history != NULL) { in ng_mppc_rcvmsg() 289 kfree(d->history, M_NETGRAPH); in ng_mppc_rcvmsg() 290 d->history = NULL; in ng_mppc_rcvmsg() 293 … d->history = kmalloc(isComp ? MPPC_SizeOfCompressionHistory() : MPPC_SizeOfDecompressionHistory(), in ng_mppc_rcvmsg() 295 if (d->history == NULL) in ng_mppc_rcvmsg() 298 MPPC_InitCompressionHistory(d->history); in ng_mppc_rcvmsg() 301 d->history); in ng_mppc_rcvmsg() 420 if (priv->xmit.history != NULL) in ng_mppc_rmnode() 421 kfree(priv->xmit.history, M_NETGRAPH); in ng_mppc_rmnode() [all …]
|
| /dragonfly/share/skel/ |
| HD | dot.cshrc | 8 alias h history 25 30 set history = 1000 33 # Use history to aid expansion 39 bindkey -k up history-search-backward 40 bindkey -k down history-search-forward
|
| /dragonfly/contrib/tcsh-6/nls/russian/ |
| HD | set3 | 27 25 Move to next history line 33 31 Expand history escapes 34 32 Expand the history escapes in a line 39 37 Search in history backward for line beginning as current 40 38 Search in history forward for line beginning as current 53 51 Expand history escapes and insert a space 69 67 Toggle between literal and lexical current history line 81 79 Move to previous history line 107 105 Vi search history backward 108 106 Vi search history forward
|
| /dragonfly/contrib/tcsh-6/nls/ukrainian/ |
| HD | set3 | 27 25 Move to next history line 33 31 Expand history escapes 34 32 Expand the history escapes in a line 39 37 Search in history backward for line beginning as current 40 38 Search in history forward for line beginning as current 53 51 Expand history escapes and insert a space 69 67 Toggle between literal and lexical current history line 81 79 Move to previous history line 107 105 Vi search history backward 108 106 Vi search history forward
|
| /dragonfly/contrib/xz/src/liblzma/delta/ |
| HD | delta_encoder.c | 27 const uint8_t tmp = coder->history[ in copy_and_encode() 29 coder->history[coder->pos-- & 0xFF] = in[i]; in copy_and_encode() 43 const uint8_t tmp = coder->history[ in encode_in_place() 45 coder->history[coder->pos-- & 0xFF] = buffer[i]; in encode_in_place()
|
| HD | delta_decoder.c | 23 buffer[i] += coder->history[(distance + coder->pos) & 0xFF]; in decode_buffer() 24 coder->history[coder->pos-- & 0xFF] = buffer[i]; in decode_buffer()
|
| HD | delta_private.h | 29 uint8_t history[LZMA_DELTA_DIST_MAX]; member
|
| /dragonfly/usr.bin/dsynth/ |
| HD | progress.js | 23 var history = [[]]; variable 185 history [k] = []; 196 history [k].push (trow); 213 full_history = full_history.concat (history[k]);
|
| /dragonfly/usr.sbin/lpr/lpc/ |
| HD | lpc.c | 154 history(hist, &he, H_SETSIZE, 100); in cmdscanner() 155 el_set(el, EL_HIST, history, hist); in cmdscanner() 176 history(hist, &he, H_ENTER, bp); in cmdscanner()
|
| /dragonfly/usr.bin/units/ |
| HD | units.c | 745 el_set(el, EL_HIST, history, inhistory); in main() 747 history(inhistory, &ev, H_SETSIZE, 800); in main() 775 history(inhistory, &ev, H_ENTER, in main() 787 history(inhistory, &ev, H_ENTER, in main()
|
| /dragonfly/usr.sbin/pppctl/ |
| HD | pppctl.c | 408 history(hist, &he, H_SETSIZE, size); in main() 419 el_set(edit, EL_HIST, history, (const char *)hist); in main() 422 history(hist, &he, H_ENTER, l); in main()
|
| /dragonfly/usr.bin/calendar/calendars/ru_RU.UTF-8/ |
| HD | calendar.history | 4 * $OpenBSD: calendar.history,v 1.2 2015/10/23 19:56:10 zhuk Exp $
|
| HD | calendar.all | 14 #include <ru_RU.UTF-8/calendar.history>
|
| /dragonfly/lib/libedit/libedit/ |
| HD | Symbolm.map | 15 history;
|
| /dragonfly/share/zoneinfo/ |
| HD | README | 8 data that represent the history of local time for many representative 27 * Provide a compendium of data about the history of civil time that
|
| /dragonfly/usr.bin/calendar/calendars/ |
| HD | calendar.world | 15 #include <calendar.history>
|
| /dragonfly/contrib/less/ |
| HD | NEWS | 249 of history file (github #223). 251 * Don't read or write history file in secure mode (github #201). 264 * Fix bug scrolling history when --incsearch is set (github #214). 298 * If XDG_DATA_HOME is set, find and store history file 400 * Shell-escape filenames in history so they can be used again. 496 * Don't overwrite history file; just append to it. 500 * Disable history feature when compiled with LESSHISTFILE set to "-". 636 * Don't change permissions on history file if it is not a regular file. 717 * Make n command fetch previous pattern from history file on first search. 719 * Don't rewrite history file if it has not changed. [all …]
|