/src/bin/sh/ |
histedit.c | 258 int histsize; local in function:sethistsize 261 CTRACE(DBG_HISTORY, ("Set HISTSIZE=%s [%x] %s\n", 268 (histsize = number(hs)) < 0) 269 histsize = 100; 274 history(hist, &he, H_SETSIZE, histsize + 1);
|
/src/bin/ksh/ |
lex.h | 132 EXTERN int histsize; /* history size */ variable in typeref:typename:EXTERN int
|
/src/usr.bin/vmstat/ |
vmstat.c | 2273 size_t histsize; local in function:hist_dodump 2278 histsize = sizeof(struct kern_history_ent) * histp->n; 2280 if ((histents = malloc(histsize)) == NULL) 2283 (void)memset(histents, 0, histsize); 2288 deref_kptr(histp->e, histents, histsize, "history entries"); 2408 size_t histsize; local in function:hist_dodump_sysctl 2414 histsize = 0; 2417 if (sysctl(mib, miblen, hist, &histsize, NULL, 0) == 0) 2421 if ((hist = realloc(hist, histsize)) == NULL)
|