Lines Matching refs:he
173 HistEvent he; in sethistsize() local
179 history(hist, &he, H_SETSIZE, histsize); in sethistsize()
223 HistEvent he; in histcmd() local
394 history(hist, &he, H_FIRST); in histcmd()
395 retval = history(hist, &he, H_NEXT_EVENT, first); in histcmd()
396 for (;retval != -1; retval = history(hist, &he, direction)) { in histcmd()
399 out1fmt("%5d ", he.num); in histcmd()
400 out1str(he.str); in histcmd()
403 fc_replace(he.str, pat, repl) : he.str; in histcmd()
416 history(hist, &he, H_ENTER, s); in histcmd()
425 if (he.num == last) in histcmd()
482 HistEvent he; in str_to_event() local
487 retval = history(hist, &he, H_FIRST); in str_to_event()
499 retval = history(hist, &he, H_NEXT); in str_to_event()
502 retval = history(hist, &he, H_LAST); in str_to_event()
504 retval = history(hist, &he, H_NEXT_EVENT, i); in str_to_event()
510 retval = history(hist, &he, in str_to_event()
521 retval = history(hist, &he, H_PREV_STR, str); in str_to_event()
525 return (he.num); in str_to_event()