OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:el_history
(Results
1 - 10
of
10
) sorted by null
/external/libedit/src/
hist.c
57
el->
el_history
.fun = NULL;
58
el->
el_history
.ref = NULL;
59
el->
el_history
.buf = el_malloc(EL_BUFSIZ * sizeof(*el->
el_history
.buf));
60
el->
el_history
.sz = EL_BUFSIZ;
61
if (el->
el_history
.buf == NULL)
63
el->
el_history
.last = el->
el_history
.buf;
75
el_free(el->
el_history
.buf);
76
el->
el_history
.buf = NULL
[
all
...]
common.c
644
int sv_event = el->
el_history
.eventno;
649
if (el->
el_history
.eventno == 0) { /* save the current buffer
651
(void) Strncpy(el->
el_history
.buf, el->el_line.buffer,
653
el->
el_history
.last = el->
el_history
.buf +
656
el->
el_history
.eventno += el->el_state.argument;
660
el->
el_history
.eventno = sv_event;
664
/* el->
el_history
.eventno was fixed by first call */
686
el->
el_history
.eventno -= el->el_state.argument;
688
if (el->
el_history
.eventno < 0)
[
all
...]
hist.h
58
((((*(el)->
el_history
.fun) ((el)->
el_history
.ref, &(el)->
el_history
.ev, \
59
fn, arg)) == -1) ? NULL : (el)->
el_history
.ev.str)
vi.c
959
int sv_event_no = el->
el_history
.eventno;
963
if (el->
el_history
.eventno == 0) {
964
(void) Strncpy(el->
el_history
.buf, el->el_line.buffer,
966
el->
el_history
.last = el->
el_history
.buf +
972
el->
el_history
.eventno = 0x7fffffff;
980
el->
el_history
.eventno = 1;
983
el->
el_history
.eventno = 1 + el->
el_history
.ev.num
985
if (el->
el_history
.eventno < 0)
[
all
...]
search.c
192
el->
el_history
.eventno);
218
int ohisteventno = el->
el_history
.eventno;
359
el->
el_history
.eventno =
362
/* el->
el_history
.event
409
if (el->
el_history
.eventno !=
411
el->
el_history
.eventno =
436
if (el->
el_history
.eventno != ohisteventno) {
437
el->
el_history
.eventno = ohisteventno;
el.h
140
el_history_t
el_history
; /* History stuff */
member in struct:editline
chared.c
479
el->
el_history
.eventno = 0;
/external/libedit/doc/
Makefile.am
9
el_history_init.3 el_history_end.3
el_history
.3 el_tok_init.3 \
Makefile.in
267
el_history_init.3 el_history_end.3
el_history
.3 el_tok_init.3 \
/external/libedit/
ChangeLog
370
* doc/Makefile.am: name all manpage links as el_* (e.g.
el_history
.3)
Completed in 129 milliseconds