/freebsd/sys/dev/syscons/ |
H A D | schistory.c | 94 sc_vtb_t *history; in sc_alloc_history_buffer() local 107 history = prev_history = scp->history; in sc_alloc_history_buffer() 108 scp->history = NULL; in sc_alloc_history_buffer() 113 cur_lines = sc_vtb_rows(history); in sc_alloc_history_buffer() 124 scp->history = prev_history; in sc_alloc_history_buffer() 130 history = (sc_vtb_t *)malloc(sizeof(*history), in sc_alloc_history_buffer() 133 if (history != NULL) { in sc_alloc_history_buffer() 137 sc_vtb_init(history, VTB_RINGBUFFER, scp->xsize, lines, in sc_alloc_history_buffer() 140 sc_vtb_clear(history, scp->sc->scr_map[0x20], in sc_alloc_history_buffer() 143 copy_history(prev_history, history); in sc_alloc_history_buffer() [all …]
|
/freebsd/contrib/libedit/TEST/ |
H A D | tc1.c | 143 history(hist, &ev, H_SETSIZE, 100); in main() 155 el_set(el, EL_HIST, history, hist); in main() 217 if (history(hist, &ev, H_SET, lastevent) == -1) in main() 219 history(hist, &ev, H_ADD , buf); in main() 221 history(hist, &ev, H_ENTER, buf); in main() 226 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf); in main() 249 for (rv = history(hist, &ev, H_LAST); rv != -1; in main() 250 rv = history(hist, &ev, H_PREV)) in main() 257 history(hist, &ev, H_CLEAR); in main() 264 history(hist, &ev, H_LOAD, av[2]); in main() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectSession.cpp | 142 const CommandHistory &history(m_interpreter.GetCommandHistory()); in DoExecute() local 146 start_idx.second = history.GetSize() - count.second; in DoExecute() 147 stop_idx.second = history.GetSize() - 1; in DoExecute() 150 stop_idx.second = history.GetSize() - 1; in DoExecute() 153 stop_idx.second = history.GetSize() - 1; in DoExecute() 158 stop_idx.second = history.GetSize() - 1; in DoExecute() 163 stop_idx.second = history.GetSize() - 1; in DoExecute() 178 history.Dump(result.GetOutputStream(), start_idx.second, in DoExecute()
|
/freebsd/contrib/libedit/ |
H A D | readline.c | 338 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */ in rl_initialize() 341 el_set(e, EL_HIST, history, h); in rl_initialize() 492 history(h, &ev, H_GETSIZE); in readline() 583 if (history(h, &ev, H_FIRST) != 0) in get_history_event() 640 if (history(h, &ev, H_CURR) != 0) { in get_history_event() 658 history(h, &ev, H_FIRST); in get_history_event() 673 if (history(h, &ev, H_CURR) != 0) in get_history_event() 679 (void)history(h, &ev, H_SET, num); in get_history_event() 1240 if (history(h, &ev, H_SETSIZE, max) == 0) { in stifle_history() 1263 history(h, &ev, H_SETSIZE, INT_MAX); in unstifle_history() [all …]
|
/freebsd/sys/netgraph/ |
H A D | ng_mppc.c | 146 u_char *history; /* compression history */ member 306 if (d->history != NULL) { in ng_mppc_rcvmsg() 307 free(d->history, M_NETGRAPH_MPPC); in ng_mppc_rcvmsg() 308 d->history = NULL; in ng_mppc_rcvmsg() 311 d->history = malloc(isComp ? in ng_mppc_rcvmsg() 315 if (d->history == NULL) in ng_mppc_rcvmsg() 318 MPPC_InitCompressionHistory(d->history); in ng_mppc_rcvmsg() 321 d->history); in ng_mppc_rcvmsg() 433 if (priv->xmit.history != NULL) in ng_mppc_shutdown() 434 free(priv->xmit.history, M_NETGRAPH_MPPC); in ng_mppc_shutdown() [all …]
|
/freebsd/sys/net/ |
H A D | mppc.h | 54 extern void MPPC_InitCompressionHistory(char *history); 55 extern void MPPC_InitDecompressionHistory(char *history); 57 extern int MPPC_Compress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history,… 58 …C_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int flags);
|
H A D | mppcc.c | 136 void MPPC_InitCompressionHistory(char *history) in MPPC_InitCompressionHistory() argument 138 struct MPPC_comp_state *state = (struct MPPC_comp_state*)history; in MPPC_InitCompressionHistory() 140 bzero(history, sizeof(struct MPPC_comp_state)); in MPPC_InitCompressionHistory() 144 int MPPC_Compress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int fl… in MPPC_Compress() argument 146 struct MPPC_comp_state *state = (struct MPPC_comp_state*)history; in MPPC_Compress() 288 bzero(history, sizeof(struct MPPC_comp_state)); in MPPC_Compress()
|
H A D | mppcd.c | 96 void MPPC_InitDecompressionHistory(char *history) in MPPC_InitDecompressionHistory() argument 98 struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; in MPPC_InitDecompressionHistory() 100 bzero(history, sizeof(struct MPPC_decomp_state)); in MPPC_InitDecompressionHistory() 104 int MPPC_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int … in MPPC_Decompress() argument 106 struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; in MPPC_Decompress()
|
/freebsd/bin/sh/ |
H A D | histedit.c | 119 if (history(hist, &he, H_SAVE_FP, f) < 1 || in histsave() 137 if (history(hist, &he, H_LOAD, histfile) != -1 || errno == ENOENT) in histload() 186 el_set(el, EL_HIST, history, hist); in histedit() 237 history(hist, &he, H_SETSIZE, histsize); in sethistsize() 238 history(hist, &he, H_SETUNIQUE, 1); in sethistsize() 400 history(hist, &he, H_FIRST); in histcmd() 401 retval = history(hist, &he, H_NEXT_EVENT, first); in histcmd() 402 for (;retval != -1; retval = history(hist, &he, direction)) { in histcmd() 423 history(hist, &he, H_ENTER, s); in histcmd() 429 history(hist, &he, in histcmd() [all …]
|
H A D | dot.shrc | 33 # # csh like history on arrow up and down 34 bind ^[[A ed-search-prev-history 35 bind ^[[B ed-search-next-history 40 alias history='fc -l'
|
/freebsd/share/skel/ |
H A D | dot.cshrc | 8 alias h history 25 29 set history = 1000 32 # Use history to aid expansion 38 bindkey -k up history-search-backward 39 bindkey -k down history-search-forward
|
H A D | dot.shrc | 33 # # csh like history on arrow up and down 34 bind ^[[A ed-search-prev-history 35 bind ^[[B ed-search-next-history 40 alias history='fc -l'
|
/freebsd/bin/csh/ |
H A D | dot.cshrc | 8 alias h history 25 32 set history = 1000 35 # Use history to aid expansion 41 bindkey -k up history-search-backward 42 bindkey -k down history-search-forward
|
/freebsd/tools/tools/nanobsd/pcengines/Files/root/ |
H A D | .cshrc | 7 alias h history 25 26 set history = 100 31 bindkey -k up history-search-backward 32 bindkey -k down history-search-forward
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | 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 [all …]
|
/freebsd/contrib/tcsh/nls/russian/ |
H A D | 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
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | 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
|
/freebsd/contrib/bc/src/ |
H A D | history.c | 204 history(h->hist, &bc_history_event, H_SETSIZE, 100); in bc_history_init() 205 history(h->hist, &bc_history_event, H_SETUNIQUE, 1); in bc_history_init() 207 el_set(h->el, EL_HIST, history, h->hist); in bc_history_init() 306 history(h->hist, &bc_history_event, H_ENTER, line); in bc_history_line() 1305 if (h->history.len <= 1) return; in bc_history_edit_next() 1312 bc_vec_replaceAt(&h->history, h->history.len - 1 - h->idx, &dup); in bc_history_edit_next() 1323 else if (h->idx >= h->history.len) in bc_history_edit_next() 1325 h->idx = h->history.len - 1; in bc_history_edit_next() 1330 str = *((char**) bc_vec_item(&h->history, h->history.len - 1 - h->idx)); in bc_history_edit_next() 1716 if (h->history.len) in bc_history_add() [all …]
|
/freebsd/contrib/libxo/xohtml/ |
H A D | xohtml.css | 12 #target-history .empty { 17 #command-history .empty { 268 div#target-history { 276 form#target-history-form { 280 input#target-history-submit { 285 div.target-history-name { 289 div.target-history-entry-parent:hover { 293 div.target-history-entry-parent:first-child { 297 div.target-history-entry-parent { 302 div.target-history-entry { [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/LineEditor/ |
H A D | LineEditor.cpp | 27 sys::path::append(Path, "." + ProgName + "-history"); in getDefaultHistoryPath() 211 ::el_set(Data->EL, EL_HIST, history, Data->Hist); in LineEditor() 224 ::history(Data->Hist, &HE, H_SETSIZE, 800); in LineEditor() 225 ::history(Data->Hist, &HE, H_SETUNIQUE, 1); in LineEditor() 240 ::history(Data->Hist, &HE, H_SAVE, HistoryPath.c_str()); in saveHistory() 247 ::history(Data->Hist, &HE, H_LOAD, HistoryPath.c_str()); in loadHistory() 267 ::history(Data->Hist, &HE, H_ENTER, Line); in readLine()
|
/freebsd/contrib/ntp/libntp/ |
H A D | ntp_lineedit.c | 108 history(ntp_hist, &hev, H_SETSIZE, 128); in ntp_readline_init() 110 el_set(ntp_el, EL_HIST, history, in ntp_readline_init() 191 history(ntp_hist, &hev, H_ENTER, cline); in ntp_readline()
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | ntp_lineeditlibs.m4 | 88 AC_CHECK_HEADERS([history.h readline/history.h]) 116 AC_MSG_CHECKING([whether readline supports history])
|
/freebsd/sys/conf/ |
H A D | std.debug | 5 options BUF_TRACKING # Track buffer history 7 options FULL_BUF_TRACKING # Track more buffer history
|
/freebsd/contrib/bc/manuals/ |
H A D | build.md | 49 supported: extra math and history enabled, NLS (locale support) disabled, with 397 When the library is built, history and locales are disabled, and the 445 To disable hisory, pass either the `-H` flag or the `--disable-history` option 450 ./configure.sh --disable-history 457 should be to retry with history disabled. 476 This is ignored if history is disabled. 480 `-i`/`--enable-internal-history` options. 497 This is ignored if history is disabled. 501 `-i`/`--enable-internal-history` options. 509 the internal history regardless of what the predefined build has. [all …]
|
/freebsd/tools/tools/nanobsd/rescue/Files/root/ |
H A D | .cshrc | 5 a h history 25 31 set history = 100
|