HomeSort by: relevance | last modified time | path
    Searched refs:el_history (Results 1 - 7 of 7) sorted by relevancy

  /src/lib/libedit/
hist.c 60 el->el_history.fun = NULL;
61 el->el_history.ref = NULL;
62 el->el_history.buf = el_calloc(EL_BUFSIZ, sizeof(*el->el_history.buf));
63 if (el->el_history.buf == NULL)
65 el->el_history.sz = EL_BUFSIZ;
66 el->el_history.last = el->el_history.buf;
78 el_free(el->el_history.buf);
79 el->el_history.buf = NULL
    [all...]
hist.h 56 ((((*(el)->el_history.fun) ((el)->el_history.ref, &(el)->el_history.ev, \
57 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str)
common.c 564 int sv_event = el->el_history.eventno;
569 if (el->el_history.eventno == 0) { /* save the current buffer
571 (void) wcsncpy(el->el_history.buf, el->el_line.buffer,
573 el->el_history.last = el->el_history.buf +
576 el->el_history.eventno += el->el_state.argument;
580 el->el_history.eventno = sv_event;
583 /* el->el_history.eventno was fixed by first call */
605 el->el_history.eventno -= el->el_state.argument;
607 if (el->el_history.eventno < 0)
    [all...]
el.h 136 el_history_t el_history; /* History stuff */ member in struct:editline
vi.c 958 int sv_event_no = el->el_history.eventno;
962 if (el->el_history.eventno == 0) {
963 (void) wcsncpy(el->el_history.buf, el->el_line.buffer,
965 el->el_history.last = el->el_history.buf +
971 el->el_history.eventno = 0x7fffffff;
979 el->el_history.eventno = 1;
982 el->el_history.eventno = 1 + el->el_history.ev.num
984 if (el->el_history.eventno < 0)
    [all...]
search.c 191 el->el_history.eventno);
216 int ohisteventno = el->el_history.eventno;
360 el->el_history.eventno =
363 /* el->el_history.event
410 if (el->el_history.eventno !=
412 el->el_history.eventno =
437 if (el->el_history.eventno != ohisteventno) {
438 el->el_history.eventno = ohisteventno;
chared.c 477 el->el_history.eventno = 0;

Completed in 16 milliseconds