Home
last modified time | relevance | path

Searched refs:el (Results 1 – 4 of 4) sorted by relevance

/system/core/sh/
Dhistedit.c69 EditLine *el; /* editline cookie */ variable
104 if (editing && !el && isatty(0)) { /* && isatty(2) ??? */ in histedit()
130 el = el_init(shname, el_in, el_out, el_err); in histedit()
131 if (el != NULL) { in histedit()
133 el_set(el, EL_HIST, history, hist); in histedit()
134 el_set(el, EL_PROMPT, getprompt); in histedit()
135 el_set(el, EL_SIGNAL, 1); in histedit()
141 } else if (!editing && el) { in histedit()
143 el_end(el); in histedit()
144 el = NULL; in histedit()
[all …]
Dmyhistedit.h38 extern EditLine *el;
Dinput.c112 EditLine *el; /* cookie for editline package */ variable
191 if (parsefile->fd == 0 && el) { in preadfd()
196 rl_cp = el_gets(el, &el_len); in preadfd()
Dparser.c1629 if (!el) in setprompt()