| /src/bin/sh/ |
| myhistedit.h | 36 extern History *hist;
|
| histedit.c | 54 * Editline and history functions (and glue). 78 History *hist; /* history cookie */ 102 * Set history and editing status. Called whenever the status may 118 * turn history on 128 out2str("sh: can't initialize history\n"); 175 el_set(el, EL_HIST, history, hist); 219 VTRACE(DBG_HISTORY, ("line editing & history disabled\n")); 274 history(hist, &he, H_SETSIZE, histsize + 1); 275 history(hist, &he, H_SETUNIQUE, 1) [all...] |
| /src/usr.bin/mail/ |
| complete.h | 40 History *hist; /* editline(3) history structure */ 60 #define ENAME_EL_HISTORY_SIZE "el-history-size"
|
| /src/lib/libedit/ |
| history.c | 1 /* $NetBSD: history.c,v 1.64 2024/07/11 05:41:24 kre Exp $ */ 38 static char sccsid[] = "@(#)history.c 8.1 (Berkeley) 6/4/93"; 40 __RCSID("$NetBSD: history.c,v 1.64 2024/07/11 05:41:24 kre Exp $"); 45 * hist.c: TYPE(History) access functions 100 struct TYPE(history) { 101 void *h_ref; /* Argument for history fcns */ 102 int h_ent; /* Last entry point for history */ 110 history_vfun_t h_clear; /* Clear the history list */ 137 static int history_setsize(TYPE(History) *, TYPE(HistEvent) *, int); 138 static int history_getsize(TYPE(History) *, TYPE(HistEvent) *) 1141 FUN(history,end)(h); local in function:FUNW [all...] |
| histedit.h | 38 * histedit.h: Line editor and history interface. 187 * ==== History ==== 190 typedef struct history History; 198 * History access functions. 200 History * history_init(void); 201 void history_end(History *); 203 int history(History *, HistEvent *, int, ...); 286 * ==== History === [all...] |
| /src/usr.bin/make/unit-tests/ |
| deptgt-silent-jobs.mk | 6 # History:
|
| suff-use.mk | 6 # History:
|
| varname-dot-make-mode.mk | 18 # History
|
| varname-dot-parsedir.mk | 11 # History
|
| varname-dot-parsefile.mk | 11 # History
|
| var-op-append.mk | 16 # History
|
| opt-keep-going-indirect.mk | 7 # History:
|
| varmod-select-words.mk | 6 # History:
|
| /src/usr.bin/indent/ |
| README.md | 0 # History
|
| /src/lib/libedit/TEST/ |
| tc1.c | 132 History *hist; 141 hist = history_init(); /* Init the builtin history */ 143 history(hist, &ev, H_SETSIZE, 100); 154 /* Tell editline to use this history interface */ 155 el_set(el, EL_HIST, history, hist); 165 * of previous and next history. 215 * moved around in history. 217 if (history(hist, &ev, H_SET, lastevent) == -1) 219 history(hist, &ev, H_ADD , buf); 221 history(hist, &ev, H_ENTER, buf) [all...] |
| /src/usr.sbin/lpr/lpc/ |
| lpc.c | 81 History *hist; 166 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */ 171 el_set(elptr, EL_HIST, history, hist); 179 history(hist, &he, H_ENTER, elline);
|
| /src/usr.bin/ftp/ |
| ftp_var.h | 270 GLOBAL History *hist; /* editline(3) history structure */
|
| /src/bin/csh/ |
| csh.h | 455 * History list 457 * Each history list entry contains an embedded wordlist 461 * Essentially "invisible" entries are put on the history list 462 * when history substitution includes modifiers, and thrown away 476 extern Char HIST; /* history invocation character */ 553 extern History *hi;
|
| csh.c | 167 History *hi; 633 * Source history before .login so that it is available in .login 884 * If $savehist is just set, we use the value of $history 960 * in the event of a HUP we want to save the history 1095 justpr = enterhist; /* execute if not entering history */ 1161 * Echo not only on VERBOSE, but also with history expansion. If there 1162 * is a lexical error then we forego history echo. 1180 * Save input text on the history list if reading in old history, or it 1183 * PWP: entry of items in the history list while in a while loop is don [all...] |
| /src/usr.sbin/crash/ |
| crash.c | 69 static History *hist; 271 /* Save to history, and copy to caller's buffer. */ 272 history(hist, &he, H_ENTER, el); 479 history(hist, &he, H_SETSIZE, 100); 483 el_set(elptr, EL_HIST, history, hist);
|
| /src/usr.bin/cdplay/ |
| cdplay.c | 161 static History *hist; 287 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */ 291 el_set(elptr, EL_HIST, history, hist); 301 history(hist, &he, H_ENTER, elline);
|
| /src/sbin/fsdb/ |
| fsdb.c | 359 History *hist; 368 history(hist, &he, H_SETSIZE, 100); /* 100 elt history buffer */ 373 el_set(elptr, EL_HIST, history, hist); 380 history(hist, &he, H_ENTER, elline);
|